Skip to content

Instantly share code, notes, and snippets.

@viller239
Last active May 6, 2016 02:22
Show Gist options
  • Save viller239/0370a9352396550b5e5b72b0eb494a62 to your computer and use it in GitHub Desktop.
Save viller239/0370a9352396550b5e5b72b0eb494a62 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<script>
setTimeout(function () {
alert(1);
Array.from(document.getElementsByTagName('script')).map(function (e) {
alert(e.src + '||' + e.outerHTML);
var d = document.createElement('div');
d.innerText = e.src + '||||' + e.outerHTML;
document.body.appendChild(d);
});
},10000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment