Merge pull request #312 from pavlukivan/master

Updated information and fixed #302
This commit is contained in:
trustedsec 2016-10-13 22:07:38 -04:00 committed by GitHub
commit c23899a6fa
2 changed files with 5 additions and 4 deletions

View file

@ -1182,10 +1182,11 @@ and send the QRCode via a mailer.
except ImportError:
print_error(
"This module requires python-imaging to work properly.")
print_error("In Ubuntu do apt-get install python-imaging")
"This module requires PIL (Or Pillow) and qrcode to work properly.")
print_error(
"Else refer to here for installation: http://code.google.com/appengine/docs/python/images/installingPIL.html")
"Just do pip install Pillow; pip install qrcode")
print_error(
"Else refer to here for installation: http://pillow.readthedocs.io/en/3.3.x/installation.html")
return_continue()
# Main Menu choice 9: PowerShell Attacks

View file

@ -83,7 +83,7 @@ with open(os.path.join(core.setdir + "teensy")) as fileopen:
def writefile(filename, now):
with open(os.path.join("src/teensy" + filename)) as fileopen, \
with open(os.path.join("src/teensy/" + filename)) as fileopen, \
open(os.path.join(core.setdir + "/reports/teensy_{0}.pde".format(now)), "w") as filewrite:
for line in fileopen: