| 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 | 7/27/11 (5350 days ago) |
| Due | |
| Updated | 1/18/16 (3714 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>