Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6928dae commit c797129Copy full SHA for c797129
2 files changed
lib/controller/controller.py
@@ -463,7 +463,7 @@ def start():
463
infoMsg = "skipping randomizing %s parameter '%s'" % (paramType, parameter)
464
logger.info(infoMsg)
465
466
- elif parameter in conf.skip:
+ elif parameter in conf.skip or kb.postHint and parameter.split(' ')[-1] in conf.skip:
467
testSqlInj = False
468
469
infoMsg = "skipping %s parameter '%s'" % (paramType, parameter)
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.revision import getRevisionNumber
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.0.5.2"
+VERSION = "1.0.5.3"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments