403Webshell
Server IP : 172.67.158.161  /  Your IP : 13.59.87.38
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/recaptcha/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/dietcontrungnhanh.com/wp-content/plugins/ithemes-security-pro/pro/recaptcha/API.php
<?php

/**
 * Class ITSEC_Recaptcha_API
 */
class ITSEC_Recaptcha_API {

	/** @var ITSEC_Recaptcha */
	private static $recaptcha;

	/** @var array */
	private static $defaults = array(
		'margin' => array(
			'top'    => 10,
			'right'  => 0,
			'bottom' => 10,
			'left'   => 0,
		)
	);

	/**
	 * Initialize the API.
	 *
	 * @param ITSEC_Recaptcha $recaptcha
	 */
	public static function init( ITSEC_Recaptcha $recaptcha ) {
		self::$recaptcha = $recaptcha;

		/**
		 * Fires when the Recaptcha API is ready to be used.
		 */
		do_action( 'itsec_recaptcha_api_ready' );
	}

	/**
	 * Is the API available.
	 *
	 * @return bool
	 */
	public static function is_available() {
		return (bool) self::$recaptcha;
	}

	/**
	 * Display the Recaptcha field.
	 *
	 * @param array $args
	 *
	 * @return void
	 */
	public static function display( array $args ) {
		echo self::render( $args );
	}

	/**
	 * Render the Recaptcha field.
	 *
	 * This will enqueue a couple of JavaScript files which will be printed in the footer.
	 * If you are loading this over Ajax, you may need to manually call wp_print_scripts() to
	 * add the <script> tags to your response.
	 *
	 * @param array $args
	 *
	 * @return string
	 */
	public static function render( array $args = array() ) {

		if ( ! self::is_available() ) {
			return '';
		}

		$args = array_merge( self::$defaults, $args );

		if ( null === $args['margin'] ) {
			$args['margin'] = array(
				'top'    => 0,
				'right'  => 0,
				'bottom' => 0,
				'left'   => 0,
			);
		} else {
			$args['margin'] = array_merge( self::$defaults['margin'], $args['margin'] );
		}

		return self::$recaptcha->get_recaptcha( $args );
	}

	/**
	 * Validate the submitted Recaptcha.
	 *
	 * The results of this function are cached for the duration of the request.
	 *
	 * @param array $args
	 *
	 * @return true|WP_Error
	 */
	public static function validate( array $args = array() ) {
		if ( ! self::is_available() ) {
			return new WP_Error( 'itsec-recaptcha-not-configured', __( 'CAPTCHA not properly configured.', 'it-l10n-ithemes-security-pro' ) );
		}

		return self::$recaptcha->validate_captcha( $args );
	}

	/**
	 * Checks if the Login Form is protected.
	 *
	 * @return bool
	 */
	public static function is_login_protected(): bool {
		return ITSEC_Modules::get_setting( 'recaptcha', 'login' );
	}

	/**
	 * Checks if the Registration Form is protected.
	 *
	 * @return bool
	 */
	public static function is_registration_protected(): bool {
		return ITSEC_Modules::get_setting( 'recaptcha', 'register' );
	}

	/**
	 * Checks if the Password Reset form is protected.
	 *
	 * @return bool
	 */
	public static function is_password_reset_protected(): bool {
		return ITSEC_Modules::get_setting( 'recaptcha', 'reset_pass' );
	}

	/**
	 * Checks if the Comments Form is protected by CAPTCHA.
	 *
	 * @return bool
	 */
	public static function is_commenting_protected(): bool {
		return ITSEC_Modules::get_setting( 'recaptcha', 'comments' );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit