mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Displaying hex-decoded resulting output in --hex mode
This commit is contained in:
parent
39f565533a
commit
029143880a
|
@ -534,6 +534,10 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
||||||
elif partialValue:
|
elif partialValue:
|
||||||
hashDBWrite(expression, "%s%s" % (PARTIAL_VALUE_MARKER, partialValue))
|
hashDBWrite(expression, "%s%s" % (PARTIAL_VALUE_MARKER, partialValue))
|
||||||
|
|
||||||
|
if conf.hexConvert:
|
||||||
|
infoMsg = "\r[%s] [INFO] retrieved: %s %s\n" % (time.strftime("%X"), filterControlChars(finalValue), " " * len(finalValue))
|
||||||
|
dataToStdout(infoMsg)
|
||||||
|
else:
|
||||||
if conf.verbose in (1, 2) or showEta:
|
if conf.verbose in (1, 2) or showEta:
|
||||||
dataToStdout("\n")
|
dataToStdout("\n")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user