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 304f2ed commit 1de6996Copy full SHA for 1de6996
2 files changed
lib/core/option.py
@@ -1591,6 +1591,9 @@ def _cleanupOptions():
1591
else:
1592
conf.testParameter = []
1593
1594
+ if conf.agent:
1595
+ conf.agent = conf.agent.strip("\r\n")
1596
+
1597
if conf.user:
1598
conf.user = conf.user.replace(" ", "")
1599
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.68"
+VERSION = "1.0.5.69"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments