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

Skip to content

Commit a5f8cae

Browse files
committed
Fixes #1892
1 parent 29c3037 commit a5f8cae

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
@@ -226,7 +226,7 @@ def _saveToResultsFile():
226226
results = {}
227227
techniques = dict(map(lambda x: (x[1], x[0]), getPublicTypeMembers(PAYLOAD.TECHNIQUE)))
228228

229-
for injection in kb.injectionections + kb.falsePositives:
229+
for injection in kb.injections + kb.falsePositives:
230230
if injection.place is None or injection.parameter is None:
231231
continue
232232

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.62"
22+
VERSION = "1.0.5.63"
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)