social-engineer-toolkit/se-toolkit

18 lines
672 B
Text
Raw Normal View History

2013-04-15 14:26:00 +00:00
#!/usr/bin/python
import subprocess
2013-07-28 14:15:11 +00:00
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()
2013-04-15 14:26:00 +00:00
2013-07-28 14:15:11 +00:00
# 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"
2013-04-15 14:26:00 +00:00
2013-07-28 14:15:11 +00:00
# handle exceptions
except Exception, error:
log(error)
print "\n\n[!] Something went wrong, printing the error: "+ str(error)