403Webshell
Server IP : 216.106.184.20  /  Your IP : 216.73.216.234
Web Server : LiteSpeed
System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64
User : sekoaid1 ( 1891)
PHP Version : 7.3.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/sekoaid1/www/wp-content/plugins/pop-up-pop-up/analyst/src/Http/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/sekoaid1/www/wp-content/plugins/pop-up-pop-up/analyst/src/Http/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');
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit