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

Skip to content

Commit 2e53096

Browse files
committed
Fixes #3268
1 parent 79e45bd commit 2e53096

3 files changed

Lines changed: 7 additions & 5 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.10.5"
22+
VERSION = "1.2.10.6"
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)

thirdparty/ansistrm/ansistrm.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,10 @@ def colorize(self, message, levelno):
181181

182182
if level != "PAYLOAD":
183183
if any(_ in message for _ in ("parsed DBMS error message",)):
184-
string = re.search(r": '(.+)'", message).group(1)
185-
message = message.replace("'%s'" % string, "'%s'" % ''.join((self.csi, str(self.color_map["white"] + 30), 'm', string, self._reset(message))), 1)
184+
match = re.search(r": '(.+)'", message)
185+
if match:
186+
string = match.group(1)
187+
message = message.replace("'%s'" % string, "'%s'" % ''.join((self.csi, str(self.color_map["white"] + 30), 'm', string, self._reset(message))), 1)
186188
else:
187189
for match in re.finditer(r"[^\w]'([^']+)'", message): # single-quoted
188190
string = match.group(1)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
af9f01fd0d42d37f40e41f93907e2528 lib/core/settings.py
52+
5192b4916a979e3fb249b72e3a89b3a6 lib/core/settings.py
5353
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
62bc180e3e828949ffb342a8f756c183 lib/core/target.py
@@ -284,7 +284,7 @@ f2b9eac52d346315f5705f71beeda791 tamper/varnish.py
284284
0e40966a51d1eb5d42a2159d2015a8a4 tamper/versionedkeywords.py
285285
0fba004bf1be6edbefbda89f23f4e518 tamper/versionedmorekeywords.py
286286
d8279aa1633e2485ed751eb0361d1c8e tamper/xforwardedfor.py
287-
1ebf563bb2cb18b68ea952418bba0ec5 thirdparty/ansistrm/ansistrm.py
287+
b1c02296b4e3b0ebaa58b9dcd914cbf4 thirdparty/ansistrm/ansistrm.py
288288
d41d8cd98f00b204e9800998ecf8427e thirdparty/ansistrm/__init__.py
289289
8e775c25bc9e84891ad6fcb4f0005c23 thirdparty/beautifulsoup/beautifulsoup.py
290290
cb2e1fe7c404dff41a2ae9132828f532 thirdparty/beautifulsoup/__init__.py

0 commit comments

Comments
 (0)