File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 137137 "col" : "string" ,
138138 "excludeCol" : "string" ,
139139 "pivotColumn" : "string" ,
140- "binaryFields" : "string" ,
141140 "dumpWhere" : "string" ,
142141 "user" : "string" ,
143142 "excludeSysDbs" : "boolean" ,
191190 #"xmlFile": "string",
192191 "trafficFile" : "string" ,
193192 "batch" : "boolean" ,
193+ "binaryFields" : "string" ,
194194 "charset" : "string" ,
195195 "crawlDepth" : "integer" ,
196196 "crawlExclude" : "string" ,
Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.7 "
22+ VERSION = "1.0.5.8 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change @@ -464,9 +464,6 @@ def cmdLineParser(argv=None):
464464 help = "Exclude DBMS system databases when "
465465 "enumerating tables" )
466466
467- enumeration .add_option ("--binary-fields" , dest = "binaryFields" ,
468- help = "Result fields having binary values (e.g. \" digest\" )" )
469-
470467 enumeration .add_option ("--pivot-column" , dest = "pivotColumn" ,
471468 help = "Pivot column name" )
472469
@@ -623,6 +620,9 @@ def cmdLineParser(argv=None):
623620 action = "store_true" ,
624621 help = "Never ask for user input, use the default behaviour" )
625622
623+ general .add_option ("--binary-fields" , dest = "binaryFields" ,
624+ help = "Result fields having binary values (e.g. \" digest\" )" )
625+
626626 general .add_option ("--charset" , dest = "charset" ,
627627 help = "Force character encoding used for data retrieval" )
628628
Original file line number Diff line number Diff line change @@ -482,9 +482,6 @@ col =
482482# Back-end database management system database table column(s) to not enumerate.
483483excludeCol =
484484
485- # Result fields having binary values (e.g. "digest").
486- binaryFields =
487-
488485# Pivot column name.
489486pivotColumn =
490487
@@ -656,6 +653,9 @@ trafficFile =
656653# Valid: True or False
657654batch = False
658655
656+ # Result fields having binary values (e.g. "digest").
657+ binaryFields =
658+
659659# Force character encoding used for data retrieval.
660660charset =
661661
You can’t perform that action at this time.
0 commit comments