mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-31 02:20:10 +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:
|
||||
_ = output
|
||||
try:
|
||||
_ = safecharencode(output.decode("hex")).replace(r"\n", "\n")
|
||||
_ = safecharencode(output.decode("hex")).replace(r"\n", "\n").replace(r"\t", " ");
|
||||
except:
|
||||
pass
|
||||
finally:
|
||||
|
|
Loading…
Reference in New Issue
Block a user