Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwyden/281bb82243f8d0279f84 to your computer and use it in GitHub Desktop.
Save scottwyden/281bb82243f8d0279f84 to your computer and use it in GitHub Desktop.
Snippet example for an article at Pivot Point Security
<style id="antiClickjack">body{display:none !important;}</style>
<script type="text/javascript">
if (self === top) {
var antiClickjack = document.getElementById("antiClickjack");
antiClickjack.parentNode.removeChild(antiClickjack);
} else {
top.location = self.location;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment