我如何知道我的 AJAX 请求是否容易受到 XSS 攻击?

发布于 2024-11-14 11:45:34 字数 496 浏览 0 评论 0原文

一家安全公司意外审核了我开发的一个 Web 应用程序,并告诉我存在 XSS 漏洞。我真的不知道从哪里开始。

这是 AJAX:

new Form.Observer('filter', 0.5, function(element, value) 
{
    startLoad('proposals');; 
    new Ajax.Updater('proposals', 'http://acme.example.dev/stuff/filter', 
        {
            asynchronous:true, evalScripts:true, onComplete:function(request)
                {
                }, parameters:value + '&authenticity_token=' + encodeURIComponent('base64StringHere')
        })
});

A security firm surprise audited a web app I work on, and told me that there are XSS vulnerabilities. I don't really know where to begin.

This is the AJAX:

new Form.Observer('filter', 0.5, function(element, value) 
{
    startLoad('proposals');; 
    new Ajax.Updater('proposals', 'http://acme.example.dev/stuff/filter', 
        {
            asynchronous:true, evalScripts:true, onComplete:function(request)
                {
                }, parameters:value + '&authenticity_token=' + encodeURIComponent('base64StringHere')
        })
});

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

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

发布评论

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

评论(1

氛圍 2024-11-21 11:45:34

很难确定如何追踪该漏洞,因为不清楚您的页面显示的用户输入是什么。由于您使用的是 RoR,因此最好的起点可能是 XSS 部分RoR 安全指南

您还可以尝试运行 skipfish 等扫描仪。它将尝试自动检测 XSS 和其他安全漏洞,如果发现它们,它将为您提供一些详细信息和文档以帮助解决问题。

It's hard to say for sure how to track down the vulnerability, since it's not clear what user input your page is displaying. Since you're using RoR, the best place to start is probably the XSS section of the RoR security guide.

You could also try running a scanner like skipfish. It will try to automatically detect XSS and other security vulnerabilities, and if it finds them it will give you some details and documentation to help fix the problem.

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