# Extended Clickjacking Detection

> Detects advanced clickjacking vulnerabilities including UI redressing via transparent overlays and framebusting bypasses.

- Skill: `zakirkun/extended-clickjacking-detection` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zakirkun/extended-clickjacking-detection`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zakirkun/extended-clickjacking-detection/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: zakirkun (https://skillmd.com/u/zakirkun)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zakirkun/extended-clickjacking-detection

---


# Extended Clickjacking Detection

## Overview
Beyond basic iframe embedding, clickjacking variants include:
- **Cursorjacking**: Replacing the browser cursor to mislead click position
- **Drag-and-drop jacking**: Tricking users into dragging content
- **Touchjacking**: Exploiting touch events on mobile
- **Framebusting bypass**: JavaScript framebusting that can be bypassed via `sandbox="allow-scripts"`

## Remediation
- Use CSP `frame-ancestors 'none'` — not bypassable by sandbox attribute
- Do not rely on JavaScript-only framebusting

