mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-12-17 16:23:10 +00:00
8 lines
279 B
Python
8 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))
|