Does Apache basic authentication defend brute force attacks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:57:45Z http://stackoverflow.com/feeds/question/806549 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/806549/does-apache-basic-authentication-defend-brute-force-attacks 1 Does Apache basic authentication defend brute force attacks? Philipp Lenssen 2009-04-30T11:59:49Z 2009-04-30T14:25:44Z <p>Will it shut down &amp; lock up after repeated false password tries, and/or will it add lags in-between retries? Or does this depend on which modules you or your provider install? Thanks!</p> http://stackoverflow.com/questions/806549/does-apache-basic-authentication-defend-brute-force-attacks/806630#806630 2 Answer by Francis for Does Apache basic authentication defend brute force attacks? Francis 2009-04-30T12:19:59Z 2009-04-30T12:19:59Z <p>default Apache installation does not do that.</p> <p>usually this is better done by your web application (eg, PHP/JSP) for account attack.</p> <p>for network attack, better not for web servers because it's hard to identify the source due to so many anonymous / transparent proxy / VPN / NAT stuff. once you've implement that, you'd usually get lots of "why I can't connect" complains...</p>