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

Skip to content

Commit 75a6424

Browse files
committed
Minor patch for colorization (multiple quoted strings in same line)
1 parent 9e00202 commit 75a6424

3 files changed

Lines changed: 14 additions & 14 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.8.3"
22+
VERSION = "1.2.8.4"
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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -181,16 +181,16 @@ def colorize(self, message, levelno):
181181
reset = self.reset
182182
message = message.replace(counter, ''.join((self.csi, str(self.color_map["yellow"] + 30), 'm', counter, reset)), 1)
183183

184-
match = re.search(r"'([^']+)'", message) # single-quoted
185-
if level != "PAYLOAD" and match:
186-
string = match.group(1)
187-
if not message.endswith(self.reset):
188-
reset = self.reset
189-
elif self.bold in message: # bold
190-
reset = self.reset + self.bold
191-
else:
192-
reset = self.reset
193-
message = message.replace(string, ''.join((self.csi, str(self.color_map["white"] + 30), 'm', string, reset)), 1)
184+
if level != "PAYLOAD":
185+
for match in re.finditer(r"'([^']+)'", message): # single-quoted
186+
string = match.group(1)
187+
if not message.endswith(self.reset):
188+
reset = self.reset
189+
elif self.bold in message: # bold
190+
reset = self.reset + self.bold
191+
else:
192+
reset = self.reset
193+
message = message.replace(string, ''.join((self.csi, str(self.color_map["white"] + 30), 'm', string, reset)), 1)
194194
else:
195195
message = ''.join((self.csi, ';'.join(params), 'm', message, self.reset))
196196

txt/checksum.md5

Lines changed: 3 additions & 3 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-
a56c2a90533ae494cd72e817d84a6c46 lib/core/settings.py
51+
9253fffb810752d130525dde8668c06a lib/core/settings.py
5252
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5353
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5454
12bed9603b6fba3e5ffda11d584bc449 lib/core/target.py
@@ -285,7 +285,7 @@ f2b9eac52d346315f5705f71beeda791 tamper/varnish.py
285285
0e40966a51d1eb5d42a2159d2015a8a4 tamper/versionedkeywords.py
286286
0fba004bf1be6edbefbda89f23f4e518 tamper/versionedmorekeywords.py
287287
de532c4e3160039335010c499129d54f tamper/xforwardedfor.py
288-
b25b47ddeeb62e5857fd5ad17fd454b5 thirdparty/ansistrm/ansistrm.py
288+
3f6a3d322a4629d5bbd93f43ff8e59cc thirdparty/ansistrm/ansistrm.py
289289
d41d8cd98f00b204e9800998ecf8427e thirdparty/ansistrm/__init__.py
290290
8e775c25bc9e84891ad6fcb4f0005c23 thirdparty/beautifulsoup/beautifulsoup.py
291291
cb2e1fe7c404dff41a2ae9132828f532 thirdparty/beautifulsoup/__init__.py
@@ -467,7 +467,7 @@ d48c971769c6131e35bd52d2315a8d58 xml/banner/servlet-engine.xml
467467
d989813ee377252bca2103cea524c06b xml/banner/sharepoint.xml
468468
350605448f049cd982554123a75f11e1 xml/banner/x-aspnet-version.xml
469469
817078783e1edaa492773d3b34d8eef0 xml/banner/x-powered-by.xml
470-
201b8bb7888f500294a9831bb47ce7a7 xml/boundaries.xml
470+
6debc049a8049b890ca109a731c60782 xml/boundaries.xml
471471
0d0d4bd0e06c99dd8eb4f92acc25caf3 xml/errors.xml
472472
a279656ea3fcb85c727249b02f828383 xml/livetests.xml
473473
3318571fac8df058f19ea85780606643 xml/payloads/boolean_blind.xml

0 commit comments

Comments
 (0)