71 / phishGNN

Phishing detection using GNNs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PhishGNN

Phishing website detection using Graph Neural Networks (GNNs).

phishing_graph phishing_graph

Installation

Clone the repo

git clone https://github.com/TristanBilot/phishGNN.git
cd phishGNN

Install dependencies

./install_dataset.sh
pip install -r requirements.txt
pip install torch-scatter torch-sparse torch-cluster torch-spline-conv torch-geometric -f https://data.pyg.org/whl/torch-1.11.0+cpu.html # for cpu

Dataset & crawler

The dataset can be downloaded in PyG format and new features can be extracted from URLs using the crawler. A full guide for both tasks can be found here.

Training

During training, the files located in data/training/processed will be used by default. The raw dataset is composed of urls mapped to around 30 features, including a list of references (href, form, iframe) to other pages, which also have their own features and their list of references.

python phishGNN/training.py

Visualize node embeddings

During training, it is possible to generate the embeddings just after passing through the Graph Convolutional layers. Just run the training with the following option:

python phishGNN/training.py --plot-embeddings

Visualize the graphs

A tool has been developed in order to visualize graphically the internal structure of web pages from the dataset along with their characteristics such as the number of nodes/edges and whether the page is phishing or benign.

To visualize these data, first follow the instructions in the installation part, run the visualization script and open the file visualization/visualization.html.

python visualization.py

Screenshot 2022-03-30 at 12 39 01

License

MIT

About

Phishing detection using GNNs


Languages

Language:Rust 52.7%Language:Python 44.0%Language:HTML 1.9%Language:Dockerfile 1.2%Language:Shell 0.2%