@@ -290,13 +290,13 @@ class SQLMapGenerator {
290
290
const tor = document . getElementById ( 'tor' ) . checked ;
291
291
if ( tor ) config [ '--tor' ] = tor ;
292
292
293
- const checTor = document . getElementById ( 'checkTor' ) . checked ;
294
- if ( checTor ) config [ '--check-tor' ] = checTor ;
293
+ const checkTor = document . getElementById ( 'checkTor' ) . checked ;
294
+ if ( checkTor ) config [ '--check-tor' ] = checkTor ;
295
295
296
296
const torPort = document . getElementById ( 'torPort' ) . value . trim ( ) ;
297
297
if ( torPort ) config [ '--tor-port' ] = torPort ;
298
298
299
- const torType = document . getElementById ( 'torType' ) . value . trim ( ) ; ;
299
+ const torType = document . getElementById ( 'torType' ) . value . trim ( ) ;
300
300
if ( torType && torType !== "SOCKS5" ) config [ '--tor-type' ] = torType ;
301
301
302
302
// Request options
@@ -574,12 +574,12 @@ class SQLMapGenerator {
574
574
const copyBtn = document . getElementById ( 'copyBtn' ) ;
575
575
const copyText = document . getElementById ( 'copyText' ) ;
576
576
const txt_command_copy_clipboard = 'COPY COMMAND TO CLIPBOARD' ;
577
- const txt_command_copy_coppied = 'COMMAND COPIED!' ;
577
+ const txt_command_copy_copied = 'COMMAND COPIED!' ;
578
578
579
579
try {
580
580
await navigator . clipboard . writeText ( command ) ;
581
581
copyBtn . classList . add ( 'copying' ) ;
582
- copyText . textContent = txt_command_copy_coppied ;
582
+ copyText . textContent = txt_command_copy_copied ;
583
583
584
584
setTimeout ( ( ) => {
585
585
copyBtn . classList . remove ( 'copying' ) ;
@@ -594,7 +594,7 @@ class SQLMapGenerator {
594
594
document . execCommand ( 'copy' ) ;
595
595
document . body . removeChild ( textArea ) ;
596
596
597
- copyText . textContent = txt_command_copy_coppied ;
597
+ copyText . textContent = txt_command_copy_copied ;
598
598
setTimeout ( ( ) => {
599
599
copyText . textContent = txt_command_copy_clipboard ;
600
600
} , 3000 ) ;
@@ -607,12 +607,12 @@ class SQLMapGenerator {
607
607
const copyUrlBtn = document . getElementById ( 'copyUrlBtn' ) ;
608
608
const copyUrlText = document . getElementById ( 'copyUrlText' ) ;
609
609
const txt_command_url_clipboard = 'COPY CONFIG URL' ;
610
- const txt_command_url_coppied = 'URL COPIED!' ;
610
+ const txt_command_url_copied = 'URL COPIED!' ;
611
611
612
612
try {
613
613
await navigator . clipboard . writeText ( command ) ;
614
614
copyUrlBtn . classList . add ( 'copying' ) ;
615
- copyUrlText . textContent = txt_command_url_coppied ;
615
+ copyUrlText . textContent = txt_command_url_copied ;
616
616
617
617
setTimeout ( ( ) => {
618
618
copyUrlBtn . classList . remove ( 'copying' ) ;
@@ -629,7 +629,7 @@ class SQLMapGenerator {
629
629
document . execCommand ( 'copy' ) ;
630
630
document . body . removeChild ( textArea ) ;
631
631
632
- copyUrlText . textContent = txt_command_url_coppied ;
632
+ copyUrlText . textContent = txt_command_url_copied ;
633
633
setTimeout ( ( ) => {
634
634
copyUrlText . textContent = txt_command_url_clipboard ;
635
635
} , 3000 ) ;
@@ -653,11 +653,10 @@ class SQLMapGenerator {
653
653
'url' : 'url' ,
654
654
'data' : 'data' ,
655
655
'requestFile' : 'requestFile' ,
656
- 'requestFileScope' : 'requestFileScope' ,
657
656
'burpFile' : 'burpFile' ,
658
657
'level' : 'level' ,
659
658
'risk' : 'risk' ,
660
- 'randomAgent' : 'randomAgent ' ,
659
+ 'randomAgent' : 'userAgent ' ,
661
660
'batch' : 'batch' ,
662
661
'dbs' : 'dbs'
663
662
} ;
@@ -767,7 +766,7 @@ class SQLMapGenerator {
767
766
'--host' : 'host' ,
768
767
'-A' : 'userAgent' ,
769
768
'--mobile' : 'mobileUserAgent' ,
770
- '--random-agent' : 'randomAgent ' ,
769
+ '--random-agent' : 'userAgent ' ,
771
770
'--referer' : 'referer' ,
772
771
'-H' : 'headers' ,
773
772
'--cookie' : 'cookie' ,
0 commit comments