mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
Potential bug fix (escaping formatted regular expressions)
This commit is contained in:
@@ -147,7 +147,7 @@ class Entries:
|
||||
for column in colList:
|
||||
_ = agent.preprocessField(tbl, column)
|
||||
if _ != column:
|
||||
colString = re.sub(r"\b%s\b" % column, _, colString)
|
||||
colString = re.sub(r"\b%s\b" % re.escape(column), _, colString)
|
||||
|
||||
entriesCount = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user