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

Skip to content

Commit aebfb7d

Browse files
committed
Update related to the #2912
1 parent 9e75bb7 commit aebfb7d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def _setTamperingFunctions():
931931

932932
try:
933933
module = __import__(filename[:-3].encode(sys.getfilesystemencoding() or UNICODE_ENCODING))
934-
except (ImportError, SyntaxError), ex:
934+
except Exception, ex:
935935
raise SqlmapSyntaxException("cannot import tamper script '%s' (%s)" % (filename[:-3], getSafeExString(ex)))
936936

937937
priority = PRIORITY.NORMAL if not hasattr(module, "__priority__") else module.__priority__

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.1.25"
22+
VERSION = "1.2.2.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
@@ -40,13 +40,13 @@ cada93357a7321655927fc9625b3bfec lib/core/exception.py
4040
1e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
4141
458a194764805cd8312c14ecd4be4d1e lib/core/log.py
4242
9eed2d4d370f375bda5e0c0488740e7f lib/core/optiondict.py
43-
598863f3b058650c17f465b16892dc67 lib/core/option.py
43+
02c846bf9fddbcb75afed72c0d6b9bdc lib/core/option.py
4444
7dadbb9a301d40cc8cd9c7491e99b43d lib/core/profiling.py
4545
ffa5f01f39b17c8d73423acca6cfe86a lib/core/readlineng.py
4646
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4747
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4848
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
49-
96752eb99f1d9a9f0562097d7557d5d3 lib/core/settings.py
49+
b7bba78cd084d423c170eef9a6f5dd1f lib/core/settings.py
5050
d0adc28a38e43a787df4471f7f027413 lib/core/shell.py
5151
63491be462c515a1a3880c27c2acc4a2 lib/core/subprocessng.py
5252
505aaa61e1bba3c3d4567c3e667699e3 lib/core/target.py

0 commit comments

Comments
 (0)