social-engineer-toolkit/seautomate

118 lines
4.2 KiB
Text
Raw Normal View History

#!/usr/bin/env python
2012-12-31 22:11:37 +00:00
import sys
import os
import time
import subprocess
import re
2013-04-15 14:26:00 +00:00
# check where we are and load default directory
if os.path.isdir("/usr/share/setoolkit"):
if not os.path.isfile("se-toolkit"):
os.chdir("/usr/share/setoolkit")
sys.path.append("/usr/share/setoolkit")
# if we can't see our config then something didn't go good..
2015-07-13 21:29:42 +00:00
if not os.path.isfile("/etc/setoolkit/set.config"):
2013-04-15 14:26:00 +00:00
print_error("Cannot locate SET executable. Try running from the local directory.")
print_error("If this does not work, please run the setup.py install file.")
sys.exit()
2012-12-31 22:11:37 +00:00
#
# Simple client mode for SET
#
#
# try to import pexpect
try:
import pexpect
2012-12-31 22:11:37 +00:00
# if pexpect fails
except ImportError:
print "\n[*] PEXPECT is required, please download and install before running this..."
print "[*] Exiting SEAUTOMATE mode..."
sys.exit()
2012-12-31 22:11:37 +00:00
# try to define filename through argument specified during command line mode
try:
filename = sys.argv[1]
2012-12-31 22:11:37 +00:00
# if we through an exception spit out the command line syntax
except IndexError:
print "\nThe Social-Engineer Toolkit Automate - Automatation for SET"
print "\nSimply create a file that has each option you want from menu mode."
print "For example your file should look something like this:"
print "\n2\n2\n2\nhttps://gmail.com\n2\n2\n443\netc.\n"
print "Usage: ./seautomate <filename>"
sys.exit()
2012-12-31 22:11:37 +00:00
# if the filename doesnt exist, throw an error
if not os.path.isfile(filename):
print "\n[*] Sorry hoss, unable to locate that filename, try again.\n"
sys.exit()
2012-12-31 22:11:37 +00:00
password = False
2012-12-31 22:11:37 +00:00
# if the path is around
if os.path.isfile(filename):
try:
print "[*] Spawning SET in a threaded process..."
child = pexpect.spawn("python setoolkit")
fileopen = open(filename, "r")
for line in fileopen:
line = line.rstrip()
# if we just use enter send default
if line == "":
line = "default"
2012-12-31 22:11:37 +00:00
match1 = re.search("OMGPASSWORDHERE", line)
if match1:
line = line.replace("OMGPASSWORDHERE", "")
password = True
2012-12-31 22:11:37 +00:00
if password is False:
print "[*] Sending command {0} to the interface...".format(line)
if password is True:
print "[*] Sending command [**********] (password masked) to the interface..."
password = False
2012-12-31 22:11:37 +00:00
if line == "default":
line = ""
2012-12-31 22:11:37 +00:00
if line == "CONTROL-C-HERE":
try:
print "[*] This may take a few seconds while SET catches up..."
child.expect("Next line of the body:")
time.sleep(2)
child.sendline("\n")
child.sendcontrol('c')
2012-12-31 22:11:37 +00:00
# if the user is using pexpect < 2.3
except AttributeError:
print "[-] Error: You are running pexpect < 2.3 which is needed for this function"
choice = raw_input("Would you like to install it now yes or no: ")
if choice == "yes" or choice == "y":
subprocess.Popen("wget http://sourceforge.net/projects/pexpect/files/pexpect/Release%202.3/pexpect-2.3.tar.gz;tar -zxvf pexpect-2.3.tar.gz;cd pexpect-2.3;python setup.py install;cd ..;rm -rf pexpect-2*", shell=True).wait()
try:
reload(pexpect)
child.sendcontrol('c')
except:
print "[*] Relaunch the Social-Engineer Toolkit for changes to apply."
sys.exit()
if line != "CONTROL-C-HERE":
child.sendline(line)
2012-12-31 22:11:37 +00:00
print "[*] Finished sending commands, interacting with the interface.."
child.interact()
2012-12-31 22:11:37 +00:00
# sometimes pexpect can throw errors upon exit this handles them
except OSError:
sys.exit()
2012-12-31 22:11:37 +00:00
# handle keyboardinterrupts (controlc)
except KeyboardInterrupt:
print "[*] Control-C detected, exiting the Social-Engineer Toolkit.."
sys.exit()
2012-12-31 22:11:37 +00:00
# handle everything else
except Exception as e:
print "[*] Something went wrong, printing error: ", e