mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-25 05:50:18 +00:00
Merge pull request #1 from anonymous-ME/webcloner-fix
fixing web cloner - fallback option with urllib
This commit is contained in:
commit
53cfb2cda0
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ try:
|
|||
# open file for writing
|
||||
filewrite = open(userconfigpath + "web_clone/index.html", "w")
|
||||
# write the data back from the request
|
||||
filewrite.write(html)
|
||||
filewrite.write(html.decode("utf-8"))
|
||||
# close the file
|
||||
filewrite.close()
|
||||
|
||||
|
|
Loading…
Reference in a new issue