This commit is contained in:
Miroslav Stampar 2016-04-15 12:04:54 +02:00
parent c4b74c2e01
commit 66061e8c5f
2 changed files with 2 additions and 2 deletions

View File

@ -521,7 +521,7 @@ def start():
injection = checkSqlInjection(place, parameter, value)
proceed = not kb.endDetection
if injection is not None and injection.place is not None:
if getattr(injection, "place", None) is not None:
kb.injections.append(injection)
# In case when user wants to end detection phase (Ctrl+C)

View File

@ -20,7 +20,7 @@ from lib.core.enums import OS
from lib.core.revision import getRevisionNumber
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.0.4.17"
VERSION = "1.0.4.18"
REVISION = getRevisionNumber()
STABLE = VERSION.count('.') <= 2
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")