mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 11:03:47 +03:00
minor fix because boolean-based blind on DB2 is a little bit different from other DBMSes
This commit is contained in:
parent
1d6e642d41
commit
a5e9168993
|
@ -15,6 +15,9 @@ class Syntax(GenericSyntax):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def unescape(expression, quote=True):
|
def unescape(expression, quote=True):
|
||||||
|
if expression == "'"
|
||||||
|
return expression
|
||||||
|
|
||||||
if quote:
|
if quote:
|
||||||
while True:
|
while True:
|
||||||
index = expression.find("'")
|
index = expression.find("'")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user