mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Adding (for now hidden) option --binary (works like -C but deliberately retrieves data in hex format and displays in hex format)
This commit is contained in:
parent
1d42aba01e
commit
8b4f72322a
2 changed files with 4 additions and 1 deletions
|
|
@ -344,7 +344,7 @@ class Agent(object):
|
|||
else:
|
||||
nulledCastedField = rootQuery.isnull.query % nulledCastedField
|
||||
|
||||
if conf.hexConvert:
|
||||
if conf.hexConvert or conf.binary and field in conf.binary.split(','):
|
||||
nulledCastedField = self.hexConvertField(nulledCastedField)
|
||||
|
||||
return nulledCastedField
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue