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 c4b74c2 commit 66061e8Copy full SHA for 66061e8
2 files changed
lib/controller/controller.py
@@ -521,7 +521,7 @@ def start():
521
injection = checkSqlInjection(place, parameter, value)
522
proceed = not kb.endDetection
523
524
- if injection is not None and injection.place is not None:
+ if getattr(injection, "place", None) is not None:
525
kb.injections.append(injection)
526
527
# In case when user wants to end detection phase (Ctrl+C)
lib/core/settings.py
@@ -20,7 +20,7 @@
20
from lib.core.revision import getRevisionNumber
21
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
-VERSION = "1.0.4.17"
+VERSION = "1.0.4.18"
24
REVISION = getRevisionNumber()
25
STABLE = VERSION.count('.') <= 2
26
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments