social-engineer-toolkit/seweb

20 lines
495 B
Text
Raw Normal View History

2012-12-31 22:11:37 +00:00
#!/usr/bin/env python
import sys,socket
try:
# import the web interface
from src.commandcenter.command_center import *
2012-12-31 22:11:37 +00:00
# except socket errors
except socket.error:
print "[*] Something is already running on the SET web port, please exit it and then restart.\n\n"
2012-12-31 22:11:37 +00:00
# except os errors
except OSError:
pass
2012-12-31 22:11:37 +00:00
# except the rest
except:
print "[*] Exiting the Social-Engineer Toolkit Command-Center"
print "[*] Thank you for shopping at the Social-Engineer Toolkit\n"
pass