Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c797129

Browse files
committed
Fixes #1833
1 parent 6928dae commit c797129

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def start():
463463
infoMsg = "skipping randomizing %s parameter '%s'" % (paramType, parameter)
464464
logger.info(infoMsg)
465465

466-
elif parameter in conf.skip:
466+
elif parameter in conf.skip or kb.postHint and parameter.split(' ')[-1] in conf.skip:
467467
testSqlInj = False
468468

469469
infoMsg = "skipping %s parameter '%s'" % (paramType, parameter)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.2"
22+
VERSION = "1.0.5.3"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

0 commit comments

Comments
 (0)