Summary | Clickjacking protection for Horde |
Queue | Horde Framework Packages |
Queue Version | Git master |
Type | Enhancement |
State | Accepted |
Priority | 1. Low |
Owners | |
Requester | chuck (at) horde (dot) org |
Created | 07/27/2011 (5040 days ago) |
Due | |
Updated | 01/18/2016 (3404 days ago) |
Assigned | |
Resolved | |
Milestone | |
Patch | No |
State ⇒ New
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Clickjacking protection for Horde
Queue ⇒ Horde Framework Packages
Milestone ⇒
Patch ⇒ No
2. frame-busting JS (below)
3. Content security policy
<style>
html { visibility: hidden; }
</style>
<!--a75c305b1c0a6022--><script>
if (self == top) {
document.documentElement.style.visibility = 'visible';
} else {
top.location = self.location;
}
</script>