sqlmap/lib/utils/versioncheck.py

24 lines
823 B
Python
Raw Normal View History

#!/usr/bin/env python
2013-02-06 13:28:17 +04:00
"""
2018-01-02 02:48:10 +03:00
Copyright (c) 2006-2018 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
2013-02-06 13:28:17 +04:00
"""
import sys
PYVERSION = sys.version.split()[0]
if PYVERSION >= "3" or PYVERSION < "2.6":
2018-01-31 12:36:13 +03:00
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)
2018-01-31 12:36:13 +03:00
extensions = ("bz2", "gzip", "ssl", "sqlite3", "zlib")
try:
for _ in extensions:
__import__(_)
2014-04-16 11:06:17 +04:00
except ImportError:
errMsg = "missing one or more core extensions (%s) " % (", ".join("'%s'" % _ for _ in extensions))
errMsg += "most likely because current version of Python has been "
errMsg += "built without appropriate dev packages (e.g. 'libsqlite3-dev')"
exit(errMsg)