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 /
sipdm.cesa.co.za /
lib /
lessphp /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Output
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
SourceMap
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Tree
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Visitor
[ DIR ]
drwxr-sr-x
2017-06-22 15:46
Autoloader.php
1.42
KB
-rw-r--r--
2017-06-22 15:46
Cache.php
7.76
KB
-rw-r--r--
2017-06-22 15:46
Colors.php
4.17
KB
-rw-r--r--
2017-06-22 15:46
Configurable.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
Environment.php
3.29
KB
-rw-r--r--
2017-06-22 15:46
Functions.php
36.9
KB
-rw-r--r--
2017-06-22 15:46
LICENSE
9.5
KB
-rw-r--r--
2017-06-22 15:46
Less.php.combine
226
B
-rw-r--r--
2017-06-22 15:46
Mime.php
1007
B
-rw-r--r--
2017-06-22 15:46
Output.php
749
B
-rw-r--r--
2017-06-22 15:46
Parser.php
59.76
KB
-rw-r--r--
2017-06-22 15:46
Tree.php
1.6
KB
-rw-r--r--
2017-06-22 15:46
Version.php
328
B
-rw-r--r--
2017-06-22 15:46
Visitor.php
850
B
-rw-r--r--
2017-06-22 15:46
VisitorReplacing.php
1.19
KB
-rw-r--r--
2017-06-22 15:46
moodle_readme.txt
333
B
-rw-r--r--
2017-06-22 15:46
Save
Rename
<?php /** * Mime lookup * * @package Less * @subpackage node */ class Less_Mime{ // this map is intentionally incomplete // if you want more, install 'mime' dep static $_types = array( '.htm' => 'text/html', '.html'=> 'text/html', '.gif' => 'image/gif', '.jpg' => 'image/jpeg', '.jpeg'=> 'image/jpeg', '.png' => 'image/png', '.ttf' => 'application/x-font-ttf', '.otf' => 'application/x-font-otf', '.eot' => 'application/vnd.ms-fontobject', '.woff' => 'application/x-font-woff', '.svg' => 'image/svg+xml', ); public static function lookup( $filepath ){ $parts = explode('.',$filepath); $ext = '.'.strtolower(array_pop($parts)); if( !isset(self::$_types[$ext]) ){ return null; } return self::$_types[$ext]; } public static function charsets_lookup( $type = null ){ // assumes all text types are UTF-8 return $type && preg_match('/^text\//',$type) ? 'UTF-8' : ''; } }