Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
fpdf /
demo /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
24
B
-rw-r--r--
2017-10-25 14:17
error_log
35.51
KB
-rw-r--r--
2013-05-22 07:50
generic.param.php
920
B
-rw-r--r--
2013-05-22 07:50
html2ps.php
8.46
KB
-rw-r--r--
2013-05-22 07:50
index.php
18.61
KB
-rw-r--r--
2013-05-22 07:50
php-cgi.core
4.26
MB
-rw-r--r--
2013-05-22 07:51
phpinfo.php
21
B
-rw-r--r--
2013-05-22 07:50
systemcheck.footer.tpl
80
B
-rw-r--r--
2013-05-22 07:50
systemcheck.header.tpl
1.33
KB
-rw-r--r--
2013-05-22 07:50
systemcheck.php
18.82
KB
-rw-r--r--
2013-05-22 07:50
test.php
2.79
KB
-rw-r--r--
2013-05-22 07:50
Save
Rename
<?php /** * Read a query parameter * If this parameter is not specified, return the default value * Remove magic quotes, if they're enabled * */ function get_var($name, $array, $maxlength=255, $default=null) { /** * Check if this parameter is specified */ if (!isset($array[$name])) { return $default; }; /** * Read initial value of parameter */ $data = $array[$name]; if (is_array($data)) { /** * Arrays should be processed element-by-element */ if (get_magic_quotes_gpc()) { foreach ($data as $key => $value) { $data[$key] = stripslashes($data[$key]); }; }; } else { /** * Remove slashes added by magic quotes option */ if (get_magic_quotes_gpc()) { $data = stripslashes($data); }; /** * Limit maximal length of passed data */ $data = substr($data, 0, $maxlength); }; return $data; } ?>