mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-24 05:23:03 +00:00
17 lines
672 B
Python
Executable file
17 lines
672 B
Python
Executable file
#!/usr/bin/python
|
|
import subprocess
|
|
try:
|
|
print "[!] SET is changing to just ./setoolkit instead"
|
|
print "[!] se-toolkit is going away, beware."
|
|
print "[!] Use: ./setoolkit from now on."
|
|
raw_input("Press {return} to continue.")
|
|
subprocess.Popen("./setoolkit", shell=True).wait()
|
|
|
|
# handle keyboard interrupts
|
|
except KeyboardInterrupt:
|
|
print "\n\nThank you for " + bcolors.RED+"shopping" + bcolors.ENDC+" with the Social-Engineer Toolkit.\n\nHack the Gibson...and remember...hugs are worth more than handshakes.\n"
|
|
|
|
# handle exceptions
|
|
except Exception, error:
|
|
log(error)
|
|
print "\n\n[!] Something went wrong, printing the error: "+ str(error)
|