Fixed my own buggy code

This commit is contained in:
trustedsec 2013-02-08 08:50:03 -05:00
parent 58d87f9da2
commit 9f6edc0aa9

View file

@ -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()