有人iframing我的網站,使用繞過iframe沙箱?
<iframe src="http://example.org" sandbox=""></iframe>
這樣,沙箱屬性防止我的網站使用iframe攔截器就可以了。它可以很容易地被肢解。
在我的網站框架解讀:
if (window.top !== window.self) window.top.location.replace(window.self.location.href);
有重定向到我的網站在與沙箱屬性使用時,它被一個iFrame使用編程方式?
除了其他選項,你可以考慮['X框-Options' HTTP響應頭(HTTPS: //developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options)。 – Palpatim
關於iframe和framekillers的更多信息[Wiki](https://en.wikipedia.org/wiki/Framekiller),[iFrame Attribute - html5&Security](https://www.tinfoilsecurity.com/blog/protect你的網站從嵌入式內容iframe安全) – yjs