@@ -238,12 +238,12 @@ def cmdLineParser():
238238
239239 techniques .add_option ("--technique" , dest = "tech" ,
240240 help = "SQL injection techniques to test for "
241- "(default %s )" % defaults .tech )
241+ "(default \" %s \" )" % defaults .tech )
242242
243243 techniques .add_option ("--time-sec" , dest = "timeSec" ,
244244 type = "int" ,
245245 help = "Seconds to delay the DBMS response "
246- "(default %s )" % defaults .timeSec )
246+ "(default %d )" % defaults .timeSec )
247247
248248 techniques .add_option ("--union-cols" , dest = "uCols" ,
249249 help = "Range of columns to test for UNION query SQL injection" )
@@ -487,9 +487,17 @@ def cmdLineParser():
487487 general .add_option ("--charset" , dest = "charset" ,
488488 help = "Force character encoding used for data retrieval" )
489489
490+ general .add_option ("--check-tor" , dest = "checkTor" ,
491+ action = "store_true" ,
492+ help = "Check to see if Tor is used properly" )
493+
490494 general .add_option ("--crawl" , dest = "crawlDepth" , type = "int" ,
491495 help = "Crawl the website starting from the target url" )
492496
497+ general .add_option ("--csv-del" , dest = "csvDel" ,
498+ help = "Delimiting character used in CSV output "
499+ "(default \" %s\" )" % defaults .csvDel )
500+
493501 general .add_option ("--eta" , dest = "eta" ,
494502 action = "store_true" ,
495503 help = "Display for each output the "
@@ -523,10 +531,6 @@ def cmdLineParser():
523531 action = "store_true" ,
524532 help = "Use default Tor (Vidalia/Privoxy/Polipo) proxy address" )
525533
526- general .add_option ("--check-tor" , dest = "checkTor" ,
527- action = "store_true" ,
528- help = "Check to see if Tor is used properly" )
529-
530534 general .add_option ("--update" , dest = "updateAll" ,
531535 action = "store_true" ,
532536 help = "Update sqlmap" )
0 commit comments