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.144.95.186
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
sebastian /
resource-operations /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
generate.php
1.45
KB
-rwxr-xr-x
2018-10-04 09:00
Save
Rename
#!/usr/bin/env php <?php declare(strict_types=1); /* * This file is part of resource-operations. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $functions = require __DIR__ . '/FunctionSignatureMap.php'; $resourceFunctions = []; foreach ($functions as $function => $arguments) { foreach ($arguments as $argument) { if (strpos($argument, '?') === 0) { $argument = substr($argument, 1); } if ($argument === 'resource') { $resourceFunctions[] = explode('\'', $function)[0]; } } } $resourceFunctions = array_unique($resourceFunctions); sort($resourceFunctions); $buffer = <<<EOT <?php declare(strict_types=1); /* * This file is part of resource-operations. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\ResourceOperations; final class ResourceOperations { /** * @return string[] */ public static function getFunctions(): array { return [ EOT; foreach ($resourceFunctions as $function) { $buffer .= sprintf(" '%s',\n", $function); } $buffer .= <<< EOT ]; } } EOT; file_put_contents(__DIR__ . '/../src/ResourceOperations.php', $buffer);