social-engineer-toolkit/seproxy

73 lines
2.1 KiB
Text
Raw Normal View History

2012-12-31 22:11:37 +00:00
#!/usr/bin/python
#
# Simple proxy for SET, note will show up in history
#
import pexpect
import sys
import getpass
from src.core.setcore import *
# grab the operating system
operating_system = check_os()
# if windows then do some stuff
if operating_system == "posix":
definepath = os.getcwd()
2012-12-31 22:11:37 +00:00
2016-01-14 20:50:06 +00:00
print("\n[*] Welcome to the SET-Proxy Configuration Utility")
print("\nEnter the proxy setting informatiom below.\n\nExample: http://10.3.1.1:8080\n")
2012-12-31 22:11:37 +00:00
try:
2012-12-31 22:11:37 +00:00
proxy = raw_input("Enter the proxy server: ")
2016-01-14 20:50:06 +00:00
username = raw_input(
"Enter the username for the proxy (hit enter for none): ")
password = getpass.getpass(
"Enter the password for the proxy (hit enter for none): ")
2012-12-31 22:11:37 +00:00
except KeyboardInterrupt:
2016-01-14 20:50:06 +00:00
print("\n[!] Exiting the Social-Engineer Toolkit.")
sys.exit()
2012-12-31 22:11:37 +00:00
if username != "":
2016-01-14 20:50:06 +00:00
proxy_string = "export http_proxy='http://%s:%s@%s'" % (
username, password, proxy)
2012-12-31 22:11:37 +00:00
if username == "":
proxy_string = "export http_proxy='http://%s'" % (proxy)
2012-12-31 22:11:37 +00:00
2016-01-14 20:50:06 +00:00
filewrite = open(setdir + "/proxy.config", "w")
filewrite.write(proxy_string)
filewrite.close()
2012-12-31 22:11:37 +00:00
from src.core.set import *
2012-12-31 22:11:37 +00:00
2016-01-14 20:50:06 +00:00
def kill_proc(port, flag):
proc = subprocess.Popen("netstat -antp | grep '%s'" %
(port), shell=True, stdout=subprocess.PIPE)
stdout_value = proc.communicate()[0]
a = re.search("\d+/%s" % (flag), stdout_value)
if a:
2016-01-14 20:50:06 +00:00
b = a.group()
b = b.replace("/%s" % (flag), "")
subprocess.Popen("kill -9 %s 1> /dev/null 2> /dev/null" %
(b), shell=True).wait()
2012-12-31 22:11:37 +00:00
# cleans up stale processes from SET
try:
# kill anything python running on 80
2016-01-14 20:50:06 +00:00
kill_proc("80", "python")
# kill anything on 443 ruby which is generally a rogue listener
kill_proc("443", "ruby")
2012-12-31 22:11:37 +00:00
# handle errors
2016-01-14 20:50:06 +00:00
except Exception as error:
log(error)
pass
2012-12-31 22:11:37 +00:00
else:
2016-01-14 20:50:06 +00:00
print("[!] Sorry, this only works on posix (nix) based systems and is not compatible with this operating system.")