mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Potential bug fix (escaping formatted regular expressions)
This commit is contained in:
parent
268e774087
commit
3b3b8d4ef2
6 changed files with 15 additions and 15 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue