mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 23:06:11 +00:00
Merge pull request #312 from pavlukivan/master
Updated information and fixed #302
This commit is contained in:
commit
c23899a6fa
2 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue