保护 URL 安全的最佳方法是什么?

发布于 2024-10-28 19:30:42 字数 178 浏览 1 评论 0原文

我使用 spring-mvc 开发一个简单的网站。问题是保护 url 安全的最佳方法是什么? 例如,我有用户和注释。用户只能编辑/删除自己的笔记。 用户使用 localhost/note/edit/1 链接编辑注释,

但我不希望其他用户仅更改 id 参数并查看其他注释。

在这些情况下如何保护 url 的安全?

I develloping a simple website using spring-mvc. The question is what is the best way to secure an url?
For example, i have users and notes. Users can only edit/delete their owns notes.
A user edit a note with the link as localhost/note/edit/1

but i dont want other users to just change the id parameter and see others notes.

how dow you secure url in those cases?

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

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

发布评论

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

评论(2

东走西顾 2024-11-04 19:30:42

然后,您需要在编辑页面的开头检查登录者的用户 ID 是否与数据所有者的用户 ID 匹配。

Then you need to check at the beginning of your edit page that the userID of the logged in person matches that of the owner of the data.

谁对谁错谁最难过 2024-11-04 19:30:42

由于您使用的是 Spring 并且希望根据用户 ID 进行授权决策,因此您应该阅读 Spring 访问控制

要使用表达式来保护单个 URL,您首先需要将元素中的 use-expressions 属性设置为 true。然后,Spring Security 将期望元素的访问属性包含 Spring EL 表达式。这些表达式的计算结果应为布尔值,定义是否允许访问。

但还有很多其他方法来处理授权。不要养成假设用户 ID 是做出这些决定的最佳方式的习惯。阅读“从 ABAC 到 ZBAC” 了解替代方案。

Since you're using Spring and you want your authorization decisions based on user ID, you should read up on Spring Access Control.

To use expressions to secure individual URLs, you would first need to set the use-expressions attribute in the element to true. Spring Security will then expect the access attributes of the elements to contain Spring EL expressions. The expressions should evaluate to a boolean, defining whether access should be allowed or not.

But there are a lot of other ways to deal with authorization. Don't get in the habit of assuming that user ID is the best way to make these decisions. Read "From ABAC to ZBAC" to learn about alternatives.

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