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 : 18.217.140.32
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 strict; use warnings; use CGI; my $cgi = CGI->new; print $cgi->header('text/html'); print << "EndOfHTML"; <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US"> <head> <title>A Simple CGI Page</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <h1>A Simple CGI Page</h1> <form method="post" enctype="multipart/form-data"> Name: <input type="text" name="name" /><br /> Age: <input type="text" name="age" /><p /> <input type="submit" name="Submit!" value="Submit!" /> </form> <hr /> EndOfHTML if ( my $name = $cgi->param('name') ) { print "Your name is $name.<br />"; } if ( my $age = $cgi->param('age') ) { print "You are $age years old."; } print '</body></html>';