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 /
insepet /
libromaster /
lib /
minify /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxrwxrwx
LICENSE.txt
1.52
KB
-rwxrwxrwx
config.php
6.88
KB
-rwxrwxrwx
groupsConfig.php
416
B
-rwxrwxrwx
readme_moodle.txt
551
B
-rwxrwxrwx
utils.php
2.34
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.php
<?php /** * Utility functions for generating URIs in HTML files * * @package Minify */ require_once dirname(__FILE__) . '/lib/Minify/HTML/Helper.php'; /* * Get an HTML-escaped Minify URI for a group or set of files. By default, URIs * will contain timestamps to allow far-future Expires headers. * * <code> * <link rel="stylesheet" type="text/css" href="<?= Minify_getUri('css'); ?>" /> * <script src="<?= Minify_getUri('js'); ?>"></script> * <script src="<?= Minify_getUri(array( * '//scripts/file1.js' * ,'//scripts/file2.js' * )); ?>"></script> * </code> * * @param mixed $keyOrFiles a group key or array of file paths/URIs * @param array $opts options: * 'farExpires' : (default true) append a modified timestamp for cache revving * 'debug' : (default false) append debug flag * 'charset' : (default 'UTF-8') for htmlspecialchars * 'minAppUri' : (default '/min') URI of min directory * 'rewriteWorks' : (default true) does mod_rewrite work in min app? * 'groupsConfigFile' : specify if different * @return string */ function Minify_getUri($keyOrFiles, $opts = array()) { return Minify_HTML_Helper::getUri($keyOrFiles, $opts); } /** * Get the last modification time of several source js/css files. If you're * caching the output of Minify_getUri(), you might want to know if one of the * dependent source files has changed so you can update the HTML. * * Since this makes a bunch of stat() calls, you might not want to check this * on every request. * * @param array $keysAndFiles group keys and/or file paths/URIs. * @return int latest modification time of all given keys/files */ function Minify_mtime($keysAndFiles, $groupsConfigFile = null) { $gc = null; if (! $groupsConfigFile) { $groupsConfigFile = dirname(__FILE__) . '/groupsConfig.php'; } $sources = array(); foreach ($keysAndFiles as $keyOrFile) { if (is_object($keyOrFile) || 0 === strpos($keyOrFile, '/') || 1 === strpos($keyOrFile, ':\\')) { // a file/source obj $sources[] = $keyOrFile; } else { if (! $gc) { $gc = (require $groupsConfigFile); } foreach ($gc[$keyOrFile] as $source) { $sources[] = $source; } } } return Minify_HTML_Helper::getLastModified($sources); }
Close