-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
142 lines (139 loc) · 4.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="tabs.css" type="text/css" />
<title></title>
</head>
<body>
<!-- <table width="100%">
<tr>
<td><img src="sqlmap_logo.png" /></td>
</tr>
</table>
-->
<div class="tab-holder">
<form id='optionsForm' name="optionsForm">
<input type="radio" name="prog" id="prog" value="sqlmap" />
<ul id="menu">
<li>
<a href="#request">Request</a>
</li>
<li>
<a href="#optimize">Optimization</a>
</li>
<li>
<a href="#injection">Injection</a>
</li>
<li>
<a href="#enum">Enumeration</a>
</li>
<li>
<a href="#tech">Technique</a>
</li>
<li>
<a href="#detect">Detection</a>
</li>
<li>
<a href="#brute">Brute force</a>
</li>
<li>
<a href="#osa">OS Access</a>
</li>
<li>
<a href="#general">General</a>
</li>
<li>
<a href="#misc">Misc</a>
</li>
</ul>
</div>
<div class="tab-folder">
<div id="optimize" class="tab-content">
Connection Keep-Alive: <input type="checkbox" name=
"keepalive" id="keepalive" /><br />
Null Connect: <input type="checkbox" name="nullconn" id=
"nullconn" /><br />
Threads: <input type="text" name="threads" id=
"threads" /><br />
</div>
<div id="injection" class="tab-content">
No payload cast: <input type="checkbox" name="nocast" id=
"nocast" /><br />
No string escape: <input type="checkbox" name="noescape" id=
"noescape" /><br />
</div>
<div id="enum" class="tab-content">
Enumerate databases: <input type="checkbox" name="dbs" id=
"dbs" /><br />
Dump all tables: <input type="checkbox" name="dumpall" id=
"dumpall" /><br />
</div>
<div id="tech" class="tab-content">
Stacked queries: <input type="checkbox" name="techs" id=
"techs" /><br />
Union based queries: <input type="checkbox" name="techu" id=
"techu" /><br />
Error based queries: <input type="checkbox" name="teche" id=
"teche" /><br />
Inline queries: <input type="checkbox" name="techq" id=
"techq" /><br />
Boolean based blind queries: <input type="checkbox" name="techb" id=
"techb" /><br />
Time based blind queries: <input type="checkbox" name="techt" id=
"techt" /><br />
</div>
<div id="detect" class="tab-content">
Page text only comparison: <input type="checkbox" name=
"textonly" id="textonly" /><br />
Page title only comparison: <input type="checkbox" name=
"titleonly" id="titleonly" /><br />
</div>
<div id="brute" class="tab-content">
Check for common tables: <input type="checkbox" name=
"ctables" id="ctables" /><br />
Check for common columns <input type="checkbox" name=
"ccolumns" id="ccolumns" /><br />
Check for common files: <input type="checkbox" name=
"cfiles" id="cfiles" /><br />
</div>
<div id="osa" class="tab-content">
Try to obtain OS shell: <input type="checkbox" name=
"osshell" id="osshell" /><br />
</div>
<div id="general" class="tab-content">
Batch Process: <input type="checkbox" name="batchp" id=
"batchp" /><br />
Hex conversion: <input type="checkbox" name="hex" id=
"hex" /><br />
SQLMap Options: <input type="text" name="sqlmapUser" id=
"sqlmapUser" /><br />
Copy confirmation: <input type="checkbox" name="snackbar"
id="snackbar" checked="checked" /><br />
Verbose output: <input type="checkbox" name="verbose" id=
"verbose" /><br />
Use double quotes: <input type="checkbox" name="quotes" id=
"quotes" /><br />
</div>
<div id="misc" class="tab-content">
Adjust for unstable connection: <input type="checkbox" name="unstableconn" id=
"unstableconn" /><br />
</div>
<div id="request" class="tab-content">
Use SQLMap User-Agent: <input type="radio" name="ua" id="ua"
value="sqlmapua" /><br />
Use Random User-Agent: <input type="radio" name="ua" id="ua"
value="rua" /><br />
Use Mobile User-Agent: <input type="radio" name="ua" id="ua"
value="mobile" /><br />
HTTP Chunked transfer encoding: <input type="checkbox" name="chunked"
id="chunked" /><br />
Drop Set-Cookie header: <input type="checkbox" name="dropcook"
id="dropcook" /><br />
</div>
</div>
</div><div class="save"><button type="submit">Save</button></div>
</form>
<script src="options.js" type="text/javascript"></script>
</body>
</html>