125 lines
5.9 KiB
PHP
125 lines
5.9 KiB
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head profile="http://gmpg.org/xfn/11">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title><?php bloginfo('name'); ?></title>
|
|
<?php
|
|
global $aio_wp_security;
|
|
$display_form = true;
|
|
//Make this page look like the WP login page
|
|
wp_admin_css('login', true);
|
|
wp_admin_css('colors-fresh', true);
|
|
do_action('login_head');
|
|
$login_header_url = 'http://wordpress.org/';
|
|
$login_header_title = __('Powered by WordPress', 'all-in-one-wp-security-and-firewall');
|
|
?>
|
|
</head>
|
|
|
|
<body class="login login-action-login wp-core-ui aiowps-unlock-request">
|
|
<div id="login">
|
|
<h1><a href="<?php echo esc_url($login_header_url); ?>" title="<?php echo esc_attr($login_header_title); ?>"><?php bloginfo('name'); ?></a></h1>
|
|
|
|
<?php
|
|
if (isset($_POST['aiowps_unlock_request'])) {
|
|
if (!(isset($_POST['_wpnonce']) && wp_verify_nonce(sanitize_text_field(wp_unslash($_POST['_wpnonce'])), 'aios-unlock-nonce'))) {
|
|
$aio_wp_security->debug_logger->log_debug("Nonce check failed for unlock.", 4);
|
|
die("Nonce check failed for unlock.");
|
|
}
|
|
|
|
//This catches the $_POST from the "Request Unlock" button on the main WP login page
|
|
$unlock_encoded_info = isset($_POST['aiowps-unlock-string-info']) ? sanitize_text_field(wp_unslash($_POST['aiowps-unlock-string-info'])) : '';
|
|
$unlock_secret_string = $aio_wp_security->configs->get_value('aiowps_unlock_request_secret_key');
|
|
$unlock_temp_string = isset($_POST['aiowps-unlock-temp-string']) ? sanitize_text_field(wp_unslash($_POST['aiowps-unlock-temp-string'])) : '';
|
|
$submitted_encoded_string = base64_encode($unlock_temp_string.$unlock_secret_string);
|
|
if ($submitted_encoded_string !== $unlock_encoded_info) {
|
|
//Someone somehow landed on this page directly without clicking the unlock button on login form
|
|
echo '<div id="login_error">'.esc_html__('ERROR: Unable to process your request!', 'all-in-one-wp-security-and-firewall').'</div>';
|
|
die();
|
|
} elseif ($display_form) {
|
|
echo display_unlock_form(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- pcp check ingore this
|
|
}
|
|
} //End if block
|
|
|
|
if (isset($_POST['aiowps_wp_submit_unlock_request'])) {
|
|
if (!(isset($_POST['_wpnonce']) && wp_verify_nonce(sanitize_text_field(wp_unslash($_POST['_wpnonce'])), 'aios-unlock-request-nonce'))) {
|
|
$aio_wp_security->debug_logger->log_debug("Nonce check failed for unlock request.", 4);
|
|
die("Nonce check failed for unlock request.");
|
|
}
|
|
|
|
//This catches the $_POST when someone submits the form from our special unlock request page where visitor enters email address
|
|
$errors = '';
|
|
|
|
$email = isset($_POST['aiowps_unlock_request_email']) ? sanitize_email(wp_unslash($_POST['aiowps_unlock_request_email'])) : '';
|
|
if (empty($email) || !is_email($email)) {
|
|
$errors .= __('Please enter a valid email address', 'all-in-one-wp-security-and-firewall');
|
|
}
|
|
|
|
if ($errors) {
|
|
$display_form = true;
|
|
echo '<div id="login_error"><p>'.esc_html($errors).'</p></div>';
|
|
$sanitized_email = sanitize_email($email);
|
|
echo display_unlock_form($sanitized_email); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- pcp check ingore this
|
|
} else {
|
|
$locked_user = get_user_by('email', $email);
|
|
if (!$locked_user) {
|
|
//user with this email does not exist in the system
|
|
$errors = __('User account not found.', 'all-in-one-wp-security-and-firewall');
|
|
echo '<div id="login_error"><p>'.esc_html($errors).'</p></div>';
|
|
} else {
|
|
//Process unlock request
|
|
//Generate a special code and unlock url
|
|
$ip = AIOWPSecurity_Utility_IP::get_user_ip_address(); //Get the IP address of user
|
|
if (empty($ip)) {
|
|
$unlock_url = false;
|
|
} else {
|
|
$unlock_url = AIOWPSecurity_User_Login::generate_unlock_request_link($ip);
|
|
}
|
|
|
|
if (!$unlock_url) {
|
|
//No entry found in lockout table with this IP range
|
|
$error_msg = __('Error: No locked entry was found in the database with your IP address range.', 'all-in-one-wp-security-and-firewall');
|
|
echo '<div id="login_error"><p>'.esc_html($error_msg).'</p></div>';
|
|
} else {
|
|
//Send an email to the user
|
|
AIOWPSecurity_User_Login::send_unlock_request_email($email, $unlock_url);
|
|
echo '<p class="message">' . esc_html__('An email has been sent to you with the unlock instructions.', 'all-in-one-wp-security-and-firewall') . '</p>';
|
|
}
|
|
}
|
|
$display_form = false;
|
|
}
|
|
}
|
|
?>
|
|
</div> <!-- end #login -->
|
|
|
|
</body>
|
|
</html>
|
|
<?php
|
|
|
|
function display_unlock_form($email = '') {
|
|
ob_start();
|
|
// Display the unlock request form
|
|
?>
|
|
<div class="message">
|
|
<p><?php esc_html_e('You are here because you have been locked out due to too many incorrect login attempts.', 'all-in-one-wp-security-and-firewall');?></p>
|
|
<p><?php esc_html_e('Please enter your email address and you will receive an email with instructions on how to unlock yourself.', 'all-in-one-wp-security-and-firewall');?></p>
|
|
</div>
|
|
<form name="loginform" id="loginform" action="<?php echo esc_url(wp_login_url()); ?>" method="post">
|
|
<?php wp_nonce_field('aios-unlock-request-nonce'); ?>
|
|
<?php
|
|
if (isset($_POST['aiowps-woo-login'])) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- pcp check ingore this
|
|
echo '<input type="hidden" name="aiowps-woo-login" id="aiowps-woo-login" value="1" />';
|
|
}
|
|
?>
|
|
<p>
|
|
<label for="aiowps_unlock_request_email"><?php esc_html_e('Email Address', 'all-in-one-wp-security-and-firewall'); ?><br>
|
|
<input type="text" name="aiowps_unlock_request_email" id="aiowps_unlock_request_email" class="input" value="<?php echo esc_attr($email); ?>" size="20"></label>
|
|
</p>
|
|
<p class="submit">
|
|
<input type="submit" name="aiowps_wp_submit_unlock_request" id="aiowps_wp_submit_unlock_request" class="button button-primary button-large" value="<?php esc_attr_e('Send unlock request', 'all-in-one-wp-security-and-firewall'); ?>">
|
|
</p>
|
|
</form>
|
|
<?php
|
|
$output = ob_get_contents();
|
|
ob_end_clean();
|
|
return $output;
|
|
}
|