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

Skip to content

Commit 1de6996

Browse files
committed
Fixes #1893
1 parent 304f2ed commit 1de6996

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

lib/core/option.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,6 +1591,9 @@ def _cleanupOptions():
15911591
else:
15921592
conf.testParameter = []
15931593

1594+
if conf.agent:
1595+
conf.agent = conf.agent.strip("\r\n")
1596+
15941597
if conf.user:
15951598
conf.user = conf.user.replace(" ", "")
15961599

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.68"
22+
VERSION = "1.0.5.69"
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)