对于不存在的资源,是否可以返回 HTTP 401 而不是 404 以防止信息泄露?

发布于 2024-09-29 06:11:29 字数 967 浏览 0 评论 0原文

受到查看问题“当资源可用但由于权限而无法访问时的正确 HTTP 状态代码”时的想法的启发,我将使用相同的场景来说明我的假设问题。

想象一下我正在构建一个拼车网络服务。

假设以下内容

GET /api/persons/angela/location

检索用户“angela”的当前位置。只有安吉拉本人和可能会接她的司机应该能够知道她的位置,因此,如果请求未经过适当用户的身份验证,401 Unauthorized 响应被返回。

请求

GET /api/persons/john/location

还要考虑当没有名为 john 的用户在系统中注册时的 。没有 john 资源,更不用说 john 位置的资源了,因此这显然会返回 404 未找到。或者确实如此?

如果我不想透露 john 是否在系统中注册怎么办?

(也许用户名是从一小部分大学登录信息中提取的,并且校园里有一个非常激进的自行车团体即使您正在拼车,他们也可以向每个用户的 URL 发出请求,如果他们收到 401 而不是 404,则推断该用户是拼车者)

这有意义吗 ?对此请求返回 401 Unauthorized,即使资源不存在,并且没有可能在请求中提供一组凭据以使服务器返回 200?

Inspired by a thought while looking at the question "Correct HTTP status code when resource is available but not accessible because of permissions", I will use the same scenario to illustrate my hypothetical question.

Imagine I am building a a carpooling web service.

Suppose the following

GET /api/persons/angela/location

retrieves the current position of user "angela". Only angela herself and a possible driver that is going to pick her should be able to know her location, so if the request is not authenticated to an appropriate user, a 401 Unauthorized response is returned.

Also consider the request

GET /api/persons/john/location

when no user called john has registered with the system. There is no john resource let alone a resource for john's location, so this obviously returns a 404 Not Found. Or does it?

What if I don't want to reveal whether or not john is registered with the system?

(Perhaps the usernames are drawn from a small pool of university logins, and there is a very militant cycling group on campus that takes a very dim view of car usage, even if you are pooling? They could make requests to the URL for every user, and if they receive a 401 instead of 404, infer that the user is a car pooler)

Does it make sense to return a 401 Unauthorized for this request, even though the resource does not exist and there is no possible set of credentials that could be supplied in a request to have the server return a 200?

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

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

发布评论

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

评论(5

亚希 2024-10-06 06:11:29

实际上,W3C 建议 (RFC 2616 §10.4. 4 403 禁止)做相反的事情。如果有人尝试访问资源,但未经过正确身份验证,则返回 404,而不是 403(禁止)。这仍然解决了信息披露问题。

如果服务器不希望
这些信息可供
客户端,状态码404(不是
发现)可以用来代替。

因此,您永远不会返回 403(或 401)。不过,我觉得你的解决办法也是合理的。

编辑:我认为加布走在正确的道路上。您将不得不重新考虑部分设计,但为什么不呢:

  • 未找到 - 404
  • 用户特定权限不足 - 404
  • 一般权限不足(无人可以访问) - 403
  • 未登录 - 401

Actually, the W3C recommends (RFC 2616 §10.4.4 403 Forbidden) doing the opposite. If someone attempts to access a resource, but is not properly authenticated, return 404 then, rather than 403 (Forbidden). This still solves the information disclosure issue.

If the server does not wish to make
this information available to the
client, the status code 404 (Not
Found) can be used instead.

Thus, you would never return 403 (or 401). However, I think your solution is also reasonable.

EDIT: I think Gabe's on the right track. You would have to reconsider part of the design, but why not:

  • Not found - 404
  • User-specific insufficient permission - 404
  • General insufficient permission (no one can access) - 403
  • Not logged in - 401
一抹微笑 2024-10-06 06:11:29

如果用户名是敏感信息,则不要将它们直接放在 URI 中。如果您在表示中使用超媒体,那么您可以让授权的客户端应用程序轻松导航您的 api,而不会泄漏 URL 中的信息。

可破解的网址非常适合您希望每个人都能轻松访问的信息。然而,对于 RESTful 客户端来说,使用完全不透明的 URI 是没有问题的。

一旦消除了用户和 URI 之间的直接关联,就很难从 401 响应代码中推断出任何信息。

If usernames are sensitive information, then don't put them directly in the URI. If you use hypermedia within your representations then you can make it just as easy for an authorized client applications to navigate your api without leaking information in your URLs.

Hackable urls are great for information that you want everyone to be able to access easily. However, for a RESTful client, there is no problem using URIs that are completely opaque.

Once you have removed the direct correlation between the user and the URI, it becomes difficult to infer any information from a 401 response code.

贱人配狗天长地久 2024-10-06 06:11:29

在任何情况下都返回 401 Unauthorized,不允许用户查看特定页面,无论该页面是否存在。

来自 RFC 2616:“如果请求已包含授权凭据,则 401 响应表明这些凭据的授权已被拒绝”。

考虑使用单独的凭据列表对不同 URL 进行身份验证的 HTTP 服务器。显然,当请求 URL 时,服务器不应检查每个列表,因此,如果凭据不在该适用列表中,因为 HTTP 请求彼此完全独立,所以返回 401 Unauthorized 是有意义的 如果凭据对于该特定 URL 无效。

此外,403 Forbidden 的描述包括:“授权不会有帮助,请求不应重复。” 相反,如果用户选择使用正确的凭据登录,授权将会提供帮助。

Return 401 Unauthorized in any case in which the user is not allowed to see a particular page, whether it exists or not.

From RFC 2616: "If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials."

Consider HTTP servers that use separate lists of credentials for authentication to different URLs. Obviously, a server should not check every list when a URL is requested, so if the credentials are not in that one applicable list, because HTTP requests are completely independent of each other, it makes sense to return 401 Unauthorized if the credentials are not valid for that particular URL.

Furthermore, the description of 403 Forbidden includes: "Authorization will not help and the request SHOULD NOT be repeated." In contrast, if the user chooses to log in using the correct credentials, Authorization will help.

征﹌骨岁月お 2024-10-06 06:11:29

我认为最好的解决方案是,如果用户未经过身份验证而无法查看其中的任何页面,则为类中的每个(潜在)页面返回 403(禁止)。如果用户存在,则对于不存在的内容返回 404,对于存在的内容返回 200。

I think the best solution would be to return 403 (forbidden) for every (potential) page in a class, if the user is not authenticated to see any of them. If the user is, return 404 for stuff that's not there and 200 for stuff that is.

内心荒芜 2024-10-06 06:11:29

我认为如果请求是由非用户的客户端发出的,您想返回 401 Unauthorized 就可以了。但是,如果用户发出请求并通过身份验证,那么我认为 401 不是最佳解决方案。如果您认为返回 404 会危及某些用户的安全,那么您可能需要考虑返回 403 Forbidden 或 200 OK,但不要指定位置。如果我查询用户 bob 并获得响应,查询用户 sam 并获得错误响应,无论是 401、403、404 等,那么我可能会得出结论,这意味着用户 sam 不存在。

不指定位置的 200 OK 可能是最隐蔽的解决方案。

编辑:只是为了说明我的建议。如果客户端未获得授权,则返回 401。否则,始终返回 200 OK。

<user-location for="bob">
    <location>geo-coordinates here</location>
</user-location>

<user-location for="sam">
    <location/>
</user-location>

这并不能真正表明 sam 是否存在,或者可能只是当前没有他的任何位置数据。

I think it's fine if you want to return a 401 Unauthorized if the request is made by a client that is not a user. However, if a user makes the request and is authenticated, then I don't think that a 401 is the best solution. If you feel that returning a 404 would compromise the security of some users, then you may want to consider returning a 403 Forbidden or perhaps a 200 OK, but just don't specify a location. If I query for user bob and get a response and query for user sam and get an error response, be it 401, 403, 404, etc, then I can probably come to the conclusion that it means that user sam doesn't exist.

200 OK with no location specified may be the most disguised solution.

Edit: Just to illustrate what I am proposing. Return a 401 if the client isn't authorized. Otherwise, always return a 200 OK.

<user-location for="bob">
    <location>geo-coordinates here</location>
</user-location>

<user-location for="sam">
    <location/>
</user-location>

This doesn't really indicate if sam exists or not, or perhaps there just isn't any location data for him currently.

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