mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-21 23:19:05 +00:00
Renaming --binary to --binary-fields
This commit is contained in:
@@ -344,7 +344,7 @@ class Agent(object):
|
||||
else:
|
||||
nulledCastedField = rootQuery.isnull.query % nulledCastedField
|
||||
|
||||
if conf.hexConvert or conf.binary and field in conf.binary.split(','):
|
||||
if conf.hexConvert or conf.binaryFields and field in conf.binaryFields.split(','):
|
||||
nulledCastedField = self.hexConvertField(nulledCastedField)
|
||||
|
||||
return nulledCastedField
|
||||
|
||||
@@ -205,6 +205,7 @@ POST_HINT_CONTENT_TYPES = {
|
||||
DEPRECATED_OPTIONS = {
|
||||
"--replicate": "use '--dump-format=SQLITE' instead",
|
||||
"--no-unescape": "use '--no-escape' instead",
|
||||
"--binary": "use '--binary-fields' instead",
|
||||
"--check-payload": None,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user