Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.134.104.224
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
2022-02-12 18:15
cookie.cgi
2.74
KB
-rwxr-xr-x
2022-02-12 18:15
crash.cgi
154
B
-rwxr-xr-x
2022-02-12 18:15
file_upload.cgi
2.38
KB
-rwxr-xr-x
2022-02-12 18:15
mojo_proxy.pl
801
B
-rw-r--r--
2022-02-12 18:15
wikipedia_example.cgi
918
B
-rwxr-xr-x
2022-02-12 18:15
wilogo.gif
458
B
-rw-r--r--
2022-01-18 12:18
Save
Rename
#!/usr/bin/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>