JSP 应用程序的类型 0(基于 DOM)XSS 预防
与依赖动态网页的标准 XSS 攻击不同,基于 DOM 的 XSS 攻击不需要向服务器发送任何恶意代码,因此也可以使用静态 HTML 页面。我的谦虚问题是,开发人员是否可以安全地对页面进行编码,以防止此类攻击。使用什么技术?我的信念是,无论页面是静态还是动态,请求仍然必须从客户端传递到服务器,因此这让我思考并想知道服务器端检查是否仍然可以检测到这种攻击?
Unlike the standard XSS attacks, which rely on dynamic web pages, a DOM-based XSS attack does not require sending any malicious code to the server and thus can also use static HTML pages. My humble question is whether a developer can securely code a page in such a way that such attacks can be prevented. What is/are the techniques to use? My belief is that the request must still pass from the client to the server irrespective of whether the page is static or dynamic and thus this makes me think and wonder whether server-side checks are still possible to detect such an attack?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了让恶意代码进入您的页面,您必须将未转义的、攻击者提供的文本放入页面上。无论您是使用 PHP 在服务器端执行此操作,还是使用 Javascript 在客户端执行此操作,都没有关系 - 在将收到的任何输入转换为输出之前,您必须对其进行转义。
对 javascript 使用与对服务器端代码相同的规则。
In order for malicious code to get on your page, you have to be putting unescaped, attacker-provided text onto the page. It does not matter if you are doing it server-side with PHP, or client-side with Javascript -- You must escape any input you receive before you turn it into output.
Use the same discipline with your javascript that you do with your server side code.