Created
March 16, 2022 16:23
-
-
Save rolltidehero/ca3ec682de72fc7075452412bccf1500 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function check_attempted_login( $user, $username, $password ) { | |
if ( get_transient( 'attempted_login' ) ) { | |
$datas = get_transient( 'attempted_login' ); | |
if ( $datas['tried'] >= 3 ) { | |
$until = get_option( '_transient_timeout_' . 'attempted_login' ); | |
$time = time_to_go( $until ); | |
return new WP_Error( 'too_many_tried', sprintf( __( '<strong>ERROR</strong>: You have reached authentication limit, you will be able to try again in %1$s.' ) , $time ) ); | |
} | |
} | |
return $user; | |
} | |
add_filter( 'authenticate', 'check_attempted_login', 30, 3 ); | |
function login_failed( $username ) { | |
if ( get_transient( 'attempted_login' ) ) { | |
$datas = get_transient( 'attempted_login' ); | |
$datas['tried']++; | |
if ( $datas['tried'] <= 3 ) | |
set_transient( 'attempted_login', $datas , 300 ); | |
} else { | |
$datas = array( | |
'tried' => 1 | |
); | |
set_transient( 'attempted_login', $datas , 300 ); | |
} | |
} | |
add_action( 'wp_login_failed', 'login_failed', 10, 1 ); | |
function time_to_go($timestamp) | |
{ | |
// converting the mysql timestamp to php time | |
$periods = array( | |
"second", | |
"minute", | |
"hour", | |
"day", | |
"week", | |
"month", | |
"year" | |
); | |
$lengths = array( | |
"60", | |
"60", | |
"24", | |
"7", | |
"4.35", | |
"12" | |
); | |
$current_timestamp = time(); | |
$difference = abs($current_timestamp - $timestamp); | |
for ($i = 0; $difference >= $lengths[$i] && $i < count($lengths) - 1; $i ++) { | |
$difference /= $lengths[$i]; | |
} | |
$difference = round($difference); | |
if (isset($difference)) { | |
if ($difference != 1) | |
$periods[$i] .= "s"; | |
$output = "$difference $periods[$i]"; | |
return $output; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment