Problem Statement:
Cybersecurity - AI-Powered Phishing Detection Plugin
Develop a browser extension that detects and warns users about phishing websites using
machine learning. The extension should analyze website URLs, page content, and SSL
certificates to classify sites as safe or suspicious.
Please mention your team details such as:
● Name of Members
● Email
● Contact
Creating a browser extension that detects phishing websites using
machine learning involves several steps. Below is a simplified
prototype in JavaScript. This prototype will focus on analyzing URLs
and page content to classify sites as safe or suspicious. For
simplicity, we'll use a pre-trained machine learning model (e.g.,
[Link]) and a basic heuristic approach.
### Step 1: Set Up the Browser Extension
1. **Create the Manifest File (`[Link]`):**
This file defines the extension's metadata and permissions.
```json
{
"manifest_version": 3,
"name": "Phishing Detection Extension",
"version": "1.0",
"description": "Detects and warns users about phishing websites.",
"permissions": ["activeTab", "webRequest", "storage"],
"background": {
"service_worker": "[Link]"
},
"action": {
"default_popup": "[Link]",