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

Skip to content

Commit 38ea068

Browse files
committed
Minor patch (Issue #3149)
1 parent 73b0de6 commit 38ea068

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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.enums import OS
2020

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

lib/request/redirecthandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def http_error_302(self, req, fp, code, msg, headers):
134134
cookies[key] = value
135135
last = key
136136
elif last:
137-
cookies[key] += "%s%s" % (delimiter, part)
137+
cookies[last] += "%s%s" % (delimiter, part)
138138

139139
req.headers[HTTP_HEADER.COOKIE] = delimiter.join("%s=%s" % (key, cookies[key]) for key in cookies)
140140

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4848
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4949
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5050
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
51-
76d92cc81e93bb60ee7f5948dea88678 lib/core/settings.py
51+
da93a924f9a99c51cab7d8e7adb2448d lib/core/settings.py
5252
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5353
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5454
95f04c1c1d8c3998d86e1bdf0e12771c lib/core/target.py
@@ -79,7 +79,7 @@ c2fb1abbb7127ec6419bbf852c0a458d lib/request/inject.py
7979
aaf956c1e9855836c3f372e29d481393 lib/request/methodrequest.py
8080
51eeaa8abf5ba62aaaade66d46ff8b00 lib/request/pkihandler.py
8181
2c3774b72586985719035b195f144d7b lib/request/rangehandler.py
82-
0d0567907afa2aa1493fb90ce09edfc0 lib/request/redirecthandler.py
82+
3cd9d17fc52bb62db29e0e24fc4d8a97 lib/request/redirecthandler.py
8383
7f12d8f3b6665ed7053954bba70ff718 lib/request/templates.py
8484
747f9941a68361bd779ec760f71568e9 lib/takeover/abstraction.py
8585
acc1db3667bf910b809eb279b60595eb lib/takeover/icmpsh.py

0 commit comments

Comments
 (0)