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

Skip to content

Commit 06deda3

Browse files
committed
Fixes #2672
1 parent d4170f1 commit 06deda3

3 files changed

Lines changed: 5 additions & 3 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.1.8.16"
22+
VERSION = "1.1.9.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)

lib/utils/sqlalchemy.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ def connect(self):
6464
raise SqlmapConnectionException("SQLAlchemy connection issue (obsolete version of pymssql ('%s') is causing problems)" % pymssql.__version__)
6565
except ImportError:
6666
pass
67+
elif "invalid literal for int() with base 10: '0b" in traceback.format_exc():
68+
raise SqlmapConnectionException("SQLAlchemy connection issue ('https://bitbucket.org/zzzeek/sqlalchemy/issues/3975')")
6769
raise
6870
except SqlmapFilePathException:
6971
raise

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ c5f09788ee8ff9c9d12a052986875bc6 lib/core/option.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
ee013c763555b6b099c00d7136f2971e lib/core/settings.py
49+
0132a883fd48cc1392b24d866a91ba17 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
4a6ecdd8a6e44bb4737bd9bc7f9b5743 lib/core/target.py
@@ -112,7 +112,7 @@ e76a08237ee6a4cd6855af79610ea8a5 lib/utils/htmlentities.py
112112
8520a745c9b4db3814fe46f4c34c6fbc lib/utils/progress.py
113113
2c3638d499f3c01c34187e531f77d004 lib/utils/purge.py
114114
4bd7dd4fc8f299f1566a26ed6c2cefb5 lib/utils/search.py
115-
569521a83b2b6c62497879267b963b21 lib/utils/sqlalchemy.py
115+
fe2be081f924abf08767ed89ab12b418 lib/utils/sqlalchemy.py
116116
caeea96ec9c9d489f615f282259b32ca lib/utils/timeout.py
117117
6fa36b9742293756b226cddee11b7d52 lib/utils/versioncheck.py
118118
31c51a3cc73120ee9490f2e3fa6d0dca lib/utils/xrange.py

0 commit comments

Comments
 (0)