Skip to content

Commit eb26dd8

Browse files
committed
1 parent b9b5d07 commit eb26dd8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/core/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ def limitCondition(self, expression, dump=False):
858858
if expression.find(queries[Backend.getIdentifiedDbms()].limitstring.query) > 0:
859859
_ = expression.index(queries[Backend.getIdentifiedDbms()].limitstring.query)
860860
else:
861-
_ = expression.index("LIMIT ")
861+
_ = re.search(r"\bLIMIT\b", expression, re.I).start()
862862
expression = expression[:_]
863863

864864
elif Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE):

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.1.5.18"
22+
VERSION = "1.1.6.0"
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)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fec857280fd553ee7e9b49fdfe104402 lib/controller/checks.py
2525
130d1c16708668b8d89605b6b5b38bf5 lib/controller/controller.py
2626
52a3969f57170e935e3fc0156335bf2c lib/controller/handler.py
2727
310efc965c862cfbd7b0da5150a5ad36 lib/controller/__init__.py
28-
60599fbb43b7d5e658b84371d3ad0b42 lib/core/agent.py
28+
d58e85ffeac2471ef3af729076b3b5f7 lib/core/agent.py
2929
6cc95a117fbd34ef31b9aa25520f0e31 lib/core/bigarray.py
3030
8390c2963730e65ad853f677793b8c1c lib/core/common.py
3131
5065a4242a8cccf72f91e22e1007ae63 lib/core/convert.py
@@ -46,7 +46,7 @@ d85f2f63ffcb6135400339f9a7595a7b lib/core/option.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
6a24c9fb264ac2f56cd2c3ae15a5c463 lib/core/settings.py
49+
652da168dac6476e7b997537c935cf17 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
8136241fdbdb99a5dc0e51ba72918f6e lib/core/target.py

0 commit comments

Comments
 (0)