mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-22 12:33:06 +00:00
18 lines
418 B
Python
Executable file
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
|