Skip to content

Commit 3e01769

Browse files
committed
v.20250616b
- fixed responsive layoyt for the REQUEST tab
1 parent 385ff2c commit 3e01769

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1><a href="?">SQLMap Command Builder</a></h1>
1616
</p>
1717

1818
<p>
19-
<a href="https://github.com/vizzdoom/sqlmap-command-builder" target="_blank">Github Repository v.20250616</a> for <a target="_blank" href="https://github.com/sqlmapproject/sqlmap/releases">SQLMap 1.9</a><br />
19+
<a href="https://github.com/vizzdoom/sqlmap-command-builder" target="_blank">Github Repository v.20250616b</a> for <a target="_blank" href="https://github.com/sqlmapproject/sqlmap/releases">SQLMap 1.9</a><br />
2020
vizzdoom/at/gmail/dot/com
2121
</p>
2222
</header>
@@ -134,6 +134,8 @@ <h3>Connection Control</h3>
134134
<label class="form-label" for="threads">NUMBER OF CONCURRENT REQUESTS</label>
135135
<input type="number" id="threads" class="form-control" min="1" max="10" placeholder="1">
136136
</div>
137+
<!-- SPACER -->
138+
<div></div>
137139
<!-- force-ssl -->
138140
<div class="form-group" title="In case that user wants to force usage of SSL/HTTPS requests toward the target, he can use this switch.
139141
This can be useful in cases when urls are being collected by using option --crawl or when Burp log is being provided with option -l.">
@@ -191,7 +193,7 @@ <h3>Proxy Options</h3>
191193
</div>
192194
<!-- --proxy-freq -->
193195
<div class="form-group" title="Requests between change of proxy from a given --proxy-file list">
194-
<label class="form-label" for="proxyFreq">NUMBER OF REQUEST FOR PROXY ROTATION</label>
196+
<label class="form-label" for="proxyFreq">PROXY ROTATION NUMBER</label>
195197
<input type="number" id="proxyFreq" class="form-control" min="1" step="1" placeholder="3">
196198
</div>
197199
<!-- --ignore-proxy -->
@@ -243,7 +245,7 @@ <h3>Request Data</h3>
243245
<input type="text" id="requestFile" class="form-control" placeholder="request.txt">
244246
</div>
245247
<!-- --data -->
246-
<div class="form-group column-double" title="By default the HTTP method used to perform HTTP requests is GET, but you can implicitly change it to POST by providing the data to be sent in the POST requests.
248+
<div class="form-group" title="By default the HTTP method used to perform HTTP requests is GET, but you can implicitly change it to POST by providing the data to be sent in the POST requests.
247249
Such data, being those parameters, are tested for SQL injection as well as any provided GET parameters.">
248250
<label class="form-label" for="data">HTTP BODY DATA (--data)</label>
249251
<textarea id="data" class="form-control" rows="4" placeholder="param1=value1&param2=value2"></textarea>
@@ -303,9 +305,8 @@ <h3>Request Headers</h3>
303305
<label class="form-label" title="HTTP Referer header value" for="referer">HTTP REFERER HEADER (--referer)</label>
304306
<input type="url" id="referer" class="form-control" placeholder="https://127.0.0.1/login">
305307
</div>
306-
<div></div>
307308
<!-- -H -->
308-
<div class="form-group column-double" title="Extra HTTP headers separated by a newline.">
309+
<div class="form-group" title="Extra HTTP headers separated by a newline.">
309310
<label class="form-label" title="Additional HTTP Headers" for="headers">EXTRA HTTP HEADERS (-H)</label>
310311
<textarea id="headers" class="form-control" rows="4" placeholder="X-Forwarded-For: 127.0.0.1&#10;Authorization: Bearer token"></textarea>
311312
</div>
@@ -1231,10 +1232,9 @@ <h3>Attack Optimalization</h3>
12311232
<div class="tab-content" id="config">
12321233
<div class="card">
12331234
<div class="card__body">
1234-
<h3>Config Management</h3>
12351235
<div class="config-buttons">
1236-
<button id="saveConfig" class="btn btn--secondary">Save configuration</button>
1237-
<button id="loadConfig" class="btn btn--secondary">Load configuration</button>
1236+
<button id="saveConfig" class="btn btn--primary">Save configuration</button>
1237+
<button id="loadConfig" class="btn btn--primary">Load configuration</button>
12381238
<button id="resetConfig" class="btn btn--outline">Reset everything</button>
12391239
</div>
12401240
</div>

style.css

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
@media (min-width: 1100px) {
191191
.form-grid {
192192
grid-template-columns: 1fr 1fr 1fr 1fr;
193-
gap: var(--space-xl);
193+
gap: var(--space-m);
194194
}
195195
}
196196

@@ -1134,14 +1134,6 @@ body {
11341134
user-select: none;
11351135
}
11361136

1137-
.column-double {
1138-
grid-column: 1 / 3;
1139-
}
1140-
1141-
.column-tripple {
1142-
grid-column: 1 / 4;
1143-
}
1144-
11451137
.tamper--script {
11461138
font-weight: bold;
11471139
}

0 commit comments

Comments
 (0)