Chrome Extension For Identifying Malicious & Phishing URLs
The Securesurf - Malicious URL Detector is a Chrome extension that uses a machine learning model deployed on AWS Lambda to predict whether a given URL is malicious or not. This extension provides an additional layer of security for users by analyzing URLs and warning them if the link is potentially harmful.
- Real-time URL Analysis: The extension checks the safety of a URL in real-time using a machine learning model.
- AWS Lambda Integration: Utilizes AWS Lambda for scalable and cost-effective deployment of the machine learning model.
- User-Friendly Interface: Simple and intuitive user interface for a seamless browsing experience.
-
Clone the repository:
git clone https://github.com/your-username/malicious-url-checker.git
-
Open Chrome and navigate to
chrome://extensions/
. -
Enable Developer mode.
-
Click on Load unpacked and select the extension folder from your local repository.
-
Click on the extension icon in the Chrome toolbar to open the popup.
-
Enter or paste the URL you want to check into the input field.
-
Click the Check URL button.
-
The extension will analyze the URL and display the result, indicating whether it is considered malicious or not.
-
Create an AWS Lambda function for hosting your machine learning model. AWS Lambda Documentation
-
Configure the extension to use the AWS Lambda endpoint by updating the relevant settings in the code.
// Example code snippet in popup.js // Dummy because of API Limit const lambdaEndpoint = 'https://aws-lambda-endpoint.amazonaws.com';
This project is licensed under the MIT License.