Merge branch 'master' of github.com:AliasIO/wappalyzer

main
Elbert Alias 5 years ago
commit 4df3b18efa

@ -1,19 +1,25 @@
{
"title": "Wappalyzer Schema",
"definitions": {
"non-empty-non-blank-sting": {
"type": "string",
"pattern": "^(?!\\s*$).+"
}
},
"type": "object",
"additionalProperties": false,
"required": ["categories","apps"],
"properties": {
"$schema": {
"type": "string"
},
"categories": {
"type": "object",
"required": true,
"minProperties": 64,
"additionalProperties": false,
"patternProperties": {
"^[0-9]+$": {
"type": "object",
"required": true,
"properties": {
"priority": {
"type": "number"
@ -27,89 +33,124 @@
},
"apps": {
"type": "object",
"required": true,
"additionalProperties": {
"additionalProperties": false,
"required": ["cats","website"],
"properties": {
"cats": {
"type": "array",
"items": {
"type": "number"
},
"required": true
"minItems": 1
},
"cpe": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
},
"cookies": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.+$": {
},
"additionalProperties": {
"type": "string"
}
}
},
"js": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.+$": {
},
"additionalProperties": {
"type": "string"
}
}
},
"headers": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.+$": {
},
"additionalProperties": {
"type": "string"
}
}
},
"html": {
"type": [
"string",
"array"
],
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
}
},
{
"$ref": "#/definitions/non-empty-non-blank-sting"
}
]
},
"excludes": {
"type": [
"string",
"array"
],
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
}
},
{
"$ref": "#/definitions/non-empty-non-blank-sting"
}
]
},
"implies": {
"type": [
"string",
"array"
],
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
}
},
{
"$ref": "#/definitions/non-empty-non-blank-sting"
}
]
},
"meta": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^.+$": {
},
"additionalProperties": {
"type": "string"
}
}
},
"script": {
"type": [
"string",
"array"
],
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
}
},
{
"$ref": "#/definitions/non-empty-non-blank-sting"
}
]
},
"url": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
},
"website": {
"type": "string",
"required": true
"$ref": "#/definitions/non-empty-non-blank-sting"
},
"icon": {
"type": "string"
"$ref": "#/definitions/non-empty-non-blank-sting"
}
}
}

@ -1608,7 +1608,6 @@
32
],
"html": "<meta property=\"cf:app_domain\" content=\"app\\.clickfunnels\\.com\"",
"env": "Clickfunnels",
"icon": "ClickFunnels.png",
"website": "https://www.clickfunnels.com"
},

@ -146,7 +146,7 @@ browser.runtime.onConnect.addListener((port) => {
const url = wappalyzer.parseUrl(port.sender.tab ? port.sender.tab.url : '');
const cookies = await browser.cookies.getAll({ domain: `.${url.hostname}` });
const cookies = await browser.cookies.getAll({ domain: `.${url.hostname}`, firstPartyDomain: null });
let response;

Loading…
Cancel
Save