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 77dea38 commit e275e8cCopy full SHA for e275e8c
2 files changed
lib/core/option.py
@@ -1612,7 +1612,7 @@ def _cleanupOptions():
1612
conf.testParameter = []
1613
1614
if conf.agent:
1615
- conf.agent = conf.agent.strip("\r\n")
+ conf.agent = re.sub(r"[\r\n]", "", conf.agent)
1616
1617
if conf.user:
1618
conf.user = conf.user.replace(" ", "")
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.6.11"
+VERSION = "1.0.6.12"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments