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

Skip to content

Commit d2d829a

Browse files
committed
Patch related to the #3117
1 parent 43d9ac2 commit d2d829a

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.5.15"
22+
VERSION = "1.2.5.16"
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/utils/versioncheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
if PYVERSION >= "3" or PYVERSION < "2.6":
1313
exit("[CRITICAL] incompatible Python version detected ('%s'). To successfully run sqlmap you'll have to use version 2.6.x or 2.7.x (visit 'https://www.python.org/downloads/')" % PYVERSION)
1414

15-
extensions = ("bz2", "gzip", "ssl", "sqlite3", "zlib")
15+
extensions = ("bz2", "gzip", "pyexpat", "ssl", "sqlite3", "zlib")
1616
try:
1717
for _ in extensions:
1818
__import__(_)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4747
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50-
61a242f506d7e3374230b2e904ea309b lib/core/settings.py
50+
428225201b9174a4c4432d9d2e528a91 lib/core/settings.py
5151
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5353
6306284edcccc185b2df085438572b0d lib/core/target.py
@@ -115,7 +115,7 @@ cc1cfe36057f1d9bbdcba1bcc03359f9 lib/utils/hash.py
115115
2c5a655c8e94cbe2664ee497752ac1f2 lib/utils/search.py
116116
571884f530796534f03c49cf3f380a4c lib/utils/sqlalchemy.py
117117
dcc25183c6bd85b172c87cfcbc305ab6 lib/utils/timeout.py
118-
3d230e342a6c8d60ac7c68c556fbba9b lib/utils/versioncheck.py
118+
fad14adffa8b640a15b06db955031695 lib/utils/versioncheck.py
119119
7348ee704485651737ddbe3538271be9 lib/utils/xrange.py
120120
b9d2761f47fec3d98b88311a263fd5db plugins/dbms/access/connector.py
121121
3f1c50a1507d1c2f69c20c706230e2e2 plugins/dbms/access/enumeration.py

0 commit comments

Comments
 (0)