@@ -291,12 +291,12 @@ class SQLMapGenerator {
291291 if ( tor ) config [ '--tor' ] = tor ;
292292
293293 const checkTor = document . getElementById ( 'checkTor' ) . checked ;
294- if ( checkTor ) config [ '--check-tor' ] = checkTor ;
294+ if ( checkTor ) config [ '--check-tor' ] = checkTor ;
295295
296296 const torPort = document . getElementById ( 'torPort' ) . value . trim ( ) ;
297297 if ( torPort ) config [ '--tor-port' ] = torPort ;
298298
299- const torType = document . getElementById ( 'torType' ) . value . trim ( ) ; ;
299+ const torType = document . getElementById ( 'torType' ) . value . trim ( ) ;
300300 if ( torType && torType !== "SOCKS5" ) config [ '--tor-type' ] = torType ;
301301
302302 // Request options
@@ -574,12 +574,12 @@ class SQLMapGenerator {
574574 const copyBtn = document . getElementById ( 'copyBtn' ) ;
575575 const copyText = document . getElementById ( 'copyText' ) ;
576576 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!' ;
578578
579579 try {
580580 await navigator . clipboard . writeText ( command ) ;
581581 copyBtn . classList . add ( 'copying' ) ;
582- copyText . textContent = txt_command_copy_coppied ;
582+ copyText . textContent = txt_command_copy_copied ;
583583
584584 setTimeout ( ( ) => {
585585 copyBtn . classList . remove ( 'copying' ) ;
@@ -594,7 +594,7 @@ class SQLMapGenerator {
594594 document . execCommand ( 'copy' ) ;
595595 document . body . removeChild ( textArea ) ;
596596
597- copyText . textContent = txt_command_copy_coppied ;
597+ copyText . textContent = txt_command_copy_copied ;
598598 setTimeout ( ( ) => {
599599 copyText . textContent = txt_command_copy_clipboard ;
600600 } , 3000 ) ;
@@ -607,12 +607,12 @@ class SQLMapGenerator {
607607 const copyUrlBtn = document . getElementById ( 'copyUrlBtn' ) ;
608608 const copyUrlText = document . getElementById ( 'copyUrlText' ) ;
609609 const txt_command_url_clipboard = 'COPY CONFIG URL' ;
610- const txt_command_url_coppied = 'URL COPIED!' ;
610+ const txt_command_url_copied = 'URL COPIED!' ;
611611
612612 try {
613613 await navigator . clipboard . writeText ( command ) ;
614614 copyUrlBtn . classList . add ( 'copying' ) ;
615- copyUrlText . textContent = txt_command_url_coppied ;
615+ copyUrlText . textContent = txt_command_url_copied ;
616616
617617 setTimeout ( ( ) => {
618618 copyUrlBtn . classList . remove ( 'copying' ) ;
@@ -629,7 +629,7 @@ class SQLMapGenerator {
629629 document . execCommand ( 'copy' ) ;
630630 document . body . removeChild ( textArea ) ;
631631
632- copyUrlText . textContent = txt_command_url_coppied ;
632+ copyUrlText . textContent = txt_command_url_copied ;
633633 setTimeout ( ( ) => {
634634 copyUrlText . textContent = txt_command_url_clipboard ;
635635 } , 3000 ) ;
@@ -653,11 +653,10 @@ class SQLMapGenerator {
653653 'url' : 'url' ,
654654 'data' : 'data' ,
655655 'requestFile' : 'requestFile' ,
656- 'requestFileScope' : 'requestFileScope' ,
657656 'burpFile' : 'burpFile' ,
658657 'level' : 'level' ,
659658 'risk' : 'risk' ,
660- 'randomAgent' : 'randomAgent ' ,
659+ 'randomAgent' : 'userAgent ' ,
661660 'batch' : 'batch' ,
662661 'dbs' : 'dbs'
663662 } ;
@@ -767,7 +766,7 @@ class SQLMapGenerator {
767766 '--host' : 'host' ,
768767 '-A' : 'userAgent' ,
769768 '--mobile' : 'mobileUserAgent' ,
770- '--random-agent' : 'randomAgent ' ,
769+ '--random-agent' : 'userAgent ' ,
771770 '--referer' : 'referer' ,
772771 '-H' : 'headers' ,
773772 '--cookie' : 'cookie' ,
0 commit comments