We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3483fd4 commit a0b44daCopy full SHA for a0b44da
1 file changed
lib/request/inject.py
@@ -85,7 +85,7 @@ def _goInference(payload, expression, charsetType=None, firstChar=None, lastChar
85
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
86
expression += " AS %s" % randomStr(lowercase=True)
87
88
- if field and conf.hexConvert:
+ if field and conf.hexConvert or conf.binaryFields and field in conf.binaryFields.split(','):
89
nulledCastedField = agent.nullAndCastField(field)
90
injExpression = expression.replace(field, nulledCastedField, 1)
91
else:
0 commit comments