⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.168
Server IP:
57.129.66.90
Server:
Linux vps-7f548908 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
libcgi-pm-perl
/
examples
/
Edit File: wikipedia_example.cgi
#!/usr/bin/perl use strict; use warnings; use CGI; my $cgi = CGI->new; print $cgi->header('text/html'); print << "EndOfHTML";
A Simple CGI Page
A Simple CGI Page
Name:
Age:
EndOfHTML if ( my $name = $cgi->param('name') ) { print "Your name is $name.
"; } if ( my $age = $cgi->param('age') ) { print "You are $age years old."; } print '';
Simpan