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

Skip to content

Commit 8492509

Browse files
committed
Minor update related to the #3976
1 parent 9a62460 commit 8492509

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

lib/controller/checks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,6 +1567,7 @@ def checkConnection(suppressOutput=False):
15671567
message += "server wants to set its own ('%s'). " % re.sub(r"(=[^=;]{10}[^=;])[^=;]+([^=;]{10})", r"\g<1>...\g<2>", candidate)
15681568
message += "Do you want to use those [Y/n] "
15691569
if readInput(message, default='Y', boolean=True):
1570+
kb.mergeCookies = True
15701571
conf.httpHeaders.append((HTTP_HEADER.COOKIE, candidate))
15711572

15721573
return True

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.10.22"
21+
VERSION = "1.3.10.23"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)