mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-12-18 16:53:43 +00:00
9 lines
279 B
Python
9 lines
279 B
Python
|
#!/usr/bin/python
|
||
|
import os
|
||
|
import sys
|
||
|
definepath=os.getcwd()
|
||
|
sys.path.append(definepath)
|
||
|
from src.core import setcore
|
||
|
setcore.start_web_server_unthreaded("%s/src/program_junk/web_clone/" % (definepath))
|
||
|
#setcore.start_web_server("%s/src/program_junk/web_clone/" % (definepath))
|