-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 996 Bytes
/
package.json
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
{
"name": "majascan",
"title": "Majascan",
"id": "jid1-KFQXABevKH0OGA",
"description": "(Trying to) detect malicious javascript as you browse.",
"author": "Hauke Luebbers",
"license": "MIT License",
"version": "0.1",
"dependencies": ["addon-sdk"],
"preferences": [{
"type": "boolint",
"title": "XSS Test Code Detection",
"name": "xssTest",
"description": "Looks for typical Javascript code used to test for XSS vulnerabilities",
"on": "1",
"off": "0",
"value": 1
},
{
"type": "boolint",
"title": "Reflective XSS Detection in URL",
"name": "xssReflectiveGET",
"description": "Looks for JavaScript in the request URL to prevent reflective XSS",
"on": "1",
"off": "0",
"value": 1
},
{
"type": "boolint",
"title": "Reflective XSS Detection in POST data",
"name": "xssReflectivePOST",
"description": "Looks for JavaScript in the POST data to prevent reflective XSS",
"on": "1",
"off": "0",
"value": 1
}]
}