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.216.95.250
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
console /
Delete
Unzip
Name
Size
Permission
Date
Action
Attribute
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
CI
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Command
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
CommandLoader
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Completion
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Descriptor
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Event
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
EventListener
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Exception
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Formatter
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Helper
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Input
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Logger
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Output
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Question
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Resources
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
SignalRegistry
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Style
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Tester
[ DIR ]
drwxrwxr-x
2022-07-22 10:42
Application.php
43.12
KB
-rw-rw-r--
2022-07-22 10:42
CHANGELOG.md
8.25
KB
-rw-rw-r--
2022-07-22 10:42
Color.php
4.98
KB
-rw-rw-r--
2022-07-22 10:42
ConsoleEvents.php
2.12
KB
-rw-rw-r--
2022-07-22 10:42
Cursor.php
4.03
KB
-rw-rw-r--
2022-07-22 10:42
LICENSE
1.04
KB
-rw-rw-r--
2022-07-22 10:42
README.md
1.2
KB
-rw-rw-r--
2022-07-22 10:42
SingleCommandApplication.php
1.73
KB
-rw-rw-r--
2022-07-22 10:42
Terminal.php
4.86
KB
-rw-rw-r--
2022-07-22 10:42
composer.json
1.81
KB
-rw-rw-r--
2022-07-22 10:42
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console; use Symfony\Component\Console\Output\OutputInterface; /** * @author Pierre du Plessis <pdples@gmail.com> */ final class Cursor { private $output; private $input; /** * @param resource|null $input */ public function __construct(OutputInterface $output, $input = null) { $this->output = $output; $this->input = $input ?? (\defined('STDIN') ? \STDIN : fopen('php://input', 'r+')); } /** * @return $this */ public function moveUp(int $lines = 1): self { $this->output->write(sprintf("\x1b[%dA", $lines)); return $this; } /** * @return $this */ public function moveDown(int $lines = 1): self { $this->output->write(sprintf("\x1b[%dB", $lines)); return $this; } /** * @return $this */ public function moveRight(int $columns = 1): self { $this->output->write(sprintf("\x1b[%dC", $columns)); return $this; } /** * @return $this */ public function moveLeft(int $columns = 1): self { $this->output->write(sprintf("\x1b[%dD", $columns)); return $this; } /** * @return $this */ public function moveToColumn(int $column): self { $this->output->write(sprintf("\x1b[%dG", $column)); return $this; } /** * @return $this */ public function moveToPosition(int $column, int $row): self { $this->output->write(sprintf("\x1b[%d;%dH", $row + 1, $column)); return $this; } /** * @return $this */ public function savePosition(): self { $this->output->write("\x1b7"); return $this; } /** * @return $this */ public function restorePosition(): self { $this->output->write("\x1b8"); return $this; } /** * @return $this */ public function hide(): self { $this->output->write("\x1b[?25l"); return $this; } /** * @return $this */ public function show(): self { $this->output->write("\x1b[?25h\x1b[?0c"); return $this; } /** * Clears all the output from the current line. * * @return $this */ public function clearLine(): self { $this->output->write("\x1b[2K"); return $this; } /** * Clears all the output from the current line after the current position. */ public function clearLineAfter(): self { $this->output->write("\x1b[K"); return $this; } /** * Clears all the output from the cursors' current position to the end of the screen. * * @return $this */ public function clearOutput(): self { $this->output->write("\x1b[0J"); return $this; } /** * Clears the entire screen. * * @return $this */ public function clearScreen(): self { $this->output->write("\x1b[2J"); return $this; } /** * Returns the current cursor position as x,y coordinates. */ public function getCurrentPosition(): array { static $isTtySupported; if (null === $isTtySupported && \function_exists('proc_open')) { $isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/dev/tty', 'w'], ['file', '/dev/tty', 'w']], $pipes); } if (!$isTtySupported) { return [1, 1]; } $sttyMode = shell_exec('stty -g'); shell_exec('stty -icanon -echo'); @fwrite($this->input, "\033[6n"); $code = trim(fread($this->input, 1024)); shell_exec(sprintf('stty %s', $sttyMode)); sscanf($code, "\033[%d;%dR", $row, $col); return [$col, $row]; } }