Tag: framebusting

框架巴斯特巴斯特…克星代码需要

假设您不希望其他网站在<iframe> “框架”您的网站: <iframe src="http://example.org"></iframe> 所以你在你所有的页面中插入反框架的JavaScript代码: /* break us out of any containing iframes */ if (top != self) { top.location.replace(self.location.href); } 优秀! 现在,你可以“自动”破解任何包含iframe的内容。 除了一个小问题。 事实certificate, 你的框架破解代码可以被破坏 , 如下所示 : <script type="text/javascript"> var prevent_bust = 0 window.onbeforeunload = function() { prevent_bust++ } setInterval(function() { if (prevent_bust > 0) { prevent_bust -= 2 window.top.location = 'http://example.org/page-which-responds-with-204' } […]