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.217.197
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 /
Notices /
[ HOME SHELL ]
Name
Size
Permission
Action
Notice.php
1.54
KB
-rw-r--r--
NoticeFactory.php
2.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Notice.php
<?php namespace Analyst\Notices; class Notice { /** * Id of notice * * @var string */ protected $id; /** * Body of notice * * @var string */ protected $body; /** * Account id * * @var string */ protected $accountId; /** * The plugin name * * @var string */ protected $pluginName; /** * New notice * * @param $id * @param $accountId * @param $body * @param null $pluginName * * @return Notice */ public static function make($id, $accountId, $body, $pluginName = null) { return new Notice($id, $accountId, $body, $pluginName); } public function __construct($id, $accountId, $body, $pluginName) { $this->setId($id); $this->setBody($body); $this->setAccountId($accountId); $this->setPluginName($pluginName); } /** * @return string */ public function getId() { return $this->id; } /** * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getBody() { return $this->body; } /** * @param string $body */ public function setBody($body) { $this->body = $body; } /** * @return string */ public function getAccountId() { return $this->accountId; } /** * @param string $accountId */ public function setAccountId($accountId) { $this->accountId = $accountId; } /** * @return string|null */ public function getPluginName() { return $this->pluginName; } /** * @param string $pluginName */ public function setPluginName($pluginName) { $this->pluginName = $pluginName; } }
Close