mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Fixes #5549
This commit is contained in:
parent
90cbaa1249
commit
3d244ea9c3
|
@ -20,7 +20,7 @@ from thirdparty import six
|
||||||
from thirdparty.six import unichr as _unichr
|
from thirdparty.six import unichr as _unichr
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.7.10.1"
|
VERSION = "1.7.10.2"
|
||||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||||
|
|
|
@ -7,6 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||||
|
|
||||||
from lib.core.compat import xrange
|
from lib.core.compat import xrange
|
||||||
from lib.core.enums import PRIORITY
|
from lib.core.enums import PRIORITY
|
||||||
|
from lib.core.settings import REPLACEMENT_MARKER
|
||||||
|
|
||||||
__priority__ = PRIORITY.HIGHEST
|
__priority__ = PRIORITY.HIGHEST
|
||||||
|
|
||||||
|
@ -36,6 +37,7 @@ def tamper(payload, **kwargs):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if payload and payload.find("IF") > -1:
|
if payload and payload.find("IF") > -1:
|
||||||
|
payload = payload.replace("()", REPLACEMENT_MARKER)
|
||||||
while payload.find("IF(") > -1:
|
while payload.find("IF(") > -1:
|
||||||
index = payload.find("IF(")
|
index = payload.find("IF(")
|
||||||
depth = 1
|
depth = 1
|
||||||
|
@ -64,4 +66,6 @@ def tamper(payload, **kwargs):
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
payload = payload.replace(REPLACEMENT_MARKER, "()")
|
||||||
|
|
||||||
return payload
|
return payload
|
||||||
|
|
Loading…
Reference in New Issue
Block a user