sqlmap/sqlmap.py

18 lines
593 B
Python
Raw Normal View History

2008-10-15 19:38:22 +04:00
#!/usr/bin/env python
"""
2013-01-18 18:07:51 +04:00
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
2008-10-15 19:38:22 +04:00
"""
import sys
PYVERSION = sys.version.split()[0]
2008-10-15 19:38:22 +04:00
if PYVERSION >= "3" or PYVERSION < "2.6":
2012-08-22 17:05:17 +04:00
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)
2012-03-28 17:46:31 +04:00
elif __name__ == "__main__":
from _sqlmap import main
2012-04-03 16:35:19 +04:00
from lib.controller.controller import start # needed for proper working of --profile switch
2008-10-15 19:38:22 +04:00
main()