mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 23:06:11 +00:00
Update template.py
core.setdir discarded in os.path.join due to aboslute path as second argument
This commit is contained in:
parent
59d328085c
commit
0e60aa6524
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ if not os.path.isdir(os.path.join(core.setdir, "web_clone")):
|
|||
os.makedirs(os.path.join(core.setdir, "web_clone/"))
|
||||
if os.path.isfile(os.path.join(core.setdir, "web_clone/index.html")):
|
||||
os.remove(os.path.join(core.setdir, "web_clone/index.html"))
|
||||
shutil.copyfile("src/html/index.template", os.path.join(core.setdir, "/web_clone/index.html"))
|
||||
shutil.copyfile("src/html/index.template", os.path.join(core.setdir, "web_clone/index.html"))
|
||||
|
||||
with open(os.path.join(core.setdir, "site.template"), 'w') as filewrite:
|
||||
filewrite.write("TEMPLATE=SELF\nURL={0}".format(url))
|
||||
|
|
Loading…
Add table
Reference in a new issue