mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
23 lines
824 B
Python
23 lines
824 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
import sys
|
|
|
|
PYVERSION = sys.version.split()[0]
|
|
|
|
if PYVERSION >= "3" or PYVERSION < "2.6":
|
|
exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use version 2.6 or 2.7 (visit 'http://www.python.org/download/')" % PYVERSION)
|
|
|
|
extensions = ("gzip", "ssl", "sqlite3", "zlib")
|
|
try:
|
|
for _ in extensions:
|
|
__import__(_)
|
|
except ImportError, ex:
|
|
errMsg = "missing one or more core extensions (%s) " % (", ".join("'%s'" % _ for _ in extensions))
|
|
errMsg += "most probably because current version of Python has been "
|
|
errMsg += "built without appropriate dev packages (e.g. 'libsqlite3-dev')"
|
|
exit(errMsg) |