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 /
relay /
Delete
Unzip
Name
Size
Permission
Date
Action
Elements
[ DIR ]
drwxr-sr-x
2014-07-04 12:09
Scripts
[ DIR ]
drwxr-sr-x
2014-07-04 12:14
css
[ DIR ]
drwxr-sr-x
2014-07-04 12:06
fckeditor
[ DIR ]
drwxr-sr-x
2014-07-04 12:12
images
[ DIR ]
drwxrwsr-x
2020-06-06 16:04
img
[ DIR ]
drwxr-sr-x
2019-07-18 14:37
include
[ DIR ]
drwxr-sr-x
2020-06-06 16:06
js
[ DIR ]
drwxr-sr-x
2014-07-04 12:14
thumbs
[ DIR ]
drwxr-sr-x
2014-07-04 12:10
08_29_2011_CESA_Relay_2011_Offcial_Results.xls
183.5
KB
-rw-r--r--
2014-07-04 12:06
09_03_2012_Summary_Results_CESA_Relay_20120825.xlsx
78.13
KB
-rw-r--r--
2014-07-04 12:06
10km Cycle Route.pdf
222.98
KB
-rw-r--r--
2016-08-29 08:38
2009RelayPrizeWinners.zip
22.49
KB
-rw-r--r--
2014-07-04 12:06
2009RelayResults.zip
79.71
KB
-rw-r--r--
2014-07-04 12:07
5km Run Route.pdf
220.07
KB
-rw-r--r--
2016-08-29 08:38
Binder1.pdf
1.64
MB
-rw-r--r--
2014-08-19 08:47
CESA 2018 Cycle Route.pdf
1.03
MB
-rw-r--r--
2018-08-26 10:29
CESA 2018 Run Route.pdf
965.48
KB
-rw-r--r--
2018-08-26 10:29
CESA Relay Map.pdf
440.13
KB
-rw-r--r--
2014-08-20 09:07
CESA Relay.docx
855.17
KB
-rw-r--r--
2014-07-03 09:45
CESA Venue Layout.pdf
408.39
KB
-rw-r--r--
2014-08-20 09:08
CESA2018Results.pdf
19.62
KB
-rw-r--r--
2018-09-26 09:59
CESA_Relay_Order_Form.xls
57.5
KB
-rw-r--r--
2016-07-27 13:49
CESA_Relay_Order_Form.xlsx
28.42
KB
-rw-r--r--
2016-07-20 08:24
CESA_relay_results.xls
214.5
KB
-rw-r--r--
2014-07-04 12:07
Cycling Route.pdf
998.8
KB
-rw-r--r--
2017-08-23 08:23
Kyalami Country Club - Platter list.doc
24.5
KB
-rw-r--r--
2016-08-02 08:15
Relay_2008_Results.zip
56.99
KB
-rw-r--r--
2014-07-04 12:09
Relay_2008_Results_CSV.zip
22.05
KB
-rw-r--r--
2014-07-04 12:09
Running Route.pdf
936.87
KB
-rw-r--r--
2017-08-23 08:23
Summary_Results_CESA_Relay_2013.pdf
141.26
KB
-rw-r--r--
2014-07-04 12:09
add.php
9.44
KB
-rw-r--r--
2014-07-04 12:07
addimg.php
994
B
-rw-r--r--
2014-07-04 12:07
addimgck.php
2.83
KB
-rw-r--r--
2014-07-04 12:07
comp_cyc.php
2.84
KB
-rw-r--r--
2014-07-04 12:07
error_log
11.04
KB
-rw-r--r--
2014-07-04 12:09
gallery.php
2.79
KB
-rw-r--r--
2017-09-27 09:06
index.php
4.79
KB
-rw-r--r--
2020-02-12 09:53
kcc_drinks_order.pdf
108.71
KB
-rw-r--r--
2016-08-12 12:08
mailer.html
2.35
KB
-rw-r--r--
2016-06-22 09:15
mailer2.html
2.53
KB
-rw-r--r--
2016-08-24 08:45
mailer3.html
3.18
KB
-rw-r--r--
2016-08-24 08:50
readme.txt
241
B
-rw-r--r--
2014-07-04 12:09
screen.css
2.96
KB
-rw-r--r--
2016-06-22 08:10
Save
Rename
<script type="text/javascript" src="js/prototype.js"></script> <script type="text/javascript" src="js/scriptaculous.js?load=effects,builder"></script> <script type="text/javascript" src="js/lightbox.js"></script> <link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" /> <?php // Adam Khoury PHP Image Function Library 1.0 // Function for resizing any jpg, gif, or png image files function ak_img_resize($target, $newcopy, $w, $h, $ext) { list($w_orig, $h_orig) = getimagesize($target); if (file_exists($newcopy)) { list($w_thumb, $h_thumb) = getimagesize($newcopy); if ( ($w_thumb == $w) && ($h_thumb == $h) ) { return; } } $scale_ratio = $w_orig / $h_orig; if (($w / $h) > $scale_ratio) { $w = $h * $scale_ratio; } else { $h = $w / $scale_ratio; } $img = ""; $ext = strtolower($ext); if ($ext == "gif"){ $img = imagecreatefromgif($target); } else if($ext =="png"){ $img = imagecreatefrompng($target); } else { $img = imagecreatefromjpeg($target); } $tci = imagecreatetruecolor($w, $h); // imagecopyresampled(dst_img, src_img, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h) imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig); imagejpeg($tci, $newcopy, 80); } ?> <ul> <li><b><a href="/galleries/relay2017/index.html">View the 2017 Photo Gallery</a></b></li> <!-- <li class="gallery_list"><a href="index.php?sec=gallery&catDirectory=2012">2012</a></li> <li class="gallery_list"><a href="index.php?sec=gallery&catDirectory=2011">2011</a></li> <li class="gallery_list"><a href="index.php?sec=gallery&catDirectory=2010">2010</a></li> --> </ul> <?php if (isset($_GET['catDirectory'])) { $idir = "images/".$_GET['catDirectory']; echo '<h1 style="text-transform:uppercase">Relay '.$_GET['catDirectory'].'</h1>'; if (is_dir($idir)) { if ($d = opendir($idir)){ while (($file1 = readdir($d))!== false){ /*echo ''.$idir.'/'.$file1.'~'.filetype($idir.'/'.$file1).'<br>';*/ if ( (filetype($idir.'/'.$file1) == 'file') && (filesize($idir.'/'.$file1) > 0) ){ $kaboom = explode(".", $file1); // Split file name into an array using the dot $fileExt = end($kaboom); $target_file = $idir.'/'.$file1; $resized_file = $idir.'/thumb/thumb-'.$file1; $wmax = 150; $hmax = 150; ak_img_resize($target_file, $resized_file, $wmax, $hmax, $fileExt); echo '<div style="float:left;postion:relative;padding:5px; width:150px; height:150px; border:1px solid #fff"><a href="'.$idir.'/'.$file1.'" rel="lightbox['.$idir.']" style="text-align:center; margin: auto 0;"><img src="'.$resized_file.'" border=0 ></a></div>'; } } closedir($d); } } } ?>