403Webshell
Server IP : 37.27.51.148  /  Your IP : 216.73.217.84
Web Server : nginx/1.14.1
System : Linux libra 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 20:24:04 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.3.31
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/html/wp-content/plugins/redirection/matches/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/redirection/matches/server.php
<?php

/**
 * @phpstan-type ServerMap array{
 *    server?: string,
 *    url_from?: string,
 *    url_notfrom?: string
 * }
 * @phpstan-type ServerResult array{
 *    server: string,
 *    url_from?: string,
 *    url_notfrom?: string
 * }
 * @phpstan-type ServerData array{
 *    server: string,
 *    url_from: string,
 *    url_notfrom: string
 * }
 *
 * Match the server URL. Used to match requests for another domain.
 *
 * @phpstan-extends Red_Match<ServerMap, ServerResult>
 */
class Server_Match extends Red_Match {
	use FromNotFrom_Match;

	/**
	 * Server URL.
	 *
	 * @var string
	 */
	public $server = '';

	/**
	 * @return string
	 */
	public function name() {
		return __( 'URL and server', 'redirection' );
	}

	/**
	 * @param ServerMap $details
	 * @param bool $no_target_url
	 * @return ServerResult
	 */
	public function save( array $details, $no_target_url = false ) {
		$data = array( 'server' => isset( $details['server'] ) ? $this->sanitize_server( $details['server'] ) : '' );

		$result = $this->save_data( $details, $no_target_url, $data );
		return $result; // @phpstan-ignore-line
	}

	/**
	 * @param string $server
	 * @return string
	 */
	private function sanitize_server( $server ) {
		if ( strpos( $server, 'http' ) === false ) {
			$server = ( is_ssl() ? 'https://' : 'http://' ) . $server;
		}

		$parts = wp_parse_url( $server );

		if ( isset( $parts['host'] ) && isset( $parts['scheme'] ) ) {
			return $parts['scheme'] . '://' . $parts['host'];
		}

		return '';
	}

	/**
	 * @param string $url
	 * @return boolean
	 */
	public function is_match( $url ) {
		$server = wp_parse_url( $this->server, PHP_URL_HOST );

		return $server === Redirection_Request::get_server_name();
	}

	/**
	 * @return ServerData
	 */
	public function get_data() {
		return array_merge(
			array(
				'server' => $this->server,
			),
			$this->get_from_data()
		);
	}

	/**
	 * Load the match data into this instance.
	 *
	 * @param string|ServerMap $values Match values, as read from the database (plain text, serialized PHP, or parsed array).
	 * @return void
	 */
	public function load( $values ) {
		$data = $this->load_data( $values );
		$this->server = isset( $data['server'] ) ? $data['server'] : ''; // @phpstan-ignore-line
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit