mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Implements #3780
This commit is contained in:
parent
5650e1a1a4
commit
cb170f1f28
3 changed files with 46 additions and 3 deletions
|
|
@ -26,7 +26,7 @@ class Syntax(object):
|
|||
if quote:
|
||||
for item in re.findall(r"'[^']*'+", expression):
|
||||
original = item[1:-1]
|
||||
if original:
|
||||
if original and re.search(r"\[(SLEEPTIME|RAND)", original) is None: # e.g. '[SLEEPTIME]' marker
|
||||
replacement = escaper(original) if not conf.noEscape else original
|
||||
|
||||
if replacement != original:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue