mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Fixes #4287
This commit is contained in:
@@ -172,7 +172,7 @@ class Entries(object):
|
||||
for column in colList:
|
||||
_ = agent.preprocessField(tbl, column)
|
||||
if _ != column:
|
||||
colString = re.sub(r"\b%s\b" % re.escape(column), _, colString)
|
||||
colString = re.sub(r"\b%s\b" % re.escape(column), _.replace("\\", r"\\"), colString)
|
||||
|
||||
entriesCount = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user