-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLinjector-0.py
75 lines (62 loc) · 1.82 KB
/
SQLinjector-0.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import requests
import sys
import getopt
import re
from termcolor import colored
def banner():
print ("\n***************************************")
print ("* SQlinjector 1.0 *")
print ("***************************************")
def usage():
print ("Usage:")
print (" -w: url (http://somesite.com/news.php?id=FUZZ)\n")
print (" -i: injection strings file \n")
print ("example: SQLinjector.py -w http://www.somesite.com/news.php?id=FUZZ \n")
def start(argv):
banner()
if len(sys.argv) < 2:
usage()
#sys.exit()
try:
opts, args = getopt.getopt(argv,"w:i:")
except getopt.GetoptError:
print ("Error en arguments")
sys.exit()
for opt,arg in opts :
if opt == '-w' :
url=arg
elif opt == '-i':
dictio = arg
try:
print ("[-] Opening injections file: " + dictio)
f = open(dictio, "r")
name = f.read().splitlines()
except:
#print ("Failed opening file: " + dictio + "\n")
sys.exit()
launcher(url,name)
def launcher (url,dictio):
injected = []
for sqlinjection in dictio:
injected.append(url.replace("FUZZ",sqlinjection))
res = injector(injected)
print ("\n[+] Detection results:")
print ("------------------")
for x in res:
print (x.split(";")[0])
def injector(injected):
errors = ['Mysql','error in your SQL']
results = []
for y in injected:
print ("[-] Testing errors: " + y)
req=requests.get(y)
for x in errors:
if req.content.find(x) != -1:
res = y + ";" + x
results.append(res)
return results
if __name__ == "__main__":
try:
start(sys.argv[1:])
except KeyboardInterrupt:
print ("SQLinjector interrupted by user..!!")