0% found this document useful (0 votes)
5 views1 page

AI Phishing Detection Browser Extension

Uploaded by

23bca082
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

AI Phishing Detection Browser Extension

Uploaded by

23bca082
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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]",

You might also like