Skip to content

Instantly share code, notes, and snippets.

@gabrielizalo
Created July 8, 2017 00:22
Show Gist options
  • Save gabrielizalo/5ccca26fa8b1b3deb33a885a97554915 to your computer and use it in GitHub Desktop.
Save gabrielizalo/5ccca26fa8b1b3deb33a885a97554915 to your computer and use it in GitHub Desktop.
.Net - Anti ClickJacking
<style>
body{display:none;}
</style>
<script>
if(self==top){
document.getElementsByTagName("body")[0].style.display="block";
}else{
top.location=self.location;
}
</script>
// To prevent all framing of this content
response.addHeader("X-FRAME-OPTIONS", "DENY");
// To allow framing of this content only by this site
response.addHeader("X-FRAME-OPTIONS", "SAMEORIGIN");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment