Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
libraries /
di /
[ HOME SHELL ]
Name
Size
Permission
Action
AliasItem.php
850
B
-rw-r--r--
Container.php
3.45
KB
-rw-r--r--
FactoryItem.php
469
B
-rw-r--r--
Item.php
383
B
-rw-r--r--
ReflectorItem.php
3.38
KB
-rw-r--r--
ServiceItem.php
609
B
-rw-r--r--
ValueItem.php
636
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ValueItem.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the PMA\libraries\di\ValueItem class * * @package PMA */ namespace PMA\libraries\di; /** * Value manager * * @package PMA\libraries\di */ class ValueItem implements Item { /** @var mixed */ protected $value; /** * Constructor * * @param mixed $value Value */ public function __construct($value) { $this->value = $value; } /** * Get the value * * @param array $params Parameters * @return mixed */ public function get($params = array()) { return $this->value; } }
Close