Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7afe655

Browse files
committed
Another minor update for #1836
1 parent 3bf0829 commit 7afe655

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/core/optiondict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@
137137
"col": "string",
138138
"excludeCol": "string",
139139
"pivotColumn": "string",
140-
"binaryFields": "string",
141140
"dumpWhere": "string",
142141
"user": "string",
143142
"excludeSysDbs": "boolean",
@@ -191,6 +190,7 @@
191190
#"xmlFile": "string",
192191
"trafficFile": "string",
193192
"batch": "boolean",
193+
"binaryFields": "string",
194194
"charset": "string",
195195
"crawlDepth": "integer",
196196
"crawlExclude": "string",

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from 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"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/parse/cmdline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

sqlmap.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,9 +482,6 @@ col =
482482
# Back-end database management system database table column(s) to not enumerate.
483483
excludeCol =
484484

485-
# Result fields having binary values (e.g. "digest").
486-
binaryFields =
487-
488485
# Pivot column name.
489486
pivotColumn =
490487

@@ -656,6 +653,9 @@ trafficFile =
656653
# Valid: True or False
657654
batch = False
658655

656+
# Result fields having binary values (e.g. "digest").
657+
binaryFields =
658+
659659
# Force character encoding used for data retrieval.
660660
charset =
661661

0 commit comments

Comments
 (0)