How brute-forcer knows that the password is cracked for target username?
The log-in credentials are processed in wp_signon(), and if they are valid wp_set_auth_cookie() will send a cookie in the HTTP response body. The name of that cookie is set in a constant named SECURE_AUTH_COOKIE or AUTH_COOKIE. Both names start with wordpress_. But they don’t have to. You can define these constants in your wp-config.php and … Read more