检票口中的 JavaScript 注入

发布于 2024-07-29 18:56:45 字数 68 浏览 3 评论 0原文

我有一个使用 wicket 框架的 J2EE 项目。 我想知道如何防止 wicket 中的 javascript 注入?

I have J2EE project which uses wicket framework.
I want to know how can I prevent from javascript injection in wicket?

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

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

发布评论

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

评论(2

路弥 2024-08-05 18:56:45

尽管我认为您提出问题的方式不值得(没有细节,没有背景,没有示例问题陈述,暗示对注入的敏感性等),但我从优秀的 Wicket 运行

Wicket 默认情况下是安全的

你永远不需要担心
满脸痘痘的14岁青少年试图
破解您的网络应用程序。 为此,
他们将不得不劫持会话
然后猜测正确的页面
标识符和版本号,其中
与会话相关并且
相关组件路径。 你
必须是一个坚持不懈的黑客才能拉动
那个关闭。 你可以让你的检票口
应用程序更加安全
默认通过加密请求,
例如,
CryptedUrlWebRequestCodingStrategy。

Although I didn't think the way in which you formulated your question deserved it (no details, no background, no example problem statement, implied susceptability to injection, etc), I dug up some details from the Excellent Wicket in Action:

Wicket is secure by default

You never need to worry about
pimple-faced 14-year-olds trying to
hack your web application. To do so,
they would have to hijack the session
and then guess the right page
identifiers and version numbers, which
would be relative to the session and
the relevant component paths. You’d
have to be a persistent hacker to pull
that off. You can make your Wicket
application even more secure from the
default by encrypting requests with,
for instance,
CryptedUrlWebRequestCodingStrategy.

生生漫 2024-08-05 18:56:45

默认情况下,所有 Wicket 组件都会转义字符串(通过标签、文本字段等),这避免了与 javascript 注入相关的最常见问题。

不过,如果您出于某种原因禁用此行为 (component.setEscapeModelStrings(false)),或者创建自定义呈现的组件(如果您将标记直接写入输出),则应采取适当的措施。

All Wicket components escape strings by default (by Labels, TextFields, etc.), which avoids most common issues related to javascript injection.

You should take appropriate care, though, if you disable this behavior (component.setEscapeModelStrings(false)) for some reason, or create custom-rendered components (if you write the markup directly to the output).

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