WordPress plugin that should protect wp-login.php form brute force attacks.
On wp-login.php there will be a JavaScript redirect if a specific GET parameter is missing. This paramter can be customized with the a_little_more_secure_get_param_name
filter.
add_filter('a_little_more_secure_get_param_name', function($name){
$name = "new_param_name";
return $name;
});
The waiting time for JavaScript redirect can be customized with the a_little_more_secure_redirect_wait_seconds
filter.
add_filter('a_little_more_secure_redirect_wait_seconds', function($seconds){
$seconds = 10;
return $seconds;
});