This commit is contained in:
Miroslav Stampar 2016-05-25 15:43:39 +02:00
parent 304f2ed308
commit 1de6996c26
2 changed files with 4 additions and 1 deletions

View File

@ -1591,6 +1591,9 @@ def _cleanupOptions():
else: else:
conf.testParameter = [] conf.testParameter = []
if conf.agent:
conf.agent = conf.agent.strip("\r\n")
if conf.user: if conf.user:
conf.user = conf.user.replace(" ", "") conf.user = conf.user.replace(" ", "")

View File

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