mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-27 15:00:27 +00:00
Fixed my own buggy code
This commit is contained in:
parent
58d87f9da2
commit
9f6edc0aa9
1 changed files with 8 additions and 0 deletions
|
@ -18,6 +18,14 @@ import inspect
|
|||
import base64
|
||||
from src.core import dictionaries
|
||||
|
||||
# check to see if we have python-pycrypto
|
||||
try:
|
||||
from Crypto.Cipher import AES
|
||||
|
||||
except ImportError:
|
||||
print "[!] The python-pycrypto python module not installed. You will loose the ability t$
|
||||
pass
|
||||
|
||||
# used to grab the true path for current working directory
|
||||
definepath = os.getcwd()
|
||||
|
||||
|
|
Loading…
Reference in a new issue