Does Apache basic authentication defend brute force attacks? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:57:45Zhttp://stackoverflow.com/feeds/question/806549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/806549/does-apache-basic-authentication-defend-brute-force-attacks1Does Apache basic authentication defend brute force attacks?Philipp Lenssen2009-04-30T11:59:49Z2009-04-30T14:25:44Z
<p>Will it shut down & 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#8066302Answer by Francis for Does Apache basic authentication defend brute force attacks?Francis2009-04-30T12:19:59Z2009-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>