wasfyelbaz / clickjocker

Clickjoker is a python-based software that scans specific domain(s) for ClickJacking vulnerability and automatically creates a POC file for the vulnerable domain(s).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clickjoker

Clickjoker is a python-based software that scans specific domain(s) for ClickJacking vulnerability and automatically creates a POC file for the vulnerable domain(s).

Installation

git clone https://github.com/wasfyelbaz/clickjocker.git
cd clickjocker
pip3 install -r requirements.txt

Usage

./clickjocker --help
usage: clickjocker [-h] [-d] [-v] [-l] [-t] [-o]

Developed By elitebaz

optional arguments:
  -h, --help       show this help message and exit
  -d , --domain    Domain to scan.
  -v, --verbose    Turn on stdout and print details.
  -l , --list      Path to list of domains to scan.
  -t , --threads   Number of threads.
  -o , --output    Path to the output list of vulnerable domains.

Example

Take single domain as input as argument

$ ./clickjocker.py -v -d example.com

[+] http://example.com is vulnerable to clickjacking
[+] Creating POC for http://example.com

Take input from stdin

$ cat hosts.txt | ./clickjocker

http://example.com
...

Take list file as input

$ ./clickjocker.py -l hosts.txt

http://example.com
...

Local Testing

You can test the ClickJacking vulnerability on this awesome lab.

Disclaimer

This tool is only for educational purposes, and I am not responsible for using this tool in any illegal activities.

About

Clickjoker is a python-based software that scans specific domain(s) for ClickJacking vulnerability and automatically creates a POC file for the vulnerable domain(s).


Languages

Language:Python 100.0%