mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Patch for an Issue #582
This commit is contained in:
parent
ab64d385d6
commit
02de2aee6d
3 changed files with 16 additions and 13 deletions
|
|
@ -351,7 +351,8 @@ class Agent(object):
|
|||
else:
|
||||
nulledCastedField = rootQuery.isnull.query % nulledCastedField
|
||||
|
||||
if conf.hexConvert or conf.binaryFields and field in conf.binaryFields.split(','):
|
||||
kb.binaryField = conf.binaryFields and field in conf.binaryFields.split(',')
|
||||
if conf.hexConvert or kb.binaryField:
|
||||
nulledCastedField = self.hexConvertField(nulledCastedField)
|
||||
|
||||
return nulledCastedField
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue