Skip to content

Commit aeb9618

Browse files
committed
v.20250612c
Fixed tamper script checkbox issue
1 parent 870de6f commit aeb9618

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ class SQLMapGenerator {
417417
if (document.getElementById('tamperscript-'+s).checked) tamperScripts.push(s);
418418
});
419419
const tamper = document.getElementById('tamper');
420-
if (tamperScripts.length > 0) tamper.value = tamperScripts.join(',');
420+
tamper.value = tamperScripts.join(',');
421421
if (tamper.value.trim()) config['--tamper'] = tamper.value.trim();
422422

423423
const invalidBignum = document.getElementById('invalidBignum').checked;

index.html

Lines changed: 1 addition & 1 deletion
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.20250612b</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.20250612c</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>

0 commit comments

Comments
 (0)