Skip to content

Commit 8d6125f

Browse files
committed
Minor patch
1 parent 506e3f0 commit 8d6125f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ def checkSuhosinPatch(injection):
991991
Checks for existence of Suhosin-patch (and alike) protection mechanism(s)
992992
"""
993993

994-
if injection.place == PLACE.GET:
994+
if injection.place in (PLACE.GET, PLACE.URI):
995995
debugMsg = "checking for parameter length "
996996
debugMsg += "constraining mechanisms"
997997
logger.debug(debugMsg)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.5.3.17"
21+
VERSION = "1.5.3.18"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)