mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 01:16:59 +00:00
Update for people that just download 'sqlmap.py' <- they exist
This commit is contained in:
parent
75fd878242
commit
d248317b89
3 changed files with 7 additions and 4 deletions
|
|
@ -9,7 +9,10 @@ import sys
|
|||
|
||||
sys.dont_write_bytecode = True
|
||||
|
||||
__import__("lib.utils.versioncheck") # this has to be the first non-standard import
|
||||
try:
|
||||
__import__("lib.utils.versioncheck") # this has to be the first non-standard import
|
||||
except ImportError:
|
||||
exit("[!] wrong installation detected (missing modules). Visit 'https://github.com/sqlmapproject/sqlmap/#installation' for further details")
|
||||
|
||||
import bdb
|
||||
import distutils
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue