CSRF Java 库

发布于 2024-11-25 07:36:58 字数 169 浏览 1 评论 0原文

我想知道有哪些库可以保护 J2EE 应用程序免受 CSRF 攻击。

我使用过 OWASP 的 CSRF Guard。我尝试搜索,但找不到任何其他生产质量的库。还有其他人吗?

顺便说一句,我正在构建的应用程序正在使用 Grails 框架,因此如果有 Grail 的 CSRF 插件,我也想知道。

I was wondering what libraries are out there regarding protecting J2EE applications against CSRF attacks.

I have used CSRF Guard by OWASP. I tried searching but couldn't find any other production quality libraries. Are there any others?

On a side note, the application I'm building is using the Grails framework so if there are Grail's CSRF plugins, I would like to know as well.

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

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

发布评论

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

评论(1

筱果果 2024-12-02 07:36:58

CSRF 新手,但我正在使用 Grails,对于任何表单,我都使用此方法来防止重复的表单帖子,但它也能防止 CSRF 攻击吗?

<g:form method="post" useToken="true">

进而

withForm {
   // good request
}.invalidToken {
   // bad request
}

New into CSRF but I'm using Grails and for any forms I'm using this method to prevent duplicate form posts, but it would prevent CSRF attacks as well?

<g:form method="post" useToken="true">

And then

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