SILENT KILLERPanel

Current Path: > > usr > src > litespeed-wp-plugin > > 6.5.3 > litespeed-cache > src


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/src/litespeed-wp-plugin//6.5.3/litespeed-cache/src

NameTypeSizeLast ModifiedActions
cdn Directory - -
data_structure Directory - -
activation.cls.php File 15351 bytes December 04 2024 22:49:28.
admin-display.cls.php File 34017 bytes December 04 2024 22:49:28.
admin-settings.cls.php File 9750 bytes December 04 2024 22:49:28.
admin.cls.php File 4548 bytes December 04 2024 22:49:28.
api.cls.php File 11342 bytes December 04 2024 22:49:28.
avatar.cls.php File 6208 bytes December 04 2024 22:49:28.
base.cls.php File 30959 bytes December 04 2024 22:49:28.
cdn-setup.cls.php File 10702 bytes December 04 2024 22:49:28.
cdn.cls.php File 13447 bytes December 04 2024 22:49:28.
cloud.cls.php File 43495 bytes December 04 2024 22:49:28.
conf.cls.php File 19025 bytes December 04 2024 22:49:28.
control.cls.php File 22268 bytes December 04 2024 22:49:28.
core.cls.php File 20531 bytes December 04 2024 22:49:28.
crawler-map.cls.php File 14335 bytes December 04 2024 22:49:28.
crawler.cls.php File 35522 bytes December 04 2024 22:49:28.
css.cls.php File 13418 bytes December 04 2024 22:49:28.
data.cls.php File 17824 bytes December 04 2024 22:49:28.
data.upgrade.func.php File 21885 bytes December 04 2024 22:49:28.
db-optm.cls.php File 9815 bytes December 04 2024 22:49:28.
debug2.cls.php File 13412 bytes December 04 2024 22:49:28.
doc.cls.php File 4851 bytes December 04 2024 22:49:28.
error.cls.php File 7071 bytes December 04 2024 22:49:28.
esi.cls.php File 27553 bytes December 04 2024 22:49:28.
file.cls.php File 10378 bytes December 04 2024 22:49:28.
gui.cls.php File 28108 bytes December 04 2024 22:49:28.
health.cls.php File 2962 bytes December 04 2024 22:49:28.
htaccess.cls.php File 24527 bytes December 04 2024 22:49:28.
img-optm.cls.php File 61689 bytes December 04 2024 22:49:28.
import.cls.php File 4250 bytes December 04 2024 22:49:28.
instance.cls.php File 154 bytes December 04 2024 22:49:28.
lang.cls.php File 15844 bytes December 04 2024 22:49:28.
localization.cls.php File 3464 bytes December 04 2024 22:49:28.
media.cls.php File 31824 bytes December 04 2024 22:49:28.
metabox.cls.php File 4306 bytes December 04 2024 22:49:28.
object-cache.cls.php File 16299 bytes December 04 2024 22:49:28.
object.lib.php File 34784 bytes December 04 2024 22:49:28.
optimize.cls.php File 37546 bytes December 04 2024 22:49:28.
optimizer.cls.php File 9232 bytes December 04 2024 22:49:28.
placeholder.cls.php File 14486 bytes December 04 2024 22:49:28.
preset.cls.php File 5560 bytes December 04 2024 22:49:28.
purge.cls.php File 30500 bytes December 04 2024 22:49:28.
report.cls.php File 5456 bytes December 04 2024 22:49:28.
rest.cls.php File 8060 bytes December 04 2024 22:49:28.
root.cls.php File 12898 bytes December 04 2024 22:49:28.
router.cls.php File 19536 bytes December 04 2024 22:49:28.
str.cls.php File 1401 bytes December 04 2024 22:49:28.
tag.cls.php File 8826 bytes December 04 2024 22:49:28.
task.cls.php File 5965 bytes December 04 2024 22:49:28.
tool.cls.php File 3370 bytes December 04 2024 22:49:28.
ucss.cls.php File 14735 bytes December 04 2024 22:49:28.
utility.cls.php File 21129 bytes December 04 2024 22:49:28.
vary.cls.php File 19631 bytes December 04 2024 22:49:28.
vpi.cls.php File 7586 bytes December 04 2024 22:49:28.

Reading File: //usr/src/litespeed-wp-plugin//6.5.3/litespeed-cache/src/rest.cls.php

<?php

/**
 * The REST related class.
 *
 * @since      	2.9.4
 */

namespace LiteSpeed;

defined('WPINC') || exit();

class REST extends Root
{
	const LOG_TAG = '☎️';
	private $_internal_rest_status = false;

	/**
	 * Confructor of ESI
	 *
	 * @since    2.9.4
	 */
	public function __construct()
	{
		// Hook to internal REST call
		add_filter('rest_request_before_callbacks', array($this, 'set_internal_rest_on'));
		add_filter('rest_request_after_callbacks', array($this, 'set_internal_rest_off'));

		add_action('rest_api_init', array($this, 'rest_api_init'));
	}

	/**
	 * Register REST hooks
	 *
	 * @since  3.0
	 * @access public
	 */
	public function rest_api_init()
	{
		// Activate or deactivate a specific crawler callback
		register_rest_route('litespeed/v1', '/toggle_crawler_state', array(
			'methods' => 'POST',
			'callback' => array($this, 'toggle_crawler_state'),
			'permission_callback' => function () {
				return current_user_can('manage_network_options') || current_user_can('manage_options');
			},
		));

		register_rest_route('litespeed/v1', '/tool/check_ip', array(
			'methods' => 'GET',
			'callback' => array($this, 'check_ip'),
			'permission_callback' => function () {
				return current_user_can('manage_network_options') || current_user_can('manage_options');
			},
		));

		// IP callback validate
		register_rest_route('litespeed/v1', '/ip_validate', array(
			'methods' => 'POST',
			'callback' => array($this, 'ip_validate'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		// Token callback validate
		register_rest_route('litespeed/v1', '/token', array(
			'methods' => 'POST',
			'callback' => array($this, 'token'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));
		register_rest_route('litespeed/v1', '/token', array(
			'methods' => 'GET',
			'callback' => array($this, 'token_get'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));
		register_rest_route('litespeed/v3', '/ping', array(
			'methods' => 'POST',
			'callback' => array($this, 'ping'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		// API key callback notification
		register_rest_route('litespeed/v1', '/apikey', array(
			'methods' => 'POST',
			'callback' => array($this, 'apikey'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		// CDN setup callback notification
		register_rest_route('litespeed/v1', '/cdn_status', array(
			'methods' => 'POST',
			'callback' => array($this, 'cdn_status'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		// Image optm notify_img
		// Need validation
		register_rest_route('litespeed/v1', '/notify_img', array(
			'methods' => 'POST',
			'callback' => array($this, 'notify_img'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		register_rest_route('litespeed/v1', '/notify_ucss', array(
			'methods' => 'POST',
			'callback' => array($this, 'notify_ucss'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		register_rest_route('litespeed/v1', '/notify_vpi', array(
			'methods' => 'POST',
			'callback' => array($this, 'notify_vpi'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		register_rest_route('litespeed/v1', '/err_domains', array(
			'methods' => 'POST',
			'callback' => array($this, 'err_domains'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));

		// Image optm check_img
		// Need validation
		register_rest_route('litespeed/v1', '/check_img', array(
			'methods' => 'POST',
			'callback' => array($this, 'check_img'),
			'permission_callback' => array($this, 'is_from_cloud'),
		));
	}

	/**
	 * Call to freeze or melt the crawler clicked
	 *
	 * @since  4.3
	 */
	public function toggle_crawler_state()
	{
		if (isset($_POST['crawler_id'])) {
			return $this->cls('Crawler')->toggle_activeness($_POST['crawler_id']) ? 1 : 0;
		}
	}

	/**
	 * Check if the request is from cloud nodes
	 *
	 * @since 4.2
	 * @since 4.4.7 As there is always token/api key validation, ip validation is redundant
	 */
	public function is_from_cloud()
	{
		// return true;
		return $this->cls('Cloud')->is_from_cloud();
	}

	/**
	 * Token get for
	 *
	 * @since  3.0.4
	 */
	public function token_get()
	{
		return Cloud::ok();
	}

	/**
	 * Ping pong
	 *
	 * @since  3.0.4
	 */
	public function ping()
	{
		return $this->cls('Cloud')->ping();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function check_ip()
	{
		return Tool::cls()->check_ip();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function ip_validate()
	{
		return $this->cls('Cloud')->ip_validate();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function token()
	{
		return $this->cls('Cloud')->token_validate();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function apikey()
	{
		return $this->cls('Cloud')->save_apikey();
	}

	/**
	 * Endpoint for QC to notify plugin of CDN setup status update.
	 *
	 * @since  3.0
	 */
	public function cdn_status()
	{
		return $this->cls('Cdn_Setup')->update_cdn_status();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function notify_img()
	{
		return Img_Optm::cls()->notify_img();
	}

	/**
	 * @since  5.2
	 */
	public function notify_ucss()
	{
		self::debug('notify_ucss');
		return UCSS::cls()->notify();
	}

	/**
	 * @since  4.7
	 */
	public function notify_vpi()
	{
		self::debug('notify_vpi');
		return VPI::cls()->notify();
	}

	/**
	 * @since  4.7
	 */
	public function err_domains()
	{
		self::debug('err_domains');
		return $this->cls('Cloud')->rest_err_domains();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function check_img()
	{
		try {
			$this->cls('Cloud')->validate_hash(4);
		} catch (\Exception $e) {
			return self::err($e->getMessage());
		}

		return Img_Optm::cls()->check_img();
	}

	/**
	 * Return error
	 *
	 * @since  5.7.0.1
	 */
	public static function err($code)
	{
		return array('_res' => 'err', '_msg' => $code);
	}

	/**
	 * Set internal REST tag to ON
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function set_internal_rest_on($not_used = null)
	{
		$this->_internal_rest_status = true;
		Debug2::debug2('[REST] ✅ Internal REST ON [filter] rest_request_before_callbacks');

		return $not_used;
	}

	/**
	 * Set internal REST tag to OFF
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function set_internal_rest_off($not_used = null)
	{
		$this->_internal_rest_status = false;
		Debug2::debug2('[REST] ❎ Internal REST OFF [filter] rest_request_after_callbacks');

		return $not_used;
	}

	/**
	 * Get internal REST tag
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function is_internal_rest()
	{
		return $this->_internal_rest_status;
	}

	/**
	 * Check if an URL or current page is REST req or not
	 *
	 * @since  2.9.3
	 * @since  2.9.4 Moved here from Utility, dropped static
	 * @access public
	 */
	public function is_rest($url = false)
	{
		// For WP 4.4.0- compatibility
		if (!function_exists('rest_get_url_prefix')) {
			return defined('REST_REQUEST') && REST_REQUEST;
		}

		$prefix = rest_get_url_prefix();

		// Case #1: After WP_REST_Request initialisation
		if (defined('REST_REQUEST') && REST_REQUEST) {
			return true;
		}

		// Case #2: Support "plain" permalink settings
		if (isset($_GET['rest_route']) && strpos(trim($_GET['rest_route'], '\\/'), $prefix, 0) === 0) {
			return true;
		}

		if (!$url) {
			return false;
		}

		// Case #3: URL Path begins with wp-json/ (REST prefix) Safe for subfolder installation
		$rest_url = wp_parse_url(site_url($prefix));
		$current_url = wp_parse_url($url);
		// Debug2::debug( '[Util] is_rest check [base] ', $rest_url );
		// Debug2::debug( '[Util] is_rest check [curr] ', $current_url );
		// Debug2::debug( '[Util] is_rest check [curr2] ', wp_parse_url( add_query_arg( array( ) ) ) );
		if ($current_url !== false && !empty($current_url['path']) && $rest_url !== false && !empty($rest_url['path'])) {
			return strpos($current_url['path'], $rest_url['path']) === 0;
		}

		return false;
	}
}

SILENT KILLER Tool