social-engineer-toolkit/set-update
2013-03-16 15:47:25 -04:00

18 lines
418 B
Python
Executable file

#!/usr/bin/env python
#
# simple svn update for set pulling from core modules
#
import sys
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, e: print "\n[!] Something went wrong.. Printing the error: " + e