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 29c3037 commit a5f8caeCopy full SHA for a5f8cae
2 files changed
lib/controller/controller.py
@@ -226,7 +226,7 @@ def _saveToResultsFile():
226
results = {}
227
techniques = dict(map(lambda x: (x[1], x[0]), getPublicTypeMembers(PAYLOAD.TECHNIQUE)))
228
229
- for injection in kb.injectionections + kb.falsePositives:
+ for injection in kb.injections + kb.falsePositives:
230
if injection.place is None or injection.parameter is None:
231
continue
232
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.62"
+VERSION = "1.0.5.63"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments