A Professional Clickjacking Vulnerability Detection Tool
JackScanner is a robust Python-based tool designed for ethical hackers, penetration testers, and web security professionals to identify and mitigate clickjacking vulnerabilities in web applications. Equipped with subdomain enumeration, live filtering, and detailed vulnerability analysis, JackScanner makes securing your digital assets simpler and more effective.
- Subdomain Enumeration: Automatically identifies all subdomains of the target domain using
subfinder. - Live Subdomain Filtering: Filters live, accessible subdomains to focus on actionable targets.
- Clickjacking Detection: Detects vulnerabilities by inspecting HTTP headers (
X-Frame-Options,Content-Security-Policy). - Interactive Experience: Stylish UI with progress bars and color-coded outputs for better usability.
- Summary Reports:
- Lists all live subdomains.
- Highlights subdomains vulnerable to clickjacking.
- Python 3.6 or higher.
subfinderinstalled viaGo.
- Clone the repository:
git clone https://github.com/cypherdavy/jackscanner.git cd jackscanner - Install dependencies:
pip install -r requirements.txt
- Install
subfinder:go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
- Run the script:
python main.py
- Enter the target domain when prompted:
Enter the main domain (e.g., nokia.com): example.com - Review the results:
- Live Subdomains: All live and accessible subdomains.
- Clickjacking Vulnerabilities: Domains lacking proper protections.
Enter the main domain (e.g., nokia.com): example.com[*] Enumerating subdomains...
[+] Found 8 subdomains.
[*] Testing for live subdomains...
[LIVE] https://www.example.com
[LIVE] https://secure.example.com
[*] Checking for clickjacking vulnerabilities...
[VULNERABLE] https://www.example.com - No protection against clickjacking
[SAFE] https://secure.example.com - Protected against clickjacking
============================================================
Summary:
[+] Live Subdomains:
- https://www.example.com
- https://secure.example.com
[+] Clickjacking Vulnerable Websites:
- https://www.example.com
============================================================
JackScanner includes working PoCs to demonstrate the impact of identified vulnerabilities.
JackScanner is a read-only testing tool and does not harm target applications. Ensure you have explicit authorization before running scans. This tool is for ethical use only.
This project is licensed under the MIT License.
We welcome contributions from the community!
- Fork the repository.
- Submit issues or pull requests.
- Share feedback to improve JackScanner.
For inquiries, reach out to:
- Author: davycipher
- Email: davycypher@gmail.com
- Built on the amazing open-source tools:
subfinder,tqdm,termcolor.


