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.188.171.53
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
vendor /
psy /
psysh /
src /
Input /
Delete
Unzip
Name
Size
Permission
Date
Action
CodeArgument.php
1.49
KB
-rw-r--r--
2019-12-06 14:19
FilterOptions.php
3.8
KB
-rw-r--r--
2019-12-06 14:19
ShellInput.php
11.15
KB
-rw-r--r--
2019-12-06 14:19
SilentInput.php
901
B
-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\Input; /** * A simple class used internally by PsySH to represent silent input. * * Silent input is generally used for non-user-generated code, such as the * rewritten user code run by sudo command. Silent input isn't echoed before * evaluating, and it's not added to the readline history. */ class SilentInput { private $inputString; /** * Constructor. * * @param string $inputString */ public function __construct($inputString) { $this->inputString = $inputString; } /** * To. String. * * @return string */ public function __toString() { return $this->inputString; } }