├── API.py ├── Colab Notebooks ├── Data_Collection_and_Feature_Extraction_(Phishing_urls).ipynb └── Training_Phishing_classifier.ipynb ├── Docs ├── Architecture.pdf ├── DPR - phishing-domain-detection.pdf ├── HLD - phishing-domain-detection.pdf ├── LLD - phishing-domain-detection.pdf └── Wireframe.pdf ├── Feature_Extractor.py ├── Imgs ├── phishr-demo.gif ├── phishr-demo3.gif ├── phising.gif └── phising_architecture.jpg ├── LICENSE ├── Main.py ├── README.md ├── Url_Features.py ├── models └── Malicious_URL_Prediction.h5 └── requirements.txt /API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/API.py -------------------------------------------------------------------------------- /Colab Notebooks/Data_Collection_and_Feature_Extraction_(Phishing_urls).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Colab Notebooks/Data_Collection_and_Feature_Extraction_(Phishing_urls).ipynb -------------------------------------------------------------------------------- /Colab Notebooks/Training_Phishing_classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Colab Notebooks/Training_Phishing_classifier.ipynb -------------------------------------------------------------------------------- /Docs/Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Docs/Architecture.pdf -------------------------------------------------------------------------------- /Docs/DPR - phishing-domain-detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Docs/DPR - phishing-domain-detection.pdf -------------------------------------------------------------------------------- /Docs/HLD - phishing-domain-detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Docs/HLD - phishing-domain-detection.pdf -------------------------------------------------------------------------------- /Docs/LLD - phishing-domain-detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Docs/LLD - phishing-domain-detection.pdf -------------------------------------------------------------------------------- /Docs/Wireframe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Docs/Wireframe.pdf -------------------------------------------------------------------------------- /Feature_Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Feature_Extractor.py -------------------------------------------------------------------------------- /Imgs/phishr-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Imgs/phishr-demo.gif -------------------------------------------------------------------------------- /Imgs/phishr-demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Imgs/phishr-demo3.gif -------------------------------------------------------------------------------- /Imgs/phising.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Imgs/phising.gif -------------------------------------------------------------------------------- /Imgs/phising_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Imgs/phising_architecture.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/README.md -------------------------------------------------------------------------------- /Url_Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/Url_Features.py -------------------------------------------------------------------------------- /models/Malicious_URL_Prediction.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepeshdm/Phishing-Attack-Domain-Detection/HEAD/models/Malicious_URL_Prediction.h5 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.7 2 | regex 3 | urllib3==1.26.6 --------------------------------------------------------------------------------