为什么当密码不正确时,使用 htaccess 进行 http 身份验证会变慢?

发布于 2024-12-05 23:12:38 字数 249 浏览 0 评论 0原文

我不知道为什么,但是当我输入错误的密码时,总是需要很长时间才能返回身份验证对话框。

但当我输入正确的密码时,速度总是很快。

htaccess:

AuthUserFile c:/senha1
AuthName "Bem vindo"
AuthType Basic
require valid-user

我使用 htpasswd 创建了这个“senha1”文件。

谢谢。

I don't know why but when i type a wrong password it always take alot of time to come back with authentication dialog.

but when i type a correct password it always go fast.

htaccess:

AuthUserFile c:/senha1
AuthName "Bem vindo"
AuthType Basic
require valid-user

I created this 'senha1' file with htpasswd.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め七分饶幸 2024-12-12 23:12:38

这是减缓暴力攻击的简单措施。

正确验证的请求会立即得到处理,而错误的验证尝试会延迟一秒左右——这不会打扰刚刚打错字的普通用户,但它确实会减慢想要快速尝试数千个密码的攻击者的速度。

That's a simple measure to slow down brute force attacks.

Correctly authenticated requests are handled instantly, while incorrect authentication attempts are delayed by a second or so -- this doesn't bother a regular user that just made a typo, but it sure does slow down attackers that want to rapidly try thousands of passwords.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文