-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
52 lines (52 loc) · 1.36 KB
/
Copy pathmanifest.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "AuthZ Replayer",
"version": "0.5.0",
"description": "In-browser access-control tester for authorized security testing. Capture two sessions, browse as the owner, and silently replay each request as a lower-priv identity and unauthenticated to find IDOR / BOLA / BFLA.",
"minimum_chrome_version": "116",
"icons": {
"16": "src/icons/icon16.png",
"32": "src/icons/icon32.png",
"48": "src/icons/icon48.png",
"128": "src/icons/icon128.png"
},
"action": {
"default_title": "AuthZ Replayer (open side panel)",
"default_icon": {
"16": "src/icons/icon16.png",
"32": "src/icons/icon32.png",
"48": "src/icons/icon48.png",
"128": "src/icons/icon128.png"
}
},
"side_panel": {
"default_path": "src/sidepanel/sidepanel.html"
},
"background": {
"service_worker": "src/background/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["src/content/banner.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"storage",
"cookies",
"browsingData",
"webRequest",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"scripting",
"sidePanel",
"tabs"
],
"host_permissions": [
"http://*/*",
"https://*/*"
]
}