mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-31 18:39:46 +03:00
issue #61 improvement: replace \t (tabs) with 4 spaces
This commit is contained in:
parent
76f7f907c6
commit
8cb525550b
|
@ -120,7 +120,7 @@ def __oneShotErrorUse(expression, field):
|
||||||
if kb.fileReadMode and output:
|
if kb.fileReadMode and output:
|
||||||
_ = output
|
_ = output
|
||||||
try:
|
try:
|
||||||
_ = safecharencode(output.decode("hex")).replace(r"\n", "\n")
|
_ = safecharencode(output.decode("hex")).replace(r"\n", "\n").replace(r"\t", " ");
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
finally:
|
finally:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user