HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: /home/mirz4654/www/wp-content/themes/nexter/inc/panel-settings/nexter-google-captcha.php
<?php
/*
* Nexter Google Recaptcha
* @since 1.1.0
*/
global $reoption;
add_action( 'wp_ajax_nxtcptch_test_keys', 'nxtcptch_test_keys' );
add_action( 'wp_ajax_nexter_verify_recptch_key', 'nexter_verify_recptch_key' );
add_action( 'admin_footer', 'nxt_admin_footer' );
$option = get_option( 'nexter_extra_ext_options' );

$reoption = ( isset( $option['google-recaptcha'] ) && !empty($option['google-recaptcha']) && isset( $option['google-recaptcha']['values'] ) &&  !empty( $option['google-recaptcha']['values'] ) ) ? $option['google-recaptcha']['values'] : '' ;

if( ( isset( $option['google-recaptcha']['switch'] ) && !empty( $option['google-recaptcha']['switch'] ) ) && ( isset($reoption['siteKey']) && !empty($reoption['siteKey'] ) ) && ( isset($reoption['secretKey']) && !empty($reoption['secretKey'] ) ) && ( isset($reoption['version']) && !empty($reoption['version']) ) && ( ( isset($reoption['formType']) && !empty($reoption['formType']) ) ) && ( isset($reoption['keyverify']) && !empty($reoption['keyverify']) ) ){

    if( in_array( 'login_form' , $reoption['formType'] ) ){
        add_action( 'login_form', 'nxt_login_display' );
        add_action( 'authenticate', 'nxt_login_check', 21, 1 );
    }

    if( in_array( 'registration_form' , $reoption['formType'] ) ){
        if ( ! is_multisite() ) {
            add_action( 'register_form', 'nxt_login_display', 99 );
			add_action( 'registration_errors', 'nxt_register_check', 10, 1 );
        }else{
            add_action( 'signup_extra_fields', 'nxt_signup_display' );
            add_action( 'signup_blogform', 'nxt_signup_display' );
            add_filter( 'wpmu_validate_user_signup', 'nxt_signup_check', 10, 3 );
        }
    }

    if( in_array( 'reset_pwd_form' , $reoption['formType'] ) ){
        add_action( 'lostpassword_form', 'nxt_login_display' );
        add_action( 'allow_password_reset', 'nxt_lostpassword_check' );
    }

    if( in_array( 'comments_form' , $reoption['formType'] ) ){
        add_action( 'comment_form_after_fields', 'nxt_commentform_display' );
        add_action( 'comment_form_logged_in_after', 'nxt_commentform_display' );
        add_action( 'pre_comment_on_post', 'nxt_comment_check' );
    }
}
/**
 * display recaptcha 
 */

if ( ! function_exists( 'nxt_login_display' ) ) {
    function nxt_login_display(){
        global $reoption;
        $loginCss = '';

        if( isset($reoption['version']) && !empty($reoption['version']) && $reoption['version'] == 'v2' ){
            $loginCss .= '.login-action-login #loginform .nxtcaptch,.login-action-lostpassword #lostpasswordform .nxtcaptch,.login-action-register #registerform .nxtcaptch { margin-bottom: 10px; } #login_error,.message { width: 322px !important; } .login-action-login #loginform,.login-action-lostpassword #lostpasswordform,.login-action-register #registerform { width: 302px !important;}';

            echo '<style type="text/css" media="screen">'.esc_html($loginCss).'</style>';
        }
        
        echo nxt_recaptch_render($reoption);
        
        return true;
    }
}

/**
 * Get recaptcha api url
 */

if ( ! function_exists( 'nxt_get_api_url' ) ) {
    function nxt_get_api_url($reData){

        switch ( true ) {
            case ( isset( $reData['version'] ) && in_array( $reData['version'], array( 'v2', 'invisible' ) )) :
                $api_url ='https://www.google.com/recaptcha/api.js?onload=nxtrecptch_onload_callback&render=explicit';
                break;
            case ( isset( $reData['version'] ) && 'v3' == $reData['version']) :
                $api_url = sprintf( 'https://www.google.com/recaptcha/api.js?render=%s', $reData['siteKey'] );
                break;
            default :
                $api_url = '';
        }
        return $api_url;
    }
}

/**
 * display recaptcha 
 */

if ( ! function_exists( 'nxt_recaptch_render' ) ) {
    function nxt_recaptch_render($reData){
        $output = '';
        global $reoption;
        $api_url = nxt_get_api_url( $reoption );

        //  Google Recaptcha Html
        $id = mt_rand();
        $output .= '<div class="nxtcaptch nexter-recaptcha-'.esc_attr($reData['version']).'" data-id="nexter-recaptcha-' . esc_attr($id) . '" >';
            if ( isset( $reData['version'] ) && in_array( $reData['version'], array( 'v2', 'invisible' ) ) ) {
                
                $output .= '<div id="nexter-recaptcha-' . esc_attr($id) . '" class="nexter-recaptcha"></div>';
                $output .= '<noscript>
                    <div style="width: 302px;">
                        <div style="width: 302px; height: 422px; position: relative;">
                            <div style="width: 302px; height: 422px; position: absolute;">
                                <iframe src="https://www.google.com/recaptcha/api/fallback?k=' . esc_attr($reData['siteKey']) . '" frameborder="0" scrolling="no" style="width: 302px; height:422px; border-style: none;"></iframe>
                            </div>
                        </div>
                        <div style="border-style: none; bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px; background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px; height: 60px; width: 300px;">
                            <textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;"></textarea>
                        </div>
                    </div>
                </noscript>';
                
            } elseif ( isset( $reData['version'] ) &&  'v3' == $reData['version'] ) {
                $output .= '<input type="hidden" id="g-recaptcha-response" name="g-recaptcha-response" />';
            }

            if( isset( $reData['version'] ) && in_array( $reData['version'], array( 'v3', 'invisible' ) ) && isset($reoption['invisi']) && !empty($reoption['invisi']) ){
                $output .= sprintf('%s <a href="'.esc_url('https://policies.google.com/privacy').'" target="_blank" rel="noopener noreferrer" >%s</a> and <a href="'.esc_url('https://policies.google.com/terms').'" target="_blank" rel="noopener noreferrer" >%s</a>%s' , __( 'This site is protected by reCAPTCHA and the Google ', 'nexter' ),  __( 'Privacy Policy', 'nexter' ), __( 'Terms of Service', 'nexter' ), __( ' apply.', 'nexter' ));
            }
        $output .= '</div>';

        /* register reCAPTCHA script */
        if ( ! wp_script_is( 'nexter_recaptcha_api', 'registered' ) ) {

            if ( isset(  $reData['version'] ) && 'v3' ==  $reData['version'] ) {
                wp_register_script( 'nexter_recaptcha_api', $api_url, false, null, false );
            } else {
                wp_register_script( 'nexter_recaptcha_api', $api_url, NXT_VERSION, true );
            }
            add_action( 'wp_footer', 'nxtcptch_add_scripts' );
            if ( ( in_array( 'login_form' , $reoption['formType']) ) || ( in_array( 'registration_form' , $reoption['formType']) ) || ( in_array( 'reset_pwd_form' , $reoption['formType']) ) ) {
                add_action( 'login_footer', 'nxtcptch_add_scripts' );
            }
        }

        return $output;
    }
}

/**
 * Add recaptch scripts
 */

if ( ! function_exists( 'nxtcptch_add_scripts' ) ) {
    function nxtcptch_add_scripts(){
        global $reoption;
        nxt_remove_scripts();
        $options = array(
            'version'	=> ( isset( $reoption['version']) && !empty( $reoption['version']) ) ? $reoption['version'] : '',
            'sitekey'	=> ( isset( $reoption['siteKey']) && !empty( $reoption['siteKey']) ) ?  $reoption['siteKey'] : '' ,
            'theme' => ( isset( $reoption['recapTheme']) && !empty( $reoption['recapTheme']) ) ?  $reoption['recapTheme'] : 'light' ,
        );

        wp_enqueue_script( 'nxtcptch_script', NXT_JS_URI . 'main/nexter-recaptcha.min.js', array( 'jquery','nexter_recaptcha_api'), NXT_VERSION  , true );

        wp_localize_script( 'nxtcptch_script', 'nxtcptch', array(
            'options' => $options,
            'vars' => array(
                'visibility'	=> ( 'login_footer' == current_filter() )
            )
        ) );

        if( isset($reoption['invisi']) && !empty($reoption['invisi']) ){
            echo '<style>.grecaptcha-badge { visibility: hidden;} </style> ';
        }
    }
}

/**
 * Check for woocommerce plugin
 */

if ( ! function_exists( 'nxt_is_woocommerce_page' ) ) {
    function nxt_is_woocommerce_page(){
        $traces = debug_backtrace();

		foreach( $traces as $trace ) {
			if ( isset( $trace['file'] ) && false !== strpos( $trace['file'], 'woocommerce' ) ) {
				return true;
			}
		}
		return false;
    }
}

/** 
 * Check google recaptcha in login form
 */
if ( ! function_exists( 'nxt_login_check' ) ) {
    function nxt_login_check($user){
        global $reoption;

		if ( nxt_is_woocommerce_page() ){
			return $user;
        }
		if ( is_wp_error( $user ) && isset( $user->errors["empty_username"] ) && isset( $user->errors["empty_password"] ) ){
			return $user;
        }
		/* Skip check if connecting to XMLRPC */
		if ( defined( 'XMLRPC_REQUEST' ) ){
			return $user;
        }

        $nxrecap_check = nxt_recaptch_check( 'login_form' );
        
        if ( ! $nxrecap_check['response'] ) {
			if ( $nxrecap_check['reason'] == 'VERIFICATION_FAILED' ) {
				wp_clear_auth_cookie();
			}
            $error_code = ( is_wp_error( $user ) ) ? $user->get_error_code() : 'incorrect_password';
			$errors = new WP_Error( $error_code, __( 'Authentication failed.', 'nexter' ) );
            $nxtcptch_errors = $nxrecap_check['errors']->errors;
			foreach ( $nxtcptch_errors as $code => $msg ) {
				foreach ( $msg as $message ) {
					$errors->add( $code, $message );
				}
			}
			$nxrecap_check['errors'] = $errors;
			return $nxrecap_check['errors'];
        }
        return $user;
    }
}

/**
 * Check google captcha
 */
if ( ! function_exists( 'nxt_recaptch_check' ) ) {
    function nxt_recaptch_check($form = 'general', $debug = false){
        global $reoption;

        if( !isset($reoption['siteKey']) && empty($reoption['siteKey']) && !isset($reoption['secretKey']) && empty($reoption['secretKey']) ){
            $errors = new WP_Error;
			$errors->add( 'nxtcptch_error', nxttch_get_error_message() );
			return array(
				'response'	=> false,
				'reason'	=> 'ERROR_NO_KEYS',
				'errors'	=> $errors
			);
        }

        if ( isset( $reoption['version'] ) && in_array( $reoption['version'], array( 'v2', 'invisible', 'v3' ) ) ) {
			if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
				$result = array(
					'response' => false,
					'reason' => 'RECAPTCHA_NO_RESPONSE'
				);
			} elseif ( empty( $_POST["g-recaptcha-response"] ) ) {
				$result = array(
					'response' => false,
					'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
				);
			} else {
                $server_ip = ( isset( $_SERVER['REMOTE_ADDR'] ) ) ? sanitize_text_field( $_SERVER['REMOTE_ADDR'] ) : '';
                $sereip = filter_var( $server_ip , FILTER_VALIDATE_IP );
				$response = nxt_get_recpt_respo( $reoption['secretKey'] , $sereip );
				if ( empty( $response ) ) {
					$result = array(
							'response' => false,
							'reason' => $debug ? __( 'Response is empty', 'nexter' ) : 'VERIFICATION_FAILED'
						);
				} elseif ( isset( $response['success'] ) && !! $response['success'] ) {
                        $result = array(
                            'response' => true,
                            'reason' => ''
                        );
				} else {
					if ( ! $debug && ( in_array( 'missing-input-secret', $response['error-codes'] ) || in_array('invalid-input-secret', $response['error-codes'] )) ) {
						$result = array(
							'response' => false,
							'reason' => 'ERROR_WRONG_SECRET'
						);
					} else {
						$result = array(
							'response' => false,
							'reason' => $debug ? $response['error-codes'] : 'VERIFICATION_FAILED'
						);
					}
				}
			}
        }

        if ( ! $result['response'] ) {
			$result['errors'] = new WP_Error;
			if ( ! $debug ) {
				$result['errors']->add( 'nxtcptch_error', nxttch_get_error_message( $result['reason'] ) );
			}
		}

        return $result;
    }
}

/** 
 * Get Error Message
 */ 

if ( ! function_exists( 'nxttch_get_error_message' ) ) {
    function nxttch_get_error_message( $message_code = 'incorrect', $display = false ){
        $errormsg = '';

		$errormsg = array(
			'missing-input-secret' 		=> __( 'Secret Key is missing.', 'nexter' ),
			'invalid-input-secret' 		=> sprintf( '<strong>%s</strong> <a target="_blank" href="https://www.google.com/recaptcha/admin#list" rel="noopener noreferrer" >%s</a> %s.', __( 'Secret Key is invalid.', 'nexter' ),__( 'Check your domain configurations', 'nexter' ),__( 'and enter it again', 'nexter' )
			),
			'incorrect'					=> __( 'You have entered an incorrect reCAPTCHA value.', 'nexter' ),
			'multiple_blocks'			=> __( 'More than one reCAPTCHA has been found in the current form. Please remove all unnecessary reCAPTCHA fields to make it work properly.', 'nexter' ),
            'incorrect-captcha-sol'		=> __( 'User response is invalid', 'nexter' ),
             'RECAPTCHA_SMALL_SCORE'     => __( 'reCaptcha v3 test failed', 'nexter' ),
			'RECAPTCHA_EMPTY_RESPONSE'	=> __( 'User response is missing.', 'nexter' ),
            'ERROR_WRONG_SECRET'		=> __( 'You have entered incorrect  secret key.', 'nexter' ),
		);

		if ( isset( $errormsg[ $message_code ] ) ) {
			$errormsg = $errormsg[ $message_code ];
		} else {
			$errormsg = $errormsg['incorrect'];
		}

		if ( $display ) {
			echo wp_kses_post($errormsg);
		}

		return $errormsg;
    }
}

/**
 * get response from recaptcha api
 */

if ( ! function_exists( 'nxt_get_recpt_respo' ) ) {
	function nxt_get_recpt_respo( $key, $serip ) {
		$args = array(
			'body' => array(
				'secret'   => $key,
				'response' => isset( $_POST["g-recaptcha-response"] ) ? stripslashes( sanitize_text_field( $_POST["g-recaptcha-response"] ) ) : '',
				'remoteip' => $serip,
			),
			'sslverify' => false
		);
		$getres = wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', $args );
		return json_decode( wp_remote_retrieve_body( $getres ), true );
	}
}

/**
 * Remove dublicate scripts
 */

if ( ! function_exists( 'nxt_remove_scripts' ) ) {
	function nxt_remove_scripts() {
		global $wp_scripts;

		if ( ! is_object( $wp_scripts ) || empty( $wp_scripts ) ) {
			return false;
		}
        
		foreach ( $wp_scripts->registered as $script_name => $args ) {
			if ( preg_match( "|google\.com/recaptcha/api\.js|", $args->src ) && 'nexter_recaptcha_api' != $script_name ) {
				/* remove a previously enqueued script */
				wp_dequeue_script( $script_name );
			}
		}
	}
}

/** 
 * Check google captcha in Register form
 */ 

if( ! function_exists( 'nxt_register_check' ) ){
    
    function nxt_register_check( $allow ){
        if ( defined( 'XMLRPC_REQUEST' ) ){
			return $allow;
        }
        
        $nxrecap_check = nxt_recaptch_check( 'registration_form' );
        if ( empty($nxrecap_check['response']) ) {
            
			return $nxrecap_check['errors'];
		}
		$_POST['g-recaptcha-response-check'] = true;
        
		return $allow;
    }
}

/** 
 * Display Signup Recaptch
 */ 

if( ! function_exists( 'nxt_signup_display' )  ){
    function nxt_signup_display($errors){
        global $reoption;
        if ( $error_message = $errors->get_error_message( 'nxtcptch_error' ) ) {
			printf( '<p class="error nxtcptch_error">%s</p>', wp_kses_post($error_message->get_error_message( 'nxtcptch_error' )) );
		}
		echo nxt_recaptch_render($reoption);
    }
}

/**
 * check signup form
 */

if( ! function_exists('nxt_signup_check') ){    
    function nxt_signup_check($result){
        global $current_user;
		if ( is_admin() && ! defined( 'DOING_AJAX' ) && ! empty( $current_user->data->ID ) ){
			return $result;
        }

		$nxtcptch_check = nxt_recaptch_check( 'registration_form' );
        
		if ( empty($nxrecap_check['response']) && isset($nxtcptch_check['errors']) ) {
			$result['errors']->add( 'nxtcptch_error' , $nxtcptch_check['errors']  );
			return $result;
		}
		return $result;
    }
}

/**
 * check lost password form
 */

if( ! function_exists( 'nxt_lostpassword_check' ) ){
    function nxt_lostpassword_check($allow){
        if ( ( isset( $_POST['g-recaptcha-response-check'] ) && true === $_POST['g-recaptcha-response-check'] ) ){
            return $allow;
        }
        $nxtcptch_check = nxt_recaptch_check( 'reset_pwd_form' );
        if ( empty ($nxtcptch_check['response']) ) {
            return $nxtcptch_check['errors'];
        }
        return $allow;
    }
}

/**
 * display recaptch in comment form
 */

if( ! function_exists( 'nxt_commentform_display' ) ){
    function nxt_commentform_display(){
        global $reoption;
        $commCss = '';

        $commCss .= '#commentform .nxtcaptch { margin: 0 0 10px;}';
        if( isset($reoption['invisi']) && !empty($reoption['invisi']) ){
            $commCss .= '.grecaptcha-badge { visibility: hidden;}';
        }
        if(!empty($commCss)){
            echo '<style> '.esc_html($commCss).' </style>';
        }
        echo nxt_recaptch_render($reoption);
		return true;
    }
}

/**
 * check recaptch for comment form
 */

if( ! function_exists( 'nxt_comment_check' ) ){
    function nxt_comment_check() {
        $nxtcptch_check = nxt_recaptch_check( 'comments_form' );
        if ( empty($nxtcptch_check['response']) ) {
            $message = nxttch_get_error_message($nxtcptch_check['reason']) . "<br />";
            $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s&nbsp;%s', __( 'Error', 'nexter' ), $message, __( 'Click the BACK button on your browser and try again.', 'nexter' )
            );
            wp_die( wp_kses_post($error_message) );
        }
    }
}

if( ! function_exists('nxt_admin_footer') ){
    function nxt_admin_footer(){
        global $reoption;
        if ( isset( $_REQUEST['page'] ) && 'nexter_extra_options' == $_REQUEST['page'] ) {
            $option = get_option( 'nexter_extra_ext_options' );

            if( isset( $option['google-recaptcha']['switch'] ) && !empty( $option['google-recaptcha']['switch'] ) ){
                $api_url = nxt_get_api_url( $reoption );
                if ( ! wp_script_is( 'nexter_recaptcha_api', 'registered' ) ) {
                    if ( isset(  $reoption['version'] ) && 'v3' ==  $reoption['version'] ) {
                        wp_register_script( 'nexter_recaptcha_api', $api_url, false, null, false );
                    } else {
                        wp_register_script( 'nexter_recaptcha_api', $api_url, NXT_VERSION, true );
                    }
                    add_action( 'wp_footer', 'nxtcptch_add_scripts' );
                }
                nxtcptch_add_scripts();
            }
        }
    }
}

if( ! function_exists('nxtcptch_test_keys') ){
    function nxtcptch_test_keys(){
        $content = '';
        check_ajax_referer( 'nexter_admin_nonce', 'nexter_nonce' );

        $user = wp_get_current_user();
		$allowed_roles = array( 'administrator' );
		if ( !empty($user) && isset($user->roles) && array_intersect( $allowed_roles, $user->roles ) ) {
                
            global $reoption;

            $content .= '<div>';
                $content .= '<span>';
                    if( isset( $reoption['version'] ) && !empty($reoption['version'] ) && ( $reoption['version'] == 'invisible' || $reoption['version'] == 'v3' ) ){
                        $content .=  sprintf( '%s', __( 'Please submit "Test verification" ', 'nexter' ) );
                    }else{
                        $content .=  sprintf( '%s', __( 'Please complete the captcha and submit "Test verification"', 'nexter' ) );
                    }
                $content .= '</span>';
                $content .= '<button id="nxt_verfiy_btn" class="nxt-test-recaptch">';
                    $content .= '<svg width="11" height="14" viewBox="0 0 11 14" stroke="white" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.25 6.56697C10.5833 6.75942 10.5833 7.24054 10.25 7.43299L1.25 12.6291C0.916666 12.8216 0.499999 12.581 0.499999 12.1961L0.5 1.80383C0.5 1.41893 0.916666 1.17836 1.25 1.37082L10.25 6.56697Z" /></svg>';
                    $content .= esc_html__( 'Test reCAPTCHA', 'nexter' );
                $content .=  '</button>';
            $content .= '</div>';
            $content .= nxt_recaptch_render($reoption);
            
            $content .= '<input type="hidden" name="nxt_verify_nonce" value="'.wp_create_nonce( 'nexter_recaptch_verify').'" />';
        
            wp_send_json_success(
                array(
                    'content'	=> $content,
                )
            );
        }else{
			wp_send_json_error(
				array(
					'success' => false,
					'message' => __( 'Only Admin can run this.', 'nexter' ),
				)
			);
		}
    }
}

/**
 * Verify Google recaptch key
 * @since 1.1.0
 */
if( ! function_exists('nexter_verify_recptch_key') ){
    function nexter_verify_recptch_key() {
        $nonce = ( isset( $_POST ) && isset( $_POST['nexter_nonce'] ) ) ? sanitize_text_field( wp_unslash( $_POST['nexter_nonce'] )) : '';
        $cnt = '';

        $user = wp_get_current_user();
		$allowed_roles = array( 'administrator' );
		if ( !empty($user) && isset($user->roles) && array_intersect( $allowed_roles, $user->roles ) ) {
            if( wp_verify_nonce( $nonce , 'nexter_recaptch_verify' ) ) {
               
                $nxtcptch_check = nxt_recaptch_check( 'nxtcptch_test' , false );
                
                if ( empty($nxtcptch_check['response']) ) {
                    if ( isset( $nxtcptch_check['reason'] ) ) {
                        $option = get_option( 'nexter_extra_ext_options' );
                        if(isset($option['google-recaptcha']) && isset($option['google-recaptcha']['values'])){
                            $option['google-recaptcha']['values']['keyverify'] = false;
                            update_option( 'nexter_extra_ext_options' ,$option );
                        }
                        foreach ( ( array ) $nxtcptch_check['reason'] as $error ) { 
                            $cnt .= '<div class="error nxt-verify-result"><p> '.nxttch_get_error_message( $error, false ).'</p></div>';
                        }
                    }
                } else {
                    $option = get_option( 'nexter_extra_ext_options' );
                    
                    if(isset($option['google-recaptcha']) && isset($option['google-recaptcha']['values'])){
                        $option['google-recaptcha']['values']['keyverify'] = true;
                        update_option( 'nexter_extra_ext_options' ,$option );
                    }
                    $cnt .= '<div class="updated nxt-verify-resul"><p>'.esc_html__('The verification is successfully completed.','nexter' ).'</p></div>';
                }
            }
        }else{
            $cnt .= '<div class="error nxt-verify-result"><p>'.esc_html__('Only Admin can run this.','nexter' ).'</p></div>';
        }
        wp_send_json_success(
            array(
                'content'	=> $cnt,
            )
        );
    }
}