SIGN IN SIGN UP
sqlmapproject / sqlmap UNCLAIMED

Automatic SQL injection and database takeover tool

36950 0 0 Python
2019-05-08 12:47:52 +02:00
#!/usr/bin/env python
2013-02-06 10:28:17 +01:00
"""
2023-01-02 23:24:59 +01:00
Copyright (c) 2006-2023 sqlmap developers (https://sqlmap.org/)
2017-10-11 14:50:46 +02:00
See the file 'LICENSE' for copying permission
2013-02-06 10:28:17 +01:00
"""
import sys
2018-09-27 09:15:53 +02:00
import time
2013-02-06 10:28:17 +01:00
PYVERSION = sys.version.split()[0]
2019-05-08 13:38:07 +02:00
if PYVERSION < "2.6":
sys.exit("[%s] [CRITICAL] incompatible Python version detected ('%s'). To successfully run sqlmap you'll have to use version 2.6, 2.7 or 3.x (visit 'https://www.python.org/downloads/')" % (time.strftime("%X"), PYVERSION))
2018-09-08 23:36:08 +02:00
errors = []
2018-05-24 10:07:35 +02:00
extensions = ("bz2", "gzip", "pyexpat", "ssl", "sqlite3", "zlib")
2018-09-08 23:36:08 +02:00
for _ in extensions:
try:
__import__(_)
2018-09-08 23:36:08 +02:00
except ImportError:
errors.append(_)
if errors:
2019-05-25 00:33:30 +02:00
errMsg = "[%s] [CRITICAL] missing one or more core extensions (%s) " % (time.strftime("%X"), ", ".join("'%s'" % _ for _ in errors))
errMsg += "most likely because current version of Python has been "
2018-09-08 23:36:08 +02:00
errMsg += "built without appropriate dev packages"
2019-03-04 16:36:19 +01:00
sys.exit(errMsg)