├── Phishing Website Detection with FastAPI and Streamlit ├── api.py ├── app.py ├── classifier.py └── featureExtraction.py ├── Phishing website detection using UI ├── .project ├── .pydevproject ├── Classifier.py ├── Classifier2.py ├── FeatureExtraction.py ├── RandomForestModel.sav ├── app.py ├── screenshot1.png ├── screenshot2.png └── templates │ ├── about.html │ ├── home.html │ ├── includes │ ├── _formhelpers.html │ └── _navbar.html │ └── layout.html ├── README.md ├── _config.yml ├── extracted_csv_files ├── legitimate-urls.csv └── phishing-urls.csv ├── notebooks ├── DecisionTree_Classifier.ipynb ├── FeatureExtraction.ipynb ├── Phishing_Website_Detection_featureExtraction.ipynb └── RandomForest_Classifier.ipynb └── raw_datasets ├── 100-legitimate-art.txt ├── 1000-phishing.txt └── legitimate_urls.txt /Phishing Website Detection with FastAPI and Streamlit/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing Website Detection with FastAPI and Streamlit/api.py -------------------------------------------------------------------------------- /Phishing Website Detection with FastAPI and Streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing Website Detection with FastAPI and Streamlit/app.py -------------------------------------------------------------------------------- /Phishing Website Detection with FastAPI and Streamlit/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing Website Detection with FastAPI and Streamlit/classifier.py -------------------------------------------------------------------------------- /Phishing Website Detection with FastAPI and Streamlit/featureExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing Website Detection with FastAPI and Streamlit/featureExtraction.py -------------------------------------------------------------------------------- /Phishing website detection using UI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/.project -------------------------------------------------------------------------------- /Phishing website detection using UI/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/.pydevproject -------------------------------------------------------------------------------- /Phishing website detection using UI/Classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/Classifier.py -------------------------------------------------------------------------------- /Phishing website detection using UI/Classifier2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/Classifier2.py -------------------------------------------------------------------------------- /Phishing website detection using UI/FeatureExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/FeatureExtraction.py -------------------------------------------------------------------------------- /Phishing website detection using UI/RandomForestModel.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/RandomForestModel.sav -------------------------------------------------------------------------------- /Phishing website detection using UI/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/app.py -------------------------------------------------------------------------------- /Phishing website detection using UI/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/screenshot1.png -------------------------------------------------------------------------------- /Phishing website detection using UI/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/screenshot2.png -------------------------------------------------------------------------------- /Phishing website detection using UI/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/templates/about.html -------------------------------------------------------------------------------- /Phishing website detection using UI/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/templates/home.html -------------------------------------------------------------------------------- /Phishing website detection using UI/templates/includes/_formhelpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/templates/includes/_formhelpers.html -------------------------------------------------------------------------------- /Phishing website detection using UI/templates/includes/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/templates/includes/_navbar.html -------------------------------------------------------------------------------- /Phishing website detection using UI/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/Phishing website detection using UI/templates/layout.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/_config.yml -------------------------------------------------------------------------------- /extracted_csv_files/legitimate-urls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/extracted_csv_files/legitimate-urls.csv -------------------------------------------------------------------------------- /extracted_csv_files/phishing-urls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/extracted_csv_files/phishing-urls.csv -------------------------------------------------------------------------------- /notebooks/DecisionTree_Classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/notebooks/DecisionTree_Classifier.ipynb -------------------------------------------------------------------------------- /notebooks/FeatureExtraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/notebooks/FeatureExtraction.ipynb -------------------------------------------------------------------------------- /notebooks/Phishing_Website_Detection_featureExtraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/notebooks/Phishing_Website_Detection_featureExtraction.ipynb -------------------------------------------------------------------------------- /notebooks/RandomForest_Classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/notebooks/RandomForest_Classifier.ipynb -------------------------------------------------------------------------------- /raw_datasets/100-legitimate-art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/raw_datasets/100-legitimate-art.txt -------------------------------------------------------------------------------- /raw_datasets/1000-phishing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/raw_datasets/1000-phishing.txt -------------------------------------------------------------------------------- /raw_datasets/legitimate_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chamanthmvs/Phishing-Website-Detection/HEAD/raw_datasets/legitimate_urls.txt --------------------------------------------------------------------------------