mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-04-27 04:13:45 +03:00
Merge branch 'master' of github.com:sqlmapproject/sqlmap
This commit is contained in:
commit
e751556e9b
|
@ -22,7 +22,7 @@ class Syntax:
|
||||||
retVal = expression
|
retVal = expression
|
||||||
|
|
||||||
if quote:
|
if quote:
|
||||||
for item in re.findall(r"'[^']+'", expression, re.S):
|
for item in re.findall(r"'[^']*'+", expression, re.S):
|
||||||
retVal = retVal.replace(item, escaper(item[1:-1]))
|
retVal = retVal.replace(item, escaper(item[1:-1]))
|
||||||
else:
|
else:
|
||||||
retVal = escaper(expression)
|
retVal = escaper(expression)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user