帧Buster…巴斯特码
<iframe>:
<iframe src="http://example.org"></iframe>
/* break us out of any containing iframes */if (top != self) { top.location.replace(self.location.href); }<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'
}
}, 1) </script>window.onbeforeunload
setInterval()
204
onbeforeunload
onbeforeunload = null
alert()
setInterval()