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

Skip to content

Commit 798b539

Browse files
committed
Minor update
1 parent 70cf8ed commit 798b539

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/controller/controller.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,15 +226,15 @@ def _saveToResultsFile():
226226
results = {}
227227
techniques = dict(map(lambda x: (x[1], x[0]), getPublicTypeMembers(PAYLOAD.TECHNIQUE)))
228228

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

233-
key = (inj.place, inj.parameter, ';'.join(inj.notes))
233+
key = (injection.place, injection.parameter, ';'.join(injection.notes))
234234
if key not in results:
235235
results[key] = []
236236

237-
results[key].extend(inj.data.keys())
237+
results[key].extend(injection.data.keys())
238238

239239
for key, value in results.items():
240240
place, parameter, notes = key

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.52"
22+
VERSION = "1.0.5.53"
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)