Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
phar /
phar /
Delete
Unzip
Name
Size
Permission
Date
Action
clicommand.inc
8.5
KB
-rw-rw-r--
2022-10-31 11:36
directorygraphiterator.inc
722
B
-rw-rw-r--
2022-10-31 11:36
directorytreeiterator.inc
1.23
KB
-rw-rw-r--
2022-10-31 11:36
invertedregexiterator.inc
444
B
-rw-rw-r--
2022-10-31 11:36
phar.inc
790
B
-rw-rw-r--
2022-10-31 11:36
phar.php
1.05
KB
-rwxrwxr-x
2022-10-31 11:36
pharcommand.inc
39.07
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
#!/usr/local/bin/php <?php /** @file phar.php * @ingroup Phar * @brief class CLICommand * @author Marcus Boerger * @date 2007 - 2008 * * Phar Command */ if (!extension_loaded('phar')) { if (!class_exists('PHP_Archive', 0)) { echo "Neither Extension Phar nor class PHP_Archive are available.\n"; exit(1); } if (!in_array('phar', stream_get_wrappers())) { stream_wrapper_register('phar', 'PHP_Archive'); } if (!class_exists('Phar',0)) { require 'phar://'.__FILE__.'/phar.inc'; } } foreach(array("SPL", "Reflection") as $ext) { if (!extension_loaded($ext)) { echo "$argv[0] requires PHP extension $ext.\n"; exit(1); } } function command_include($file) { $file = 'phar://' . __FILE__ . '/' . $file; if (file_exists($file)) { include($file); } } function command_autoload($classname) { command_include(strtolower($classname) . '.inc'); } Phar::mapPhar(); spl_autoload_register('command_autoload'); new PharCommand($argc, $argv); __HALT_COMPILER(); ?>