social-engineer-toolkit/seupdate
2016-07-22 09:52:36 -07:00

35 lines
1,005 B
Python
Executable file

#!/usr/bin/env python
#
# simple git update for set pulling from core modules
#
import os
import sys
import src.core.setcore as core
# check where we are and load default directory
if os.path.isdir("/usr/share/setoolkit"):
if not os.path.isfile("se-toolkit"):
os.chdir("/usr/share/setoolkit")
sys.path.append("/usr/share/setoolkit")
# if we can't see our config then something didn't go good..
if not os.path.isfile("/etc/setoolkit/set.config"):
core.print_error("Cannot locate SET executable. Try running from the local directory.")
core.print_error("If this does not work, please run the setup.py install file.")
sys.exit()
from src.core.setcore import *
try:
# pull update set from the core libraries
update_set()
# except keyboard interrupts
except KeyboardInterrupt:
print("\n[!] Control-C detected. Exiting updating SET.")
# handle all other errors
except Exception as e:
print("\n[!] Something went wrong.. Printing the error: {}".format(e))