mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-24 05:23:03 +00:00
20 lines
419 B
Text
20 lines
419 B
Text
|
#!/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
|
||
|
|