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

Skip to content

Commit dc5edf1

Browse files
committed
Patch regarding #3377
1 parent e11febd commit dc5edf1

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.11.10"
22+
VERSION = "1.2.11.11"
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)

tamper/randomcase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def tamper(payload, **kwargs):
4343
for match in re.finditer(r"\b[A-Za-z_]+\b", retVal):
4444
word = match.group()
4545

46-
if word.upper() in kb.keywords:
46+
if word.upper() in kb.keywords or ("%s(" % word) in payload:
4747
while True:
4848
_ = ""
4949

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-
ffa07ffe5349c0a8d8cff5de53e3211d lib/core/settings.py
52+
93eef5a012b79983815748224f41364f lib/core/settings.py
5353
a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
721198b5be72c8015a02acb116532a1f lib/core/target.py
@@ -270,7 +270,7 @@ a3a3cef042b864c4226b63f89548f939 tamper/overlongutf8.py
270270
89f8753a0ef65d2bb860c8864e9e935a tamper/percentage.py
271271
a47aafcbc1de2deb85160e29de46f748 tamper/plus2concat.py
272272
759b86cf3bb1d7871dc6489538253f94 tamper/plus2fnconcat.py
273-
078494e1217400b485ef653108d32699 tamper/randomcase.py
273+
6522603955388256aee014334ebea22b tamper/randomcase.py
274274
28626e4b8c673228dcfe4f1627a9e08b tamper/randomcomments.py
275275
cac8a56f8cc6c14524ee392daa5ae2fd tamper/space2comment.py
276276
4e6da2aca962b6110652e5f83dce5cd7 tamper/space2dash.py

0 commit comments

Comments
 (0)