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 : 216.73.216.59
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
psy /
psysh /
src /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
ListCommand
[ DIR ]
drwxr-xr-x
2019-12-06 14:19
TimeitCommand
[ DIR ]
drwxr-xr-x
2019-12-06 14:19
BufferCommand.php
2.17
KB
-rw-r--r--
2019-12-06 14:19
ClearCommand.php
1.03
KB
-rw-r--r--
2019-12-06 14:19
Command.php
7.47
KB
-rw-r--r--
2019-12-06 14:19
DocCommand.php
4.16
KB
-rw-r--r--
2019-12-06 14:19
DumpCommand.php
2.48
KB
-rw-r--r--
2019-12-06 14:19
EditCommand.php
5.58
KB
-rw-r--r--
2019-12-06 14:19
ExitCommand.php
1.06
KB
-rw-r--r--
2019-12-06 14:19
HelpCommand.php
2.71
KB
-rw-r--r--
2019-12-06 14:19
HistoryCommand.php
7.47
KB
-rw-r--r--
2019-12-06 14:19
ListCommand.php
9.69
KB
-rw-r--r--
2019-12-06 14:19
ParseCommand.php
4.91
KB
-rw-r--r--
2019-12-06 14:19
PsyVersionCommand.php
953
B
-rw-r--r--
2019-12-06 14:19
ReflectingCommand.php
9.41
KB
-rw-r--r--
2019-12-06 14:19
ShowCommand.php
9.26
KB
-rw-r--r--
2019-12-06 14:19
SudoCommand.php
3.68
KB
-rw-r--r--
2019-12-06 14:19
ThrowUpCommand.php
4.44
KB
-rw-r--r--
2019-12-06 14:19
TimeitCommand.php
5.23
KB
-rw-r--r--
2019-12-06 14:19
TraceCommand.php
5.03
KB
-rw-r--r--
2019-12-06 14:19
WhereamiCommand.php
4.06
KB
-rw-r--r--
2019-12-06 14:19
WtfCommand.php
3.58
KB
-rw-r--r--
2019-12-06 14:19
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\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * Clear the Psy Shell. * * Just what it says on the tin. */ class ClearCommand extends Command { /** * {@inheritdoc} */ protected function configure() { $this ->setName('clear') ->setDefinition([]) ->setDescription('Clear the Psy Shell screen.') ->setHelp( <<<'HELP' Clear the Psy Shell screen. Pro Tip: If your PHP has readline support, you should be able to use ctrl+l too! HELP ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $output->write(\sprintf('%c[2J%c[0;0f', 27, 27)); return 0; } }