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 /
awards-old /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-sr-x
2022-10-05 11:38
invites
[ DIR ]
drwxr-sr-x
2019-06-03 08:01
C4E2018.jpg
8.67
KB
-rw-r--r--
2020-07-24 10:52
CESA Aon Awards 2017 - Sponsorship Opportunities.pdf
331.67
KB
-rw-r--r--
2017-03-01 08:40
CESA_AON_Awards_2020.pdf
10.61
MB
-rw-r--r--
2020-11-12 06:43
Call4Entries_2018.pdf
9.79
MB
-rw-r--r--
2018-02-23 12:10
Call4Entries_2020.pdf
1.57
MB
-rw-r--r--
2020-05-28 09:16
Call4Entries_2020b.pdf
1.59
MB
-rw-r--r--
2020-06-17 15:13
Call4Entries_2021.pdf
1.25
MB
-rw-r--r--
2021-05-31 12:36
Call4Entries_2022.pdf
2.42
MB
-rw-r--r--
2022-03-01 12:43
Full Submissions 2017_RP_FINAL.PDF
4.96
MB
-rw-r--r--
2017-04-24 07:47
PH_Midrand_factsheet.pdf
1.72
MB
-rw-r--r--
2018-04-25 09:27
accommodation.php
2.04
KB
-rw-r--r--
2020-09-22 10:04
contactus.php
1.31
KB
-rw-r--r--
2020-09-22 10:04
decline.php
1.17
KB
-rw-r--r--
2018-05-31 11:16
entries.php
10.59
KB
-rw-r--r--
2021-05-31 14:05
entryform.php
1.4
KB
-rw-r--r--
2022-03-30 09:45
header.php
721
B
-rw-r--r--
2022-08-10 07:56
index.php
7.76
KB
-rw-r--r--
2022-10-07 08:18
mailer.php
889
B
-rw-r--r--
2018-06-04 10:08
menu.php
4.75
KB
-rw-r--r--
2022-11-10 12:49
pastawards-gallery-2022.php
4.09
KB
-rw-r--r--
2022-10-05 10:11
pastawards.php
12.74
KB
-rw-r--r--
2022-10-07 08:16
php_errors.log
530.43
KB
-rw-r--r--
2026-08-21 04:23
register.php
1.4
KB
-rw-r--r--
2022-03-30 09:35
rightbar.php
944
B
-rw-r--r--
2022-10-10 11:12
screen.css
3.27
KB
-rw-r--r--
2022-11-10 13:12
sponsors.php
3.4
KB
-rw-r--r--
2022-03-30 09:35
venue.php
1.54
KB
-rw-r--r--
2020-09-22 10:04
visionary-client.php
5.08
KB
-rw-r--r--
2022-11-10 13:13
Save
Rename
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>CESA Engineering Excellence Awards</title> <link href="screen.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- .style1 {color: #B9BBA6} .style2 {color: #333333; } .auto-style1 { border-width: 0px; } --> </style> </head> <?php function resizeJpeg($source, $dest, $width = 300, $height = 300) { list($width_orig, $height_orig) = getimagesize($source); $ratio_orig = $width_orig / $height_orig; if ($width / $height > $ratio_orig) { $width = $height * $ratio_orig; } else { $height = $width / $ratio_orig; } // Resampling the image $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($source); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); ob_start(); imagejpeg($image_p, null, 100); $imageData = ob_get_clean(); file_put_contents($dest, $imageData); } ?> <body> <?php include('header.php'); ?> <table width="100%" border="0" cellpadding="0" cellspacing="0" style="max-width:1350px; margin:auto" align="center"> <tr> <td align="left" class="left" width="250" valign="top" bgcolor="#808080"> <?php include('menu.php'); ?> </td> <td valign='top' class='contentBG' width="100%"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td class="content"> <table width="100%" border="0" cellspacing="0" cellpadding="12"> <tr> <?php $path = "images/galleries/awards-2022/"; // Open the folder $dir_handle = @opendir($path) or die("Unable to open $path"); // Loop through the files $cnt = 0; while ($file = readdir($dir_handle)) { if (strlen($file) > 2 && strlen(file_get_contents($file)) <= 0 && $file != 'thumbs') { if (!file_exists("images/galleries/awards-2022/thumbs/$file")) { resizeJpeg("images/galleries/awards-2022/$file", "images/galleries/awards-2022/thumbs/$file"); } echo "<td width='33%' align='center' valign='center' height='300'><a href='images/galleries/awards-2022/$file' target='_blank'><img border='0' src='images/galleries/awards-2022/thumbs/$file'></a></td>"; $cnt++; } if ($cnt % 3 == 0) { echo '</tr><tr>'; } } //while // Close closedir($dir_handle); ?> </tr> </table> </td> </tr> </table> </td> <td valign='top' width='250' bgcolor="#808080"> <?php include('rightbar.php'); ?></td> </tr> </table> </body> </html>