⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
webmin
/
pap
/
View File Name :
index.cgi
#!/usr/bin/perl # index.cgi # Displays a menu of PPP server related icons require './pap-lib.pl'; # Show icons for various option categories @links = ( "list_mgetty.cgi", "edit_options.cgi", "list_dialin.cgi", "list_secrets.cgi" ); @links = grep { /_(.*).cgi/; $access{$1} } @links; @titles = map { /_(.*).cgi/; $text{$1."_title"} } @links; @icons = map { /_(.*).cgi/; "images/$1.gif" } @links; if (@links == 1 && $access{'direct'}) { &redirect($links[0]); exit; } &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1); if (@links) { &icons_table(\@links, \@titles, \@icons); } else { print "
$text{'index_none'}
\n"; } &ui_print_footer("/", $text{'index'});