mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
restored fix for #210 to keep --hex work with --technique B
This commit is contained in:
parent
404ecbcaec
commit
329047fc12
|
@ -76,7 +76,12 @@ def _goInference(payload, expression, charsetType=None, firstChar=None, lastChar
|
|||
|
||||
if not (timeBasedCompare and kb.dnsTest):
|
||||
if (conf.eta or conf.threads > 1) and Backend.getIdentifiedDbms() and not re.search("(COUNT|LTRIM)\(", expression, re.I) and not timeBasedCompare:
|
||||
length = queryOutputLength(expression, payload)
|
||||
if field:
|
||||
nulledCastedField = agent.nullAndCastField(field)
|
||||
injExpression = expression.replace(field, nulledCastedField, 1)
|
||||
else:
|
||||
injExpression = expression
|
||||
length = queryOutputLength(injExpression, payload)
|
||||
else:
|
||||
length = None
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user