parent
22d6c56157
commit
2401457a99
@ -1,273 +1,245 @@
|
||||
{
|
||||
"title": "Wappalyzer schema",
|
||||
"definitions": {
|
||||
"non-empty-non-blank-string": {
|
||||
"type": "string",
|
||||
"pattern": "^(?!\\s*$).+"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["technologies", "categories"],
|
||||
"properties": {
|
||||
"$schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"categories": {
|
||||
"type": "object",
|
||||
"minProperties": 64,
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^[0-9]+$": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"priority": {
|
||||
"type": "number"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"technologies": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"required": ["cats","website"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "string",
|
||||
"pattern": "^.{0,500}$"
|
||||
},
|
||||
"oss": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"saas": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pricing": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"pattern": "^(low|mid|high|freemium|poa|payg|onetime|recurring)$"
|
||||
}
|
||||
"title": "Wappalyzer schema",
|
||||
"definitions": {
|
||||
"non-empty-non-blank-string": {
|
||||
"type": "string",
|
||||
"pattern": "^(?!\\s*$).+"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"additionalProperties": false,
|
||||
"required": ["cats","website"],
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "string",
|
||||
"pattern": "^.{0,500}$"
|
||||
},
|
||||
"oss": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"saas": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pricing": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"pattern": "^(low|mid|high|freemium|poa|payg|onetime|recurring)$"
|
||||
}
|
||||
},
|
||||
"cats": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "number"
|
||||
},
|
||||
"minItems": 1
|
||||
},
|
||||
"cpe": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"cookies": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"cats": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "number"
|
||||
},
|
||||
"minItems": 1
|
||||
},
|
||||
"cpe": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"cookies": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"js": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dom": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
}
|
||||
}
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"js": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dom": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
}
|
||||
]
|
||||
},
|
||||
"dns": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
}
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"html": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"css": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"robots": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"magento": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"certIssuer": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"excludes": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"implies": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"requires": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"url": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"website": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"icon": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"xhr": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"dns": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
}
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"html": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"css": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"robots": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"magento": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"certIssuer": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"excludes": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"implies": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"requires": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"patternProperties": {
|
||||
"^.+$": {
|
||||
},
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
]
|
||||
},
|
||||
"url": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"website": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"icon": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
},
|
||||
"xhr": {
|
||||
"$ref": "#/definitions/non-empty-non-blank-string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,358 @@
|
||||
{
|
||||
"1": {
|
||||
"name": "CMS",
|
||||
"priority": 1
|
||||
},
|
||||
"2": {
|
||||
"name": "Message boards",
|
||||
"priority": 1
|
||||
},
|
||||
"3": {
|
||||
"name": "Database managers",
|
||||
"priority": 2
|
||||
},
|
||||
"4": {
|
||||
"name": "Documentation",
|
||||
"priority": 2
|
||||
},
|
||||
"5": {
|
||||
"name": "Widgets",
|
||||
"priority": 9
|
||||
},
|
||||
"6": {
|
||||
"name": "Ecommerce",
|
||||
"priority": 1
|
||||
},
|
||||
"7": {
|
||||
"name": "Photo galleries",
|
||||
"priority": 1
|
||||
},
|
||||
"8": {
|
||||
"name": "Wikis",
|
||||
"priority": 1
|
||||
},
|
||||
"9": {
|
||||
"name": "Hosting panels",
|
||||
"priority": 1
|
||||
},
|
||||
"10": {
|
||||
"name": "Analytics",
|
||||
"priority": 9
|
||||
},
|
||||
"11": {
|
||||
"name": "Blogs",
|
||||
"priority": 1
|
||||
},
|
||||
"12": {
|
||||
"name": "JavaScript frameworks",
|
||||
"priority": 8
|
||||
},
|
||||
"13": {
|
||||
"name": "Issue trackers",
|
||||
"priority": 2
|
||||
},
|
||||
"14": {
|
||||
"name": "Video players",
|
||||
"priority": 7
|
||||
},
|
||||
"15": {
|
||||
"name": "Comment systems",
|
||||
"priority": 9
|
||||
},
|
||||
"16": {
|
||||
"name": "Security",
|
||||
"priority": 9
|
||||
},
|
||||
"17": {
|
||||
"name": "Font scripts",
|
||||
"priority": 9
|
||||
},
|
||||
"18": {
|
||||
"name": "Web frameworks",
|
||||
"priority": 7
|
||||
},
|
||||
"19": {
|
||||
"name": "Miscellaneous",
|
||||
"priority": 9
|
||||
},
|
||||
"20": {
|
||||
"name": "Editors",
|
||||
"priority": 4
|
||||
},
|
||||
"21": {
|
||||
"name": "LMS",
|
||||
"priority": 1
|
||||
},
|
||||
"22": {
|
||||
"name": "Web servers",
|
||||
"priority": 8
|
||||
},
|
||||
"23": {
|
||||
"name": "Caching",
|
||||
"priority": 7
|
||||
},
|
||||
"24": {
|
||||
"name": "Rich text editors",
|
||||
"priority": 5
|
||||
},
|
||||
"25": {
|
||||
"name": "JavaScript graphics",
|
||||
"priority": 6
|
||||
},
|
||||
"26": {
|
||||
"name": "Mobile frameworks",
|
||||
"priority": 8
|
||||
},
|
||||
"27": {
|
||||
"name": "Programming languages",
|
||||
"priority": 5
|
||||
},
|
||||
"28": {
|
||||
"name": "Operating systems",
|
||||
"priority": 6
|
||||
},
|
||||
"29": {
|
||||
"name": "Search engines",
|
||||
"priority": 4
|
||||
},
|
||||
"30": {
|
||||
"name": "Webmail",
|
||||
"priority": 2
|
||||
},
|
||||
"31": {
|
||||
"name": "CDN",
|
||||
"priority": 9
|
||||
},
|
||||
"32": {
|
||||
"name": "Marketing automation",
|
||||
"priority": 9
|
||||
},
|
||||
"33": {
|
||||
"name": "Web server extensions",
|
||||
"priority": 7
|
||||
},
|
||||
"34": {
|
||||
"name": "Databases",
|
||||
"priority": 5
|
||||
},
|
||||
"35": {
|
||||
"name": "Maps",
|
||||
"priority": 6
|
||||
},
|
||||
"36": {
|
||||
"name": "Advertising",
|
||||
"priority": 9
|
||||
},
|
||||
"37": {
|
||||
"name": "Network devices",
|
||||
"priority": 2
|
||||
},
|
||||
"38": {
|
||||
"name": "Media servers",
|
||||
"priority": 1
|
||||
},
|
||||
"39": {
|
||||
"name": "Webcams",
|
||||
"priority": 9
|
||||
},
|
||||
"41": {
|
||||
"name": "Payment processors",
|
||||
"priority": 8
|
||||
},
|
||||
"42": {
|
||||
"name": "Tag managers",
|
||||
"priority": 9
|
||||
},
|
||||
"44": {
|
||||
"name": "CI",
|
||||
"priority": 3
|
||||
},
|
||||
"45": {
|
||||
"name": "Control systems",
|
||||
"priority": 2
|
||||
},
|
||||
"46": {
|
||||
"name": "Remote access",
|
||||
"priority": 1
|
||||
},
|
||||
"47": {
|
||||
"name": "Development",
|
||||
"priority": 2
|
||||
},
|
||||
"48": {
|
||||
"name": "Network storage",
|
||||
"priority": 2
|
||||
},
|
||||
"49": {
|
||||
"name": "Feed readers",
|
||||
"priority": 1
|
||||
},
|
||||
"50": {
|
||||
"name": "DMS",
|
||||
"priority": 1
|
||||
},
|
||||
"51": {
|
||||
"name": "Page builders",
|
||||
"priority": 2
|
||||
},
|
||||
"52": {
|
||||
"name": "Live chat",
|
||||
"priority": 9
|
||||
},
|
||||
"53": {
|
||||
"name": "CRM",
|
||||
"priority": 5
|
||||
},
|
||||
"54": {
|
||||
"name": "SEO",
|
||||
"priority": 8
|
||||
},
|
||||
"55": {
|
||||
"name": "Accounting",
|
||||
"priority": 1
|
||||
},
|
||||
"56": {
|
||||
"name": "Cryptominers",
|
||||
"priority": 5
|
||||
},
|
||||
"57": {
|
||||
"name": "Static site generator",
|
||||
"priority": 1
|
||||
},
|
||||
"58": {
|
||||
"name": "User onboarding",
|
||||
"priority": 8
|
||||
},
|
||||
"59": {
|
||||
"name": "JavaScript libraries",
|
||||
"priority": 9
|
||||
},
|
||||
"60": {
|
||||
"name": "Containers",
|
||||
"priority": 8
|
||||
},
|
||||
"62": {
|
||||
"name": "PaaS",
|
||||
"priority": 8
|
||||
},
|
||||
"63": {
|
||||
"name": "IaaS",
|
||||
"priority": 8
|
||||
},
|
||||
"64": {
|
||||
"name": "Reverse proxies",
|
||||
"priority": 7
|
||||
},
|
||||
"65": {
|
||||
"name": "Load balancers",
|
||||
"priority": 7
|
||||
},
|
||||
"66": {
|
||||
"name": "UI frameworks",
|
||||
"priority": 7
|
||||
},
|
||||
"67": {
|
||||
"name": "Cookie compliance",
|
||||
"priority": 9
|
||||
},
|
||||
"68": {
|
||||
"name": "Accessibility",
|
||||
"priority": 9
|
||||
},
|
||||
"69": {
|
||||
"name": "Social logins",
|
||||
"priority": 6
|
||||
},
|
||||
"70": {
|
||||
"name": "SSL/TLS certificate authorities",
|
||||
"priority": 9
|
||||
},
|
||||
"71": {
|
||||
"name": "Affiliate programs",
|
||||
"priority": 9
|
||||
},
|
||||
"72": {
|
||||
"name": "Appointment scheduling",
|
||||
"priority": 9
|
||||
},
|
||||
"73": {
|
||||
"name": "Surveys",
|
||||
"priority": 9
|
||||
},
|
||||
"74": {
|
||||
"name": "A/B Testing",
|
||||
"priority": 9
|
||||
},
|
||||
"75": {
|
||||
"name": "Email",
|
||||
"priority": 9
|
||||
},
|
||||
"76": {
|
||||
"name": "Personalisation",
|
||||
"priority": 9
|
||||
},
|
||||
"77": {
|
||||
"name": "Retargeting",
|
||||
"priority": 9
|
||||
},
|
||||
"78": {
|
||||
"name": "RUM",
|
||||
"priority": 9
|
||||
},
|
||||
"79": {
|
||||
"name": "Geolocation",
|
||||
"priority": 9
|
||||
},
|
||||
"80": {
|
||||
"name": "WordPress themes",
|
||||
"priority": 9
|
||||
},
|
||||
"81": {
|
||||
"name": "Shopify themes",
|
||||
"priority": 9
|
||||
},
|
||||
"82": {
|
||||
"name": "Drupal themes",
|
||||
"priority": 9
|
||||
},
|
||||
"83": {
|
||||
"name": "Browser fingerprinting",
|
||||
"priority": 9
|
||||
},
|
||||
"84": {
|
||||
"name": "Loyalty & rewards",
|
||||
"priority": 9
|
||||
},
|
||||
"85": {
|
||||
"name": "Feature management",
|
||||
"priority": 9
|
||||
},
|
||||
"86": {
|
||||
"name": "Segmentation",
|
||||
"priority": 9
|
||||
},
|
||||
"87": {
|
||||
"name": "WordPress plugins",
|
||||
"priority": 9
|
||||
},
|
||||
"88": {
|
||||
"name": "Hosting",
|
||||
"priority": 9
|
||||
},
|
||||
"89": {
|
||||
"name": "Translation",
|
||||
"priority": 9
|
||||
},
|
||||
"90": {
|
||||
"name": "Reviews",
|
||||
"priority": 9
|
||||
},
|
||||
"91": {
|
||||
"name": "Buy now pay later",
|
||||
"priority": 9
|
||||
},
|
||||
"92": {
|
||||
"name": "Performance",
|
||||
"priority": 9
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,98 @@
|
||||
{
|
||||
"1C-Bitrix": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"BITRIX_SM_GUEST_ID": "",
|
||||
"BITRIX_SM_LAST_IP": "",
|
||||
"BITRIX_SM_SALE_UID": ""
|
||||
},
|
||||
"description": "1C-Bitrix is a system of web project management, universal software for the creation, support and successful development of corporate websites and online stores.",
|
||||
"headers": {
|
||||
"Set-Cookie": "BITRIX_",
|
||||
"X-Powered-CMS": "Bitrix Site Manager"
|
||||
},
|
||||
"icon": "1C-Bitrix.svg",
|
||||
"implies": "PHP",
|
||||
"pricing": [
|
||||
"onetime",
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "bitrix(?:\\.info/|/js/main/core)",
|
||||
"website": "http://www.1c-bitrix.ru"
|
||||
},
|
||||
"2B Advice": {
|
||||
"cats": [
|
||||
67
|
||||
],
|
||||
"description": "2B Advice provides a plug-in to manage GDPR cookie consent.",
|
||||
"icon": "2badvice.png",
|
||||
"js": {
|
||||
"BBCookieControler": ""
|
||||
},
|
||||
"saas": true,
|
||||
"scripts": "2badvice-cdn\\.azureedge\\.net",
|
||||
"website": "https://www.2b-advice.com/en/data-privacy-software/cookie-consent-plugin/"
|
||||
},
|
||||
"33Across": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"description": "33Across is a technology company focused on solving the challenge of consumer attention for automated advertising.",
|
||||
"dom": "iframe[src*='.33across.com'], link[href*='.33across.com']",
|
||||
"icon": "33Across.png",
|
||||
"saas": true,
|
||||
"website": "https://www.33across.com",
|
||||
"xhr": "\\.33across\\.com"
|
||||
},
|
||||
"3dCart": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"3dvisit": ""
|
||||
},
|
||||
"headers": {
|
||||
"X-Powered-By": "3DCART"
|
||||
},
|
||||
"icon": "3dCart.png",
|
||||
"scripts": "(?:twlh(?:track)?\\.asp|3d_upsell\\.js)",
|
||||
"website": "http://www.3dcart.com"
|
||||
},
|
||||
"4-Tell": {
|
||||
"cats": [
|
||||
76
|
||||
],
|
||||
"cookies": {
|
||||
"4Tell": "",
|
||||
"4TellCart": "",
|
||||
"4TellSession": ""
|
||||
},
|
||||
"description": "4-Tell is an ecommerce software company for retailers with AI-powered personalisation and recommendations products.",
|
||||
"icon": "4-Tell.png",
|
||||
"js": {
|
||||
"_4TellBoost": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "4tellcdn\\.azureedge\\.net",
|
||||
"website": "https://4-tell.com"
|
||||
},
|
||||
"@sulu/web": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "Sulu.svg",
|
||||
"js": {
|
||||
"web.startComponents": ""
|
||||
},
|
||||
"website": "https://github.com/sulu/web-js"
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,887 @@
|
||||
{
|
||||
"EC-CUBE": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cpe": "cpe:/a:lockon:ec-cube",
|
||||
"description": "EC-CUBE is an open source package used to build ecommerce sites.",
|
||||
"icon": "EC-CUBE.svg",
|
||||
"implies": "PHP",
|
||||
"oss": true,
|
||||
"scripts": [
|
||||
"eccube\\.js",
|
||||
"win_op\\.js"
|
||||
],
|
||||
"website": "http://www.ec-cube.net"
|
||||
},
|
||||
"EKM": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"ekmpowershop": ""
|
||||
},
|
||||
"description": "EKM is an all-in-one online store builder, with the company based in the UK.",
|
||||
"icon": "EKM.png",
|
||||
"js": {
|
||||
"_ekmpinpoint": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.ekm.com"
|
||||
},
|
||||
"ELOG": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"html": "<title>ELOG Logbook Selection</title>",
|
||||
"icon": "ELOG.png",
|
||||
"website": "http://midas.psi.ch/elog"
|
||||
},
|
||||
"ELOG HTTP": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "ELOG HTTP ?([\\d.-]+)?\\;version:\\1"
|
||||
},
|
||||
"icon": "ELOG.png",
|
||||
"implies": "ELOG",
|
||||
"website": "http://midas.psi.ch/elog"
|
||||
},
|
||||
"EPiServer": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"EPiServer": "",
|
||||
"EPiTrace": ""
|
||||
},
|
||||
"cpe": "cpe:/a:episerver:episerver",
|
||||
"icon": "EPiServer.png",
|
||||
"implies": "Microsoft ASP.NET",
|
||||
"meta": {
|
||||
"generator": "EPiServer"
|
||||
},
|
||||
"website": "http://episerver.com"
|
||||
},
|
||||
"EPrints": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"icon": "EPrints.png",
|
||||
"implies": "Perl",
|
||||
"js": {
|
||||
"EPJS_menu_template": "",
|
||||
"EPrints": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "EPrints ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"website": "http://www.eprints.org"
|
||||
},
|
||||
"EX.CO": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"description": "EX.CO (formerly Playbuzz) is an online publishing platform for publishers, brand agencies, and individual content creators to create content in interactive formats such as polls, quizzes, lists, video snippets, slideshows, and countdowns.",
|
||||
"icon": "EX.CO.svg",
|
||||
"js": {
|
||||
"__EXCO": "",
|
||||
"__EXCO_INTEGRATION_TYPE": "",
|
||||
"excoPixelUrl": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"scripts": [
|
||||
"\\.ex\\.co",
|
||||
"\\.playbuzz\\.com"
|
||||
],
|
||||
"website": "https://ex.co",
|
||||
"xhr": "prd-collector-anon\\.ex\\.co"
|
||||
},
|
||||
"EasyDigitalDownloads": {
|
||||
"cats": [
|
||||
6,
|
||||
87
|
||||
],
|
||||
"description": "Easy Digital Downloads is a WordPress ecommerce plugin that focuses purely on digital products.",
|
||||
"icon": "EasyDigitalDownloads.svg",
|
||||
"meta": {
|
||||
"generator": "^Easy Digital Downloads v(.*)$\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"requires": "WordPress",
|
||||
"saas": true,
|
||||
"website": "https://easydigitaldownloads.com"
|
||||
},
|
||||
"EasyEngine": {
|
||||
"cats": [
|
||||
47,
|
||||
9
|
||||
],
|
||||
"description": "EasyEngine is a command-line tool for the Nginx web servers to manage WordPress sites that are running on the LEMP Stack.",
|
||||
"headers": {
|
||||
"x-powered-by": "^EasyEngine (.*)$\\;version:\\1"
|
||||
},
|
||||
"icon": "EasyEngine.png",
|
||||
"implies": "Docker",
|
||||
"website": "https://easyengine.io"
|
||||
},
|
||||
"EasyStore": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "EasyStore is a multi sales channel ecommerce platform.",
|
||||
"icon": "EasyStore.svg",
|
||||
"js": {
|
||||
"EasyStore": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.easystore\\.co/",
|
||||
"website": "https://www.easystore.co"
|
||||
},
|
||||
"Ecwid": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Ecwid is a shopping cart plugin that turns any existing website into an online store.",
|
||||
"icon": "ecwid.svg",
|
||||
"js": {
|
||||
"Ecwid": "",
|
||||
"EcwidCart": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"https://app\\.multiscreenstore\\.com/script\\.js",
|
||||
"https://app\\.ecwid\\.com/script\\.js"
|
||||
],
|
||||
"website": "https://www.ecwid.com/"
|
||||
},
|
||||
"EdgeCast": {
|
||||
"cats": [
|
||||
31
|
||||
],
|
||||
"description": "EdgeCast is a content delivery network (CDN) that accelerated and delivers static content to users around the world.",
|
||||
"headers": {
|
||||
"Server": "^ECD\\s\\(\\S+\\)"
|
||||
},
|
||||
"icon": "EdgeCast.png",
|
||||
"url": "https?://(?:[^/]+\\.)?edgecastcdn\\.net/",
|
||||
"website": "http://www.edgecast.com"
|
||||
},
|
||||
"Elastic APM": {
|
||||
"cats": [
|
||||
10,
|
||||
13,
|
||||
78
|
||||
],
|
||||
"description": "Elastic APM offers free and open application performance monitoring.",
|
||||
"icon": "ElasticAPM.png",
|
||||
"implies": [
|
||||
"Elasticsearch"
|
||||
],
|
||||
"js": {
|
||||
"elasticApm": ""
|
||||
},
|
||||
"website": "https://www.elastic.co/apm"
|
||||
},
|
||||
"Elasticsearch": {
|
||||
"cats": [
|
||||
29
|
||||
],
|
||||
"description": "Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents.",
|
||||
"icon": "Elasticsearch.svg",
|
||||
"website": "https://www.elastic.co"
|
||||
},
|
||||
"Elcodi": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"headers": {
|
||||
"X-Elcodi": ""
|
||||
},
|
||||
"icon": "Elcodi.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"Symfony"
|
||||
],
|
||||
"website": "http://elcodi.io"
|
||||
},
|
||||
"Eleanor CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:eleanor-cms:eleanor_cms",
|
||||
"icon": "Eleanor CMS.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "Eleanor"
|
||||
},
|
||||
"website": "http://eleanor-cms.ru"
|
||||
},
|
||||
"Element UI": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"html": [
|
||||
"<(?:div|button) class=\"el-(?:table-column|table-filter|popper|pagination|pager|select-group|form|form-item|color-predefine|color-hue-slider|color-svpanel|color-alpha-slider|color-dropdown|color-picker|badge|tree|tree-node|select|message|dialog|checkbox|checkbox-button|checkbox-group|container|steps|carousel|menu|menu-item|submenu|menu-item-group|button|button-group|card|table|select-dropdown|row|tabs|notification|radio|progress|progress-bar|tag|popover|tooltip|cascader|cascader-menus|cascader-menu|time-spinner|spinner|spinner-inner|transfer|transfer-panel|rate|slider|dropdown|dropdown-menu|textarea|input|input-group|popup-parent|radio-group|main|breadcrumb|time-range-picker|date-range-picker|year-table|date-editor|range-editor|time-spinner|date-picker|time-panel|date-table|month-table|picker-panel|collapse|collapse-item|alert|select-dropdown|select-dropdown__empty|select-dropdown__wrap|select-dropdown__list|scrollbar|switch|carousel|upload|upload-dragger|upload-list|upload-cover|aside|input-number|header|message-box|footer|radio-button|step|autocomplete|autocomplete-suggestion|loading-parent|loading-mask|loading-spinner|)"
|
||||
],
|
||||
"icon": "ElementUI.svg",
|
||||
"implies": "Vue.js",
|
||||
"website": "https://element.eleme.io/"
|
||||
},
|
||||
"Elementor": {
|
||||
"cats": [
|
||||
51
|
||||
],
|
||||
"description": "Elementor is a website builder platform for professionals on WordPress.",
|
||||
"html": [
|
||||
"<div class=(?:\"|')[^\"']*elementor",
|
||||
"<section class=(?:\"|')[^\"']*elementor",
|
||||
"<link [^>]*href=(?:\"|')[^\"']*elementor/assets",
|
||||
"<link [^>]*href=(?:\"|')[^\"']*uploads/elementor/css"
|
||||
],
|
||||
"icon": "Elementor.png",
|
||||
"js": {
|
||||
"elementorFrontend.getElements": ""
|
||||
},
|
||||
"scripts": "elementor/assets/js/[^/]+\\.js\\?ver=([\\d.]+)$\\;version:\\1",
|
||||
"website": "https://elementor.com"
|
||||
},
|
||||
"Elm": {
|
||||
"cats": [
|
||||
27,
|
||||
12
|
||||
],
|
||||
"icon": "elm.svg",
|
||||
"js": {
|
||||
"Elm.Main.embed": "\\;version:0.18",
|
||||
"Elm.Main.init": "\\;version:0.19"
|
||||
},
|
||||
"website": "https://elm-lang.org/"
|
||||
},
|
||||
"Elm-ui": {
|
||||
"cats": [
|
||||
66
|
||||
],
|
||||
"html": "<style>[\\s\\S]*\\.explain > \\.s[\\s\\S]*\\.explain > \\.ctr > \\.s",
|
||||
"icon": "elm.svg",
|
||||
"implies": "Elm",
|
||||
"website": "https://github.com/mdgriffith/elm-ui"
|
||||
},
|
||||
"Eloqua": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Eloqua is a Software-as-a-Service (SaaS) platform for marketing automation offered that aims to help B2B marketers and organisations manage marketing campaigns and sales lead generation.",
|
||||
"icon": "Oracle.png",
|
||||
"js": {
|
||||
"elqCurESite": "",
|
||||
"elqLoad": "",
|
||||
"elqSiteID": "",
|
||||
"elq_global": ""
|
||||
},
|
||||
"scripts": "elqCfg\\.js",
|
||||
"website": "http://eloqua.com"
|
||||
},
|
||||
"Emarsys": {
|
||||
"cats": [
|
||||
32,
|
||||
76
|
||||
],
|
||||
"description": "Emarsys is a cloud-based B2C marketing platform.",
|
||||
"icon": "Emarsys.svg",
|
||||
"js": {
|
||||
"Scarab": "",
|
||||
"ScarabQueue": ""
|
||||
},
|
||||
"scripts": "(?:static|cdn)\\.scarabresearch\\.com",
|
||||
"website": "https://emarsys.com/"
|
||||
},
|
||||
"EmbedThis Appweb": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"cpe": "cpe:/a:embedthis:appweb",
|
||||
"headers": {
|
||||
"Server": "Mbedthis-Appweb(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Embedthis.png",
|
||||
"website": "http://embedthis.com/appweb"
|
||||
},
|
||||
"Ember.js": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"cpe": "cpe:/a:emberjs:ember.js",
|
||||
"icon": "Ember.js.png",
|
||||
"implies": "Handlebars",
|
||||
"js": {
|
||||
"Ember": "",
|
||||
"Ember.VERSION": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"website": "http://emberjs.com"
|
||||
},
|
||||
"Emotion": {
|
||||
"cats": [
|
||||
12,
|
||||
47
|
||||
],
|
||||
"description": "Emotion is a library designed for writing CSS styles with JavaScript.",
|
||||
"dom": "style[data-emotion], style[data-emotion-css]",
|
||||
"icon": "Emotion.png",
|
||||
"website": "http://emotion.sh"
|
||||
},
|
||||
"Engagio": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "Engagio.png",
|
||||
"scripts": [
|
||||
"web-analytics\\.engagio\\.com/js/ei\\.js",
|
||||
"web-analytics\\.engagio\\.com/api/"
|
||||
],
|
||||
"website": "https://www.engagio.com/"
|
||||
},
|
||||
"Ensighten": {
|
||||
"cats": [
|
||||
42
|
||||
],
|
||||
"description": "Ensighten is a solution that enables secure management, implementation and control of website technologies.",
|
||||
"icon": "ensighten.png",
|
||||
"scripts": "//nexus\\.ensighten\\.com/",
|
||||
"website": "https://success.ensighten.com/hc/en-us"
|
||||
},
|
||||
"Envoy": {
|
||||
"cats": [
|
||||
64
|
||||
],
|
||||
"cpe": "cpe:/a:envoyproxy:envoy",
|
||||
"description": "Envoy is an open-source edge and service proxy, designed for cloud-native applications.",
|
||||
"headers": {
|
||||
"Server": "^envoy$",
|
||||
"x-envoy-upstream-service-time": ""
|
||||
},
|
||||
"icon": "Envoy.png",
|
||||
"website": "https://www.envoyproxy.io/"
|
||||
},
|
||||
"Enyo": {
|
||||
"cats": [
|
||||
12,
|
||||
26
|
||||
],
|
||||
"description": "Enyo is an open-source JavaScript framework for cross-platform for mobile, desktop, TV and web applications.",
|
||||
"icon": "Enyo.png",
|
||||
"js": {
|
||||
"enyo": ""
|
||||
},
|
||||
"scripts": "enyo\\.js",
|
||||
"website": "http://enyojs.com"
|
||||
},
|
||||
"Epoch": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"html": "<link[^>]+?href=\"[^\"]+epoch(?:\\.min)?\\.css",
|
||||
"implies": "D3",
|
||||
"scripts": "epoch(?:\\.min)?\\.js",
|
||||
"website": "https://fastly.github.io/epoch"
|
||||
},
|
||||
"Epom": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"icon": "Epom.png",
|
||||
"js": {
|
||||
"epomCustomParams": ""
|
||||
},
|
||||
"url": "^https?://(?:[^/]+\\.)?ad(?:op)?shost1\\.com/",
|
||||
"website": "http://epom.com"
|
||||
},
|
||||
"EqualWeb": {
|
||||
"cats": [
|
||||
68
|
||||
],
|
||||
"description": "EqualWeb provides a web accessibility overlay, and helps some people with disabilities access digital information.",
|
||||
"icon": "EqualWeb.png",
|
||||
"scripts": "cdn\\.equalweb\\.com.*\\.js",
|
||||
"website": "https://www.equalweb.com/"
|
||||
},
|
||||
"Erlang": {
|
||||
"cats": [
|
||||
27
|
||||
],
|
||||
"cpe": "cpe:/a:erlang:erlang%2fotp",
|
||||
"description": "Erlang is a general-purpose, concurrent, functional programming language, and a garbage-collected runtime system.",
|
||||
"headers": {
|
||||
"Server": "Erlang( OTP/(?:[\\d.ABR-]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Erlang.png",
|
||||
"website": "http://www.erlang.org"
|
||||
},
|
||||
"Essential JS 2": {
|
||||
"cats": [
|
||||
12,
|
||||
59
|
||||
],
|
||||
"html": "<[^>]+ class ?= ?\"(?:e-control|[^\"]+ e-control)(?: )[^\"]* e-lib\\b",
|
||||
"icon": "syncfusion.svg",
|
||||
"website": "https://www.syncfusion.com/javascript-ui-controls"
|
||||
},
|
||||
"Estore Compare": {
|
||||
"cats": [
|
||||
74
|
||||
],
|
||||
"description": "Estore Compare is a website optimisation software that offers A/B testing, CVR and LTV measuring tools.",
|
||||
"icon": "EstoreCompare.svg",
|
||||
"scripts": "cdn\\d+\\.estore\\.jp/",
|
||||
"website": "https://estore.co.jp/estorecompare/"
|
||||
},
|
||||
"Estore Shopserve": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Estore Shopserve is an all-in-one payment processing and ecommerce solution.",
|
||||
"icon": "EstoreShopserve.svg",
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cart\\d+\\.shopserve\\.jp/",
|
||||
"website": "https://estore.co.jp/shopserve"
|
||||
},
|
||||
"Etherpad": {
|
||||
"cats": [
|
||||
24
|
||||
],
|
||||
"cpe": "cpe:/a:etherpad:etherpad",
|
||||
"description": "Etherpad is an open-source, web-based collaborative real-time editor, allowing authors to simultaneously edit a text document, and see all of the participants' edits in real-time, with the ability to display each author's text in their own colour.",
|
||||
"headers": {
|
||||
"Server": "^Etherpad"
|
||||
},
|
||||
"icon": "etherpad.png",
|
||||
"implies": "Node.js",
|
||||
"js": {
|
||||
"padeditbar": "",
|
||||
"padimpexp": ""
|
||||
},
|
||||
"scripts": [
|
||||
"/ep_etherpad-lite/"
|
||||
],
|
||||
"website": "https://etherpad.org"
|
||||
},
|
||||
"Etracker": {
|
||||
"cats": [
|
||||
10,
|
||||
74
|
||||
],
|
||||
"description": "Etracker is a web optimisation solution.",
|
||||
"icon": "Etracker.png",
|
||||
"js": {
|
||||
"_etracker": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.etracker\\.com",
|
||||
"website": "https://www.etracker.com"
|
||||
},
|
||||
"Eveve": {
|
||||
"cats": [
|
||||
5,
|
||||
72
|
||||
],
|
||||
"description": "Eveve is a restaurant table booking widget.",
|
||||
"html": "<iframe[^>]*[\\w]+\\.eveve\\.com",
|
||||
"icon": "Eveve.svg",
|
||||
"implies": "PHP",
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.eveve.com"
|
||||
},
|
||||
"Exhibit": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"icon": "Exhibit.png",
|
||||
"js": {
|
||||
"Exhibit": "",
|
||||
"Exhibit.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "exhibit.*\\.js",
|
||||
"website": "http://simile-widgets.org/exhibit/"
|
||||
},
|
||||
"ExitIntel": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "ExitIntel is a full service conversion optimisation agency that focuses on ecommerce companies.",
|
||||
"icon": "ExitIntel.png",
|
||||
"js": {
|
||||
"exitintel.VERSION": "(.+)$\\;version:\\1",
|
||||
"exitintelAccount": "",
|
||||
"exitintelConfig": ""
|
||||
},
|
||||
"pricing": [
|
||||
"high",
|
||||
"recurring",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "(?:get.)?exitintel\\.com",
|
||||
"website": "https://exitintelligence.com"
|
||||
},
|
||||
"ExpertRec": {
|
||||
"cats": [
|
||||
29
|
||||
],
|
||||
"description": "ExpertRec is a collaborative Web search engine, which allows users share search histories through a web browser.",
|
||||
"icon": "ExpertRec.png",
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "expertrec\\.com/api/js/ci_common\\.js\\?id=.*",
|
||||
"website": "https://www.expertrec.com"
|
||||
},
|
||||
"Exponea": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Exponea is a cloud-based marketing analysis platform suitable for large and midsize organisations in a variety of industries.",
|
||||
"icon": "Exponea.svg",
|
||||
"js": {
|
||||
"exponea.version": "^v([\\d.]+)$\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "(?:\\.exponea\\.com)?/js/exponea\\.min\\.js",
|
||||
"website": "https://go.exponea.com"
|
||||
},
|
||||
"Express": {
|
||||
"cats": [
|
||||
18,
|
||||
22
|
||||
],
|
||||
"cpe": "cpe:/a:expressjs:express",
|
||||
"description": "Express is a web application framework for Node.js, released as free and open-source software under the MIT License. It is designed for building web applications and APIs.",
|
||||
"headers": {
|
||||
"X-Powered-By": "^Express$"
|
||||
},
|
||||
"icon": "Express.png",
|
||||
"implies": "Node.js",
|
||||
"website": "http://expressjs.com"
|
||||
},
|
||||
"ExpressionEngine": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"exp_csrf_token": "",
|
||||
"exp_last_activity": "",
|
||||
"exp_tracker": ""
|
||||
},
|
||||
"cpe": "cpe:/a:ellislab:expressionengine",
|
||||
"description": "ExpressionEngine is a free and open-source CMS.",
|
||||
"icon": "ExpressionEngine.svg",
|
||||
"implies": "PHP",
|
||||
"oss": true,
|
||||
"website": "http://expressionengine.com"
|
||||
},
|
||||
"ExtJS": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"cpe": "cpe:/a:sencha:ext_js",
|
||||
"icon": "ExtJS.png",
|
||||
"js": {
|
||||
"Ext": "",
|
||||
"Ext.version": "^(.+)$\\;version:\\1",
|
||||
"Ext.versions.extjs.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "ext-base\\.js",
|
||||
"website": "https://www.sencha.com"
|
||||
},
|
||||
"Ezoic": {
|
||||
"cats": [
|
||||
10,
|
||||
36
|
||||
],
|
||||
"description": "Ezoic is a website optimisation platform for digital publishers and website owners powered by machine learning.",
|
||||
"icon": "Ezoic.svg",
|
||||
"js": {
|
||||
"EzoicA": "",
|
||||
"EzoicBanger": "",
|
||||
"ezoicTestActive": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"recurring",
|
||||
"poa",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.ezo(?:js|ic|dn)\\.(?:com|net)",
|
||||
"website": "https://www.ezoic.com"
|
||||
},
|
||||
"e-goi": {
|
||||
"cats": [
|
||||
32,
|
||||
75
|
||||
],
|
||||
"description": "e-goi is a multichannel marketing automation software for ecommerce.",
|
||||
"icon": "e-goi.svg",
|
||||
"js": {
|
||||
"Egoimmerce": "",
|
||||
"_egoiaq": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.e-goi\\.com/egoimmerce\\.js",
|
||||
"website": "https://www.e-goi.com"
|
||||
},
|
||||
"e107": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"e107_tz": ""
|
||||
},
|
||||
"headers": {
|
||||
"X-Powered-By": "e107"
|
||||
},
|
||||
"icon": "e107.png",
|
||||
"implies": "PHP",
|
||||
"scripts": "[^a-z\\d]e107\\.js",
|
||||
"website": "http://e107.org"
|
||||
},
|
||||
"eClass": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "eClass is an online learning platform.",
|
||||
"icon": "eClass.png",
|
||||
"js": {
|
||||
"fe_eclass": "\\;confidence:50",
|
||||
"fe_eclass_guest": "\\;confidence:50"
|
||||
},
|
||||
"website": "https://www.eclass.com.hk"
|
||||
},
|
||||
"eDokan": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "eDokan is hosted ecommerce platform with drag-drop template builder and zero programming knowledge.",
|
||||
"dom": "img[src*='cdn.edokan.co']",
|
||||
"icon": "eDokan.png",
|
||||
"implies": [
|
||||
"Node.js",
|
||||
"Angular",
|
||||
"MongoDB"
|
||||
],
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://edokan.co"
|
||||
},
|
||||
"eKomi": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"description": "eKomi is a German supplier and product review service.",
|
||||
"dom": ".ekomi-widget-container",
|
||||
"icon": "eKomi.png",
|
||||
"js": {
|
||||
"ekomiWidgetMain": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.ekomi.de"
|
||||
},
|
||||
"ePages": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "ePages is a provider of cloud-based online shop solutions.",
|
||||
"headers": {
|
||||
"X-epages-RequestId": ""
|
||||
},
|
||||
"icon": "ePages.svg",
|
||||
"js": {
|
||||
"epages": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "http://www.epages.com/"
|
||||
},
|
||||
"eSSENTIAL Accessibility": {
|
||||
"cats": [
|
||||
68
|
||||
],
|
||||
"description": "eSSENTIAL Accessibility provides an accessibility overlay for websites.",
|
||||
"dom": " a[href*='.essentialaccessibility.com'] > img",
|
||||
"icon": "eSSENTIAL Accessibility.png",
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.essentialaccessibility.com"
|
||||
},
|
||||
"eSyndiCat": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"headers": {
|
||||
"X-Drectory-Script": "^eSyndiCat"
|
||||
},
|
||||
"icon": "eSyndiCat.png",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"esyndicat": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "^eSyndiCat "
|
||||
},
|
||||
"website": "http://esyndicat.com"
|
||||
},
|
||||
"eWAY Payments": {
|
||||
"cats": [
|
||||
41
|
||||
],
|
||||
"description": "eWAY is a global omnichannel payment provider. The company processes secure credit card payments for merchants. eWay works through eCommerce.",
|
||||
"html": "<img [^>]*src=\"[^/]*//[^/]*eway\\.com",
|
||||
"icon": "eway.png",
|
||||
"scripts": "secure\\.ewaypayments\\.com",
|
||||
"website": "https://www.eway.com.au/"
|
||||
},
|
||||
"eZ Platform": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"icon": "eZ.svg",
|
||||
"implies": "Symfony",
|
||||
"meta": {
|
||||
"generator": "eZ Platform"
|
||||
},
|
||||
"website": "https://ezplatform.com/"
|
||||
},
|
||||
"eZ Publish": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"eZSESSID": ""
|
||||
},
|
||||
"headers": {
|
||||
"X-Powered-By": "^eZ Publish"
|
||||
},
|
||||
"icon": "eZ.svg",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "eZ Publish"
|
||||
},
|
||||
"website": "https://github.com/ezsystems/ezpublish-legacy"
|
||||
},
|
||||
"ef.js": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"icon": "ef.js.svg",
|
||||
"js": {
|
||||
"ef.version": "^(.+)$\\;version:\\1",
|
||||
"efCore": ""
|
||||
},
|
||||
"scripts": "/ef(?:-core)?(?:\\.min|\\.dev)?\\.js",
|
||||
"website": "http://ef.js.org"
|
||||
},
|
||||
"emBlue": {
|
||||
"cats": [
|
||||
32,
|
||||
75
|
||||
],
|
||||
"description": "emBlue is an email and marketing automation platform.",
|
||||
"icon": "emBlue.svg",
|
||||
"js": {
|
||||
"emblueOnSiteApp": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.embluemail\\.com/(?:library/([\\d.]+))?\\;version:\\1",
|
||||
"website": "https://www.embluemail.com/en"
|
||||
},
|
||||
"enduro.js": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "^enduro\\.js"
|
||||
},
|
||||
"icon": "enduro.js.svg",
|
||||
"implies": "Node.js",
|
||||
"website": "http://endurojs.com"
|
||||
},
|
||||
"eucookie.eu": {
|
||||
"cats": [
|
||||
67
|
||||
],
|
||||
"icon": "eucookie.png",
|
||||
"scripts": "eucookie\\.eu/public/gdpr-cookie-consent\\.js",
|
||||
"website": "https://www.eucookie.eu/"
|
||||
},
|
||||
"experiencedCMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:experiencedcms:experiencedcms",
|
||||
"icon": "experiencedCMS_Logo.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "^experiencedCMS$"
|
||||
},
|
||||
"website": "https://experiencedcms.berkearas.de"
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,621 @@
|
||||
{
|
||||
"HCL Commerce": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<(?:a|link|script)[^>]*(?:href|src)=\".*(?:/wcsstore/|webapp\\/wcs)",
|
||||
"icon": "HCL Commerce.svg",
|
||||
"implies": "Java",
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"url": "/wcs/",
|
||||
"website": "https://www.hcltechsw.com/products/commerce"
|
||||
},
|
||||
"HCL Digital Experience": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:ibm:websphere_portal",
|
||||
"headers": {
|
||||
"IBM-Web2-Location": "",
|
||||
"Itx-Generated-Timestamp": ""
|
||||
},
|
||||
"icon": "IBM.svg",
|
||||
"implies": "Java",
|
||||
"url": "/wps/",
|
||||
"website": "https://www.hcltechsw.com/products/dx"
|
||||
},
|
||||
"HHVM": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"cpe": "cpe:/a:facebook:hhvm",
|
||||
"headers": {
|
||||
"X-Powered-By": "HHVM/?([\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"icon": "HHVM.png",
|
||||
"implies": "PHP\\;confidence:75",
|
||||
"website": "http://hhvm.com"
|
||||
},
|
||||
"HP Compact Server": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "HP_Compact_Server(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "HP.svg",
|
||||
"website": "http://hp.com"
|
||||
},
|
||||
"HP iLO": {
|
||||
"cats": [
|
||||
22,
|
||||
46
|
||||
],
|
||||
"description": "HP iLO is a tool that provides multiple ways to configure, update, monitor, and run servers remotely.",
|
||||
"headers": {
|
||||
"Server": "HP-iLO-Server(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "HP.svg",
|
||||
"website": "http://hp.com"
|
||||
},
|
||||
"HTTP/2": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"description": "HTTP/2 (originally named HTTP/2.0) is a major revision of the HTTP network protocol used by the World Wide Web.",
|
||||
"excludes": "SPDY",
|
||||
"headers": {
|
||||
"X-Firefox-Spdy": "h2"
|
||||
},
|
||||
"icon": "http2.png",
|
||||
"website": "https://http2.github.io"
|
||||
},
|
||||
"Haddock": {
|
||||
"cats": [
|
||||
4
|
||||
],
|
||||
"description": "Haddock is a tool for automatically generating documentation from annotated Haskell source code.",
|
||||
"html": "<p>Produced by <a href=\"http://www\\.haskell\\.org/haddock/\">Haddock</a> version ([0-9.]+)</p>\\;version:\\1",
|
||||
"scripts": "haddock-util\\.js",
|
||||
"website": "http://www.haskell.org/haddock/"
|
||||
},
|
||||
"Halo": {
|
||||
"cats": [
|
||||
1,
|
||||
11
|
||||
],
|
||||
"icon": "Halo.png",
|
||||
"implies": "Java",
|
||||
"meta": {
|
||||
"generator": "Halo ([\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"website": "https://halo.run"
|
||||
},
|
||||
"Hammer.js": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "Hammer.js.png",
|
||||
"js": {
|
||||
"Ha.VERSION": "^(.+)$\\;version:\\1",
|
||||
"Hammer": "",
|
||||
"Hammer.VERSION": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "hammer(?:\\.min)?\\.js",
|
||||
"website": "https://hammerjs.github.io"
|
||||
},
|
||||
"Handlebars": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"cpe": "cpe:/a:handlebars.js_project:handlebars.js",
|
||||
"description": "Handlebars is a JavaScript library used to create reusable webpage templates.",
|
||||
"html": "<[^>]*type=[^>]text\\/x-handlebars-template",
|
||||
"icon": "Handlebars.png",
|
||||
"js": {
|
||||
"Handlebars": "",
|
||||
"Handlebars.VERSION": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "handlebars(?:\\.runtime)?(?:-v([\\d.]+?))?(?:\\.min)?\\.js\\;version:\\1",
|
||||
"website": "http://handlebarsjs.com"
|
||||
},
|
||||
"Haravan": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Haravan is a multi-channel ecommerce services provider from Vietnam.",
|
||||
"icon": "Haravan.svg",
|
||||
"js": {
|
||||
"Haravan": ""
|
||||
},
|
||||
"scripts": "haravan.*\\.js",
|
||||
"website": "https://www.haravan.com"
|
||||
},
|
||||
"Haskell": {
|
||||
"cats": [
|
||||
27
|
||||
],
|
||||
"icon": "Haskell.png",
|
||||
"website": "http://wiki.haskell.org/Haskell"
|
||||
},
|
||||
"HeadJS": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"html": "<[^>]*data-headjs-load",
|
||||
"icon": "HeadJS.png",
|
||||
"js": {
|
||||
"head.browser.name": ""
|
||||
},
|
||||
"scripts": "head\\.(?:core|load)(?:\\.min)?\\.js",
|
||||
"website": "http://headjs.com"
|
||||
},
|
||||
"Heap": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "Heap is an analytics platform.",
|
||||
"icon": "Heap.svg",
|
||||
"js": {
|
||||
"heap.version.heapJsVersion": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"high"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"cdn\\.heapanalytics\\.com",
|
||||
"heap-\\d+\\.js"
|
||||
],
|
||||
"website": "https://heap.io"
|
||||
},
|
||||
"Heartland Payment Systems": {
|
||||
"cats": [
|
||||
41
|
||||
],
|
||||
"description": "Heartland Payment Systems is a US-based payment processing and technology provider.",
|
||||
"icon": "Heartland Payment Systems.svg",
|
||||
"pricing": [
|
||||
"payg",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.heartlandportico\\.com",
|
||||
"website": "https://www.heartlandpaymentsystems.com"
|
||||
},
|
||||
"Helix Ultimate": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"description": "Helix Ultimate a free template framework for Joomla.",
|
||||
"dom": "header#sp-header, body.helix-ultimate",
|
||||
"icon": "HelixUltimate.svg",
|
||||
"implies": "Joomla",
|
||||
"oss": true,
|
||||
"website": "https://www.joomshaper.com/joomla-templates/helixultimate"
|
||||
},
|
||||
"Hello Bar": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"icon": "Hello Bar.png",
|
||||
"js": {
|
||||
"HelloBar": ""
|
||||
},
|
||||
"scripts": "hellobar\\.js",
|
||||
"website": "http://hellobar.com"
|
||||
},
|
||||
"Hello Elementor": {
|
||||
"cats": [
|
||||
80
|
||||
],
|
||||
"description": "Hello Elementor is a WordPress theme built for the Elementor website builder platform. It uses minimal styling and scripts for maximum speed and design freedom.",
|
||||
"dom": {
|
||||
"link[id*='elementor-hello']": {
|
||||
"attributes": {
|
||||
"href": "elementor-hello\\S*\\.css(?:\\?ver=([0-9.]+))?\\;version:\\1"
|
||||
}
|
||||
},
|
||||
"link[id*='hello-elementor']": {
|
||||
"attributes": {
|
||||
"href": "hello-elementor\\S*\\.css(?:\\?ver=([0-9.]+))?\\;version:\\1"
|
||||
}
|
||||
},
|
||||
"script[id*='hello-elementor']": {
|
||||
"text": ""
|
||||
}
|
||||
},
|
||||
"icon": "Hello Elementor.png",
|
||||
"implies": "Elementor",
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium"
|
||||
],
|
||||
"requires": "WordPress",
|
||||
"website": "https://elementor.com/hello-theme/"
|
||||
},
|
||||
"HelpDocs": {
|
||||
"cats": [
|
||||
4,
|
||||
19
|
||||
],
|
||||
"description": "HelpDocs is an knowledge management system.",
|
||||
"icon": "HelpDocs.svg",
|
||||
"js": {
|
||||
"HDAnalytics": "\\;confidence:25",
|
||||
"HDUtils": "\\;confidence:25",
|
||||
"hd_instant_search": "\\;confidence:50"
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cdn\\.helpdocs\\.io",
|
||||
"website": "https://www.helpdocs.io"
|
||||
},
|
||||
"Helpscout": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "Helpscout is a customer service platform including email, a knowledge base tool and live chat.",
|
||||
"icon": "Helpscout.svg",
|
||||
"js": {
|
||||
"Beacon": "\\;confidence:25"
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "beacon-v2\\.helpscout\\.net",
|
||||
"website": "https://www.helpscout.com/"
|
||||
},
|
||||
"Heroku": {
|
||||
"cats": [
|
||||
62
|
||||
],
|
||||
"description": "Heroku is a cloud platform as a service (PaaS) supporting several programming languages.",
|
||||
"dns": {
|
||||
"TXT": [
|
||||
"heroku-domain-verification"
|
||||
]
|
||||
},
|
||||
"headers": {
|
||||
"Via": "[\\d.-]+ vegur$"
|
||||
},
|
||||
"icon": "heroku.svg",
|
||||
"url": "\\.herokuapp\\.com",
|
||||
"website": "https://www.heroku.com/"
|
||||
},
|
||||
"Hestia": {
|
||||
"cats": [
|
||||
80
|
||||
],
|
||||
"description": "Hestia is a modern WordPress theme for professionals a multipurpose one-page design, widgetized footer, blog/news page, and a clean look.",
|
||||
"dom": {
|
||||
"body[class*='hestia-theme']": {
|
||||
"text": ""
|
||||
},
|
||||
"link[id*='hestia']": {
|
||||
"attributes": {
|
||||
"href": "hestia\\S*\\.css(?:\\?ver=([0-9.]+))?\\;version:\\1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"icon": "themeisle.png",
|
||||
"requires": "WordPress",
|
||||
"scripts": "themes/hestia.*\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1",
|
||||
"website": "https://themeisle.com/themes/hestia/"
|
||||
},
|
||||
"Hexo": {
|
||||
"cats": [
|
||||
57
|
||||
],
|
||||
"description": "Hexo is a blog framework powered by Node.js.",
|
||||
"html": [
|
||||
"Powered by <a href=\"https?://hexo\\.io/?\"[^>]*>Hexo</"
|
||||
],
|
||||
"icon": "Hexo.png",
|
||||
"implies": "Node.js",
|
||||
"meta": {
|
||||
"generator": "Hexo(?: v?([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"website": "https://hexo.io"
|
||||
},
|
||||
"HiConversion": {
|
||||
"cats": [
|
||||
74
|
||||
],
|
||||
"description": "HiConversion is a SaaS solution that caters to ecommerce brands seeking actionable insights through their adaptive customer experience optimisation.",
|
||||
"icon": "HiConversion.png",
|
||||
"js": {
|
||||
"__hic.version": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"poa",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "deploy\\.hiconversion\\.com",
|
||||
"website": "https://www.hiconversion.com"
|
||||
},
|
||||
"Hiawatha": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Hiawatha v([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"icon": "Hiawatha.png",
|
||||
"website": "http://hiawatha-webserver.org"
|
||||
},
|
||||
"Highcharts": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"description": "Highcharts is a charting library written in pure JavaScript, for adding interactive charts to a website or web application.",
|
||||
"html": "<svg[^>]*><desc>Created with Highcharts ([\\d.]*)\\;version:\\1",
|
||||
"icon": "Highcharts.png",
|
||||
"js": {
|
||||
"Highcharts": "",
|
||||
"Highcharts.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "highcharts.*\\.js",
|
||||
"website": "https://www.highcharts.com"
|
||||
},
|
||||
"Highlight.js": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"icon": "Highlight.js.png",
|
||||
"js": {
|
||||
"hljs.highlightBlock": "",
|
||||
"hljs.listLanguages": ""
|
||||
},
|
||||
"scripts": "/(?:([\\d.])+/)?highlight(?:\\.min)?\\.js\\;version:\\1",
|
||||
"website": "https://highlightjs.org/"
|
||||
},
|
||||
"Highstock": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"html": "<svg[^>]*><desc>Created with Highstock ([\\d.]*)\\;version:\\1",
|
||||
"icon": "Highcharts.png",
|
||||
"scripts": "highstock[.-]?([\\d\\.]*\\d).*\\.js\\;version:\\1",
|
||||
"website": "http://highcharts.com/products/highstock"
|
||||
},
|
||||
"HikeOrders": {
|
||||
"cats": [
|
||||
68
|
||||
],
|
||||
"description": "HikeOrders is a web accessibility overlay that claims to make your site disability friendly.",
|
||||
"icon": "HikeOrders.png",
|
||||
"scripts": "hikeorders\\.com/main/assets/js/hko-accessibility\\.min\\.js",
|
||||
"website": "https://hikeorders.com/"
|
||||
},
|
||||
"Hinza Advanced CMS": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"icon": "hinza_advanced_cms.svg",
|
||||
"implies": "Laravel",
|
||||
"meta": {
|
||||
"generator": "hinzacms"
|
||||
},
|
||||
"website": "http://hinzaco.com"
|
||||
},
|
||||
"History": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"description": "Manage session history with JavaScript",
|
||||
"scripts": [
|
||||
"/history(@|/)([\\d.]+)(?:/[a-z]+)?/history(?:(.production|.development))?(?:.min)?\\.js\\;version:\\2"
|
||||
],
|
||||
"website": "https://github.com/ReactTraining/history"
|
||||
},
|
||||
"Hogan.js": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"icon": "Hogan.js.png",
|
||||
"js": {
|
||||
"Hogan": ""
|
||||
},
|
||||
"scripts": [
|
||||
"hogan-[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",
|
||||
"([\\d.]+)/hogan(?:\\.min)?\\.js\\;version:\\1"
|
||||
],
|
||||
"website": "https://twitter.github.io/hogan.js/"
|
||||
},
|
||||
"Hostmeapp": {
|
||||
"cats": [
|
||||
5,
|
||||
72
|
||||
],
|
||||
"description": "Hostmeapp is an restaurant software. Includes reservation, waitlist, guestbook and marketing tools.",
|
||||
"icon": "Hostmeapp.svg",
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "tables\\.hostmeapp\\.com",
|
||||
"website": "https://www.hostmeapp.com"
|
||||
},
|
||||
"Hotaru CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"hotaru_mobile": ""
|
||||
},
|
||||
"icon": "Hotaru CMS.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "Hotaru CMS"
|
||||
},
|
||||
"website": "http://hotarucms.org"
|
||||
},
|
||||
"Hotjar": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "Hotjar is a suite of analytic tools to assist in the gathering of qualitative data, providing feedback through tools such as heatmaps, session recordings, and surveys.",
|
||||
"icon": "Hotjar.svg",
|
||||
"js": {
|
||||
"HotLeadfactory": "",
|
||||
"HotleadController": "",
|
||||
"hj.apiUrlBase": ""
|
||||
},
|
||||
"scripts": "//static\\.hotjar\\.com/",
|
||||
"website": "https://www.hotjar.com"
|
||||
},
|
||||
"Howler.js": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"description": "Howler.js is an audio library with support for the Web Audio API and a fallback mechanism for HTML5 Audio.",
|
||||
"icon": "Howler.js.svg",
|
||||
"js": {
|
||||
"Howler": "",
|
||||
"HowlerGlobal": ""
|
||||
},
|
||||
"oss": true,
|
||||
"saas": false,
|
||||
"scripts": [
|
||||
"howler@([\\d.]+)/dist/howler\\.min\\.js\\;version:\\1",
|
||||
"howler/([\\d.]+)/howler(?:\\.core)?\\.min\\.js\\;version:\\1"
|
||||
],
|
||||
"website": "https://howlerjs.com"
|
||||
},
|
||||
"HubSpot": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "HubSpot is a marketing and sales software that helps companies attract visitors, convert leads, and close customers.",
|
||||
"dns": {
|
||||
"TXT": [
|
||||
"hubspotemail\\.net"
|
||||
]
|
||||
},
|
||||
"html": "<!-- Start of Async HubSpot",
|
||||
"icon": "HubSpot.png",
|
||||
"js": {
|
||||
"_hsq": "",
|
||||
"hubspot": ""
|
||||
},
|
||||
"website": "https://www.hubspot.com"
|
||||
},
|
||||
"HubSpot Analytics": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "HubSpot is a marketing and sales software that helps companies attract visitors, convert leads, and close customers.",
|
||||
"icon": "HubSpot.png",
|
||||
"scripts": "js\\.hs-analytics\\.net/analytics",
|
||||
"website": "https://www.hubspot.com/products/marketing/analytics"
|
||||
},
|
||||
"HubSpot CMS Hub": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "CMS Hub is a content management platform by HubSpot for marketers to manage, optimize, and track content performance on websites, blogs, and landing pages.",
|
||||
"headers": {
|
||||
"x-hs-hub-id": "",
|
||||
"x-powered-by": "HubSpot"
|
||||
},
|
||||
"icon": "HubSpot.png",
|
||||
"implies": "HubSpot",
|
||||
"meta": {
|
||||
"generator": "HubSpot"
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.hubspot.com/products/cms"
|
||||
},
|
||||
"HubSpot Chat": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "HubSpot Chat is a tool where you can view, manage, and reply to incoming messages from multiple channels.",
|
||||
"icon": "HubSpot.png",
|
||||
"js": {
|
||||
"HubSpotConversations": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "js\\.usemessages\\.com",
|
||||
"website": "https://www.hubspot.com/products/crm/live-chat"
|
||||
},
|
||||
"HubSpot Cookie Policy Banner": {
|
||||
"cats": [
|
||||
67
|
||||
],
|
||||
"description": "HubSpot Cookie Policy banner is a cookie compliance functionality from HubSpot.",
|
||||
"dom": "#hs-eu-cookie-confirmation",
|
||||
"icon": "HubSpot.png",
|
||||
"website": "https://knowledge.hubspot.com/reports/customize-your-cookie-tracking-settings-and-privacy-policy-alert"
|
||||
},
|
||||
"Hugo": {
|
||||
"cats": [
|
||||
57
|
||||
],
|
||||
"description": "Hugo is an open-source static site generator written in Go.",
|
||||
"html": "powered by <a [^>]*href=\"http://hugo\\.spf13\\.com",
|
||||
"icon": "Hugo.png",
|
||||
"meta": {
|
||||
"generator": "Hugo ([\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"website": "http://gohugo.io"
|
||||
},
|
||||
"Hyperspeed": {
|
||||
"cats": [
|
||||
92
|
||||
],
|
||||
"description": "Fasterize is a website accelerator service.",
|
||||
"icon": "Hyperspeed.png",
|
||||
"implies": "Shopify",
|
||||
"js": {
|
||||
"hyperscripts": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.hyperspeed.me/"
|
||||
},
|
||||
"hCaptcha": {
|
||||
"cats": [
|
||||
16
|
||||
],
|
||||
"html": "<style[^>]+[^<]+#cf-hcaptcha-container[^<]+</style>",
|
||||
"icon": "hCaptcha.svg",
|
||||
"scripts": "https://hcaptcha.com/([\\d]+?)/api.js\\;version:\\1",
|
||||
"website": "https://www.hcaptcha.com/"
|
||||
},
|
||||
"hantana": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "hantana.png",
|
||||
"js": {
|
||||
"Hantana": ""
|
||||
},
|
||||
"scripts": "//hantana\\.org/widget",
|
||||
"website": "https://hantana.org/"
|
||||
}
|
||||
}
|
@ -0,0 +1,798 @@
|
||||
{
|
||||
"IBM Coremetrics": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "IBM.svg",
|
||||
"scripts": "cmdatatagutils\\.js",
|
||||
"website": "http://ibm.com/software/marketing-solutions/coremetrics"
|
||||
},
|
||||
"IBM DataPower": {
|
||||
"cats": [
|
||||
64
|
||||
],
|
||||
"cpe": "cpe:/a:ibm:datapower_gateway",
|
||||
"description": "IBM DataPower Gateway is a single multi-channel gateway designed to help provide security, control, integration and optimized access to a full range of mobile, web, application programming interface (API), service-oriented architecture (SOA), B2B and cloud workloads.",
|
||||
"headers": {
|
||||
"X-Backside-Transport": "",
|
||||
"X-Global-Transaction-ID": ""
|
||||
},
|
||||
"icon": "DataPower.png",
|
||||
"website": "https://www.ibm.com/products/datapower-gateway"
|
||||
},
|
||||
"IBM HTTP Server": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"cpe": "cpe:/a:ibm:http_server",
|
||||
"headers": {
|
||||
"Server": "IBM_HTTP_Server(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "IBM.svg",
|
||||
"website": "http://ibm.com/software/webservers/httpservers"
|
||||
},
|
||||
"IIS": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"cpe": "cpe:/a:microsoft:internet_information_server",
|
||||
"description": "Internet Information Services (IIS) is an extensible web server software created by Microsoft for use with the Windows NT family.",
|
||||
"headers": {
|
||||
"Server": "^(?:Microsoft-)?IIS(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "IIS.png",
|
||||
"implies": "Windows Server",
|
||||
"website": "http://www.iis.net"
|
||||
},
|
||||
"INFOnline": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "INFOnline.png",
|
||||
"js": {
|
||||
"iam_data": "",
|
||||
"szmvars": ""
|
||||
},
|
||||
"scripts": "^https?://(?:[^/]+\\.)?i(?:oam|v)wbox\\.de/",
|
||||
"website": "https://www.infonline.de"
|
||||
},
|
||||
"IPB": {
|
||||
"cats": [
|
||||
2
|
||||
],
|
||||
"cookies": {
|
||||
"ipbWWLmodpids": "",
|
||||
"ipbWWLsession_id": ""
|
||||
},
|
||||
"html": "<link[^>]+ipb_[^>]+\\.css",
|
||||
"icon": "IPB.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"js": {
|
||||
"IPBoard": "",
|
||||
"ipb_var": "",
|
||||
"ipsSettings": ""
|
||||
},
|
||||
"scripts": "jscripts/ips_",
|
||||
"website": "https://invisioncommunity.com/"
|
||||
},
|
||||
"IPInfoDB": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "IPInfoDB is the API that returns the location of an IP address.",
|
||||
"icon": "IPInfoDB.png",
|
||||
"saas": true,
|
||||
"website": "https://www.ipinfodb.com/",
|
||||
"xhr": "api\\.ipinfodb\\.com"
|
||||
},
|
||||
"Ideasoft": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Ideasoft is a Turkish software company providing web-based software solutions, software design, ecommerce solutions, and other services.",
|
||||
"icon": "Ideasoft.png",
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"\\.myideasoft\\.com/([\\d.]+)\\;version:\\1"
|
||||
],
|
||||
"website": "https://www.ideasoft.com.tr"
|
||||
},
|
||||
"Identrust": {
|
||||
"cats": [
|
||||
70
|
||||
],
|
||||
"certIssuer": "TrustID",
|
||||
"description": "denTrust is a digital identity authentication solution.",
|
||||
"icon": "Identrust.svg",
|
||||
"website": "https://www.identrust.com/"
|
||||
},
|
||||
"IdoSell Shop": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "IdoSell Shop is a fully functional ecommerce software platform.",
|
||||
"icon": "idosellshop.png",
|
||||
"js": {
|
||||
"IAI_Ajax": ""
|
||||
},
|
||||
"website": "https://www.idosell.com"
|
||||
},
|
||||
"Iluria": {
|
||||
"cats": [
|
||||
6,
|
||||
63
|
||||
],
|
||||
"description": "Iluria is a hosted ecommerce platform from Brazil.",
|
||||
"icon": "Iluria.png",
|
||||
"js": {
|
||||
"Iluria": "",
|
||||
"iluriaShowPagination": ""
|
||||
},
|
||||
"pricing": [
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "template-assets\\.iluria\\.com/commons/",
|
||||
"website": "https://www.iluria.com.br"
|
||||
},
|
||||
"Immutable.js": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "Immutable.js.png",
|
||||
"js": {
|
||||
"Immutable": "",
|
||||
"Immutable.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "^immutable\\.(?:min\\.)?js$",
|
||||
"website": "https://facebook.github.io/immutable-js/"
|
||||
},
|
||||
"Impact": {
|
||||
"cats": [
|
||||
71
|
||||
],
|
||||
"description": "Impact helps businesses contract and pay partners.",
|
||||
"icon": "Impact.svg",
|
||||
"js": {
|
||||
"ImpactRadiusEvent": "",
|
||||
"irEvent": ""
|
||||
},
|
||||
"scripts": "d\\.impactradius-event\\.com",
|
||||
"website": "https://impact.com/"
|
||||
},
|
||||
"Imperva": {
|
||||
"cats": [
|
||||
16
|
||||
],
|
||||
"headers": {
|
||||
"X-Iinfo": ""
|
||||
},
|
||||
"icon": "Imperva.svg",
|
||||
"scripts": [
|
||||
"/_Incapsula_Resource"
|
||||
],
|
||||
"website": "https://www.imperva.com/"
|
||||
},
|
||||
"ImpressCMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"ICMSSession": "",
|
||||
"ImpressCMS": ""
|
||||
},
|
||||
"cpe": "cpe:/a:impresscms:impresscms",
|
||||
"icon": "ImpressCMS.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "ImpressCMS"
|
||||
},
|
||||
"scripts": "include/linkexternal\\.js",
|
||||
"website": "http://www.impresscms.org"
|
||||
},
|
||||
"ImpressPages": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:impresspages:impresspages_cms",
|
||||
"icon": "ImpressPages.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "ImpressPages(?: CMS)?( [\\d.]*)?\\;version:\\1"
|
||||
},
|
||||
"website": "http://impresspages.org"
|
||||
},
|
||||
"Incapsula": {
|
||||
"cats": [
|
||||
31
|
||||
],
|
||||
"description": "Incapsula is a cloud-based application delivery platform. It uses a global content delivery network to provide web application security, DDoS mitigation, content caching, application delivery, load balancing and failover services.",
|
||||
"headers": {
|
||||
"X-CDN": "Incapsula"
|
||||
},
|
||||
"icon": "Incapsula.png",
|
||||
"website": "http://www.incapsula.com"
|
||||
},
|
||||
"Includable": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"X-Includable-Version": ""
|
||||
},
|
||||
"icon": "Includable.svg",
|
||||
"website": "http://includable.com"
|
||||
},
|
||||
"Index Exchange": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"description": "Index Exchange is a customizable exchange technology that enables sell side media firms to monetize ad inventories programmatically and in real time.",
|
||||
"icon": "Index Exchange.svg",
|
||||
"website": "https://www.indexexchange.com",
|
||||
"xhr": "\\.casalemedia\\.com"
|
||||
},
|
||||
"Indexhibit": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:indexhibit:indexhibit",
|
||||
"html": "<(?:link|a href) [^>]+ndxz-studio",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"Apache",
|
||||
"Exhibit"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "Indexhibit"
|
||||
},
|
||||
"website": "http://www.indexhibit.org"
|
||||
},
|
||||
"Indico": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"MAKACSESSION": ""
|
||||
},
|
||||
"html": "Powered by\\s+(?:CERN )?<a href=\"http://(?:cdsware\\.cern\\.ch/indico/|indico-software\\.org|cern\\.ch/indico)\">(?:CDS )?Indico( [\\d\\.]+)?\\;version:\\1",
|
||||
"icon": "Indico.png",
|
||||
"website": "http://indico-software.org"
|
||||
},
|
||||
"Indy": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Indy(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"website": "http://indyproject.org"
|
||||
},
|
||||
"Inertia": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"description": "Inertia is a protocol for creating monolithic single-page applications.",
|
||||
"dom": {
|
||||
"div[data-page*='component']": {
|
||||
"attributes": {
|
||||
"data-page": "component.+props.+url"
|
||||
}
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"X-Inertia": ""
|
||||
},
|
||||
"icon": "Inertia.svg",
|
||||
"oss": true,
|
||||
"saas": false,
|
||||
"website": "https://inertiajs.com"
|
||||
},
|
||||
"InfernoJS": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"icon": "InfernoJS.png",
|
||||
"js": {
|
||||
"Inferno": "",
|
||||
"Inferno.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"website": "https://infernojs.org"
|
||||
},
|
||||
"Insider": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Insider is the first integrated Growth Management Platform helping digital marketers drive growth across the funnel, from Acquisition to Activation, Retention, and Revenue from a unified platform powered by Artificial Intelligence and Machine Learning.",
|
||||
"icon": "Insider.svg",
|
||||
"js": {
|
||||
"Insider": "\\;confidence:20"
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "api\\.useinsider\\.\\w+/",
|
||||
"website": "https://useinsider.com"
|
||||
},
|
||||
"Inspectlet": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"html": [
|
||||
"<!-- (?:Begin|End) Inspectlet Embed Code -->"
|
||||
],
|
||||
"icon": "inspectlet.png",
|
||||
"js": {
|
||||
"__insp": "",
|
||||
"__inspld": ""
|
||||
},
|
||||
"scripts": [
|
||||
"cdn\\.inspectlet\\.com"
|
||||
],
|
||||
"website": "https://www.inspectlet.com/"
|
||||
},
|
||||
"Instabot": {
|
||||
"cats": [
|
||||
5,
|
||||
10,
|
||||
32,
|
||||
52,
|
||||
58
|
||||
],
|
||||
"description": "Instabot is a conversion chatbot that understands your users, and curates information, answers questions, captures contacts, and books meetings instantly.",
|
||||
"icon": "Instabot.png",
|
||||
"js": {
|
||||
"Instabot": ""
|
||||
},
|
||||
"scripts": "/rokoInstabot\\.js",
|
||||
"website": "https://instabot.io/"
|
||||
},
|
||||
"Instana": {
|
||||
"cats": [
|
||||
10,
|
||||
13,
|
||||
78
|
||||
],
|
||||
"description": "Instana is a Kubernetes-native APM tool which is built for new-stack including Microservices and lately Serverless but also supports the existing VM based stacks including several supported technologies.",
|
||||
"icon": "Instana.svg",
|
||||
"js": {
|
||||
"ineum": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "eum\\.instana\\.io",
|
||||
"website": "https://www.instana.com"
|
||||
},
|
||||
"InstantCMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"InstantCMS[logdate]": ""
|
||||
},
|
||||
"cpe": "cpe:/a:instantcms:instantcms",
|
||||
"icon": "InstantCMS.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "InstantCMS"
|
||||
},
|
||||
"website": "http://www.instantcms.ru"
|
||||
},
|
||||
"InstantClick": {
|
||||
"cats": [
|
||||
59,
|
||||
92
|
||||
],
|
||||
"description": "InstantClick is a JavaScript library that speeds up your website, making navigation faster.",
|
||||
"icon": "InstantClick.svg",
|
||||
"js": {
|
||||
"InstantClick": ""
|
||||
},
|
||||
"oss": true,
|
||||
"scripts": "instantclick\\.min\\.js",
|
||||
"website": "http://instantclick.io/"
|
||||
},
|
||||
"Instapage": {
|
||||
"cats": [
|
||||
51,
|
||||
74,
|
||||
10
|
||||
],
|
||||
"description": "Instapage is a cloud-based landing page platform designed for marketing teams and agencies.",
|
||||
"icon": "Instapage.svg",
|
||||
"implies": [
|
||||
"Lua",
|
||||
"Node.js"
|
||||
],
|
||||
"js": {
|
||||
"_instapageSnowplow": "",
|
||||
"instapageSp": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"cdn\\.instapagemetrics\\.com",
|
||||
"heatmap-events-collector\\.instapage\\.com"
|
||||
],
|
||||
"website": "https://instapage.com"
|
||||
},
|
||||
"Intel Active Management Technology": {
|
||||
"cats": [
|
||||
22,
|
||||
46
|
||||
],
|
||||
"cpe": "cpe:/a:intel:active_management_technology",
|
||||
"description": "Intel Active Management Technology (AMT) is a proprietary remote management and control system for personal computers with Intel CPUs.",
|
||||
"headers": {
|
||||
"Server": "Intel\\(R\\) Active Management Technology(?: ([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Intel Active Management Technology.png",
|
||||
"website": "http://intel.com"
|
||||
},
|
||||
"IntenseDebate": {
|
||||
"cats": [
|
||||
15
|
||||
],
|
||||
"description": "IntenseDebate is a blog commenting system that supports Typepad, Blogger and Wordpress blogs. The system allows blog owners to track and moderate comments from one place with features like threading, comment analytics, user reputation, and comment aggregation.",
|
||||
"icon": "IntenseDebate.png",
|
||||
"scripts": "intensedebate\\.com",
|
||||
"website": "http://intensedebate.com"
|
||||
},
|
||||
"Intercom": {
|
||||
"cats": [
|
||||
52,
|
||||
53
|
||||
],
|
||||
"description": "Intercom is an American software company that produces a messaging platform which allows businesses to communicate with prospective and existing customers within their app, on their website, through social media, or via email.",
|
||||
"icon": "Intercom.svg",
|
||||
"js": {
|
||||
"Intercom": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "(?:api\\.intercom\\.io/api|static\\.intercomcdn\\.com/intercom\\.v1)",
|
||||
"website": "https://www.intercom.com"
|
||||
},
|
||||
"Intercom Articles": {
|
||||
"cats": [
|
||||
4
|
||||
],
|
||||
"description": "Intercom Articles is a tool to create, organise and publish help articles.",
|
||||
"html": "<a href=\"https://www.intercom.com/intercom-link[^\"]+solution=customer-support[^>]+>We run on Intercom",
|
||||
"icon": "Intercom.svg",
|
||||
"website": "https://www.intercom.com/articles"
|
||||
},
|
||||
"Intershop": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<ish-root",
|
||||
"icon": "Intershop.png",
|
||||
"scripts": "(?:is-bin|INTERSHOP)",
|
||||
"website": "http://intershop.com"
|
||||
},
|
||||
"Invenio": {
|
||||
"cats": [
|
||||
50
|
||||
],
|
||||
"cookies": {
|
||||
"INVENIOSESSION": ""
|
||||
},
|
||||
"description": "Invenio is an open-source software framework for large-scale digital repositories that provides the tools for management of digital assets in an institutional repository and research data management systems.",
|
||||
"html": "(?:Powered by|System)\\s+(?:CERN )?<a (?:class=\"footer\" )?href=\"http://(?:cdsware\\.cern\\.ch(?:/invenio)?|invenio-software\\.org|cern\\.ch/invenio)(?:/)?\">(?:CDS )?Invenio</a>\\s*v?([\\d\\.]+)?\\;version:\\1",
|
||||
"icon": "Invenio.png",
|
||||
"website": "http://invenio-software.org"
|
||||
},
|
||||
"Inveon": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"INV.Customer": "\\;confidence:50",
|
||||
"inveonSessionId": ""
|
||||
},
|
||||
"description": "Inveon is a technology company that has been delivering ecommerce infrastructure software and mcommerce applications.",
|
||||
"icon": "Inveon.svg",
|
||||
"js": {
|
||||
"InvApp": "\\;confidence:50",
|
||||
"invTagManagerParams": ""
|
||||
},
|
||||
"scripts": "Scripts/_app/Inv(?:\\w+)\\.js\\?v=(.+)$\\;version:\\1",
|
||||
"website": "https://www.inveon.com"
|
||||
},
|
||||
"Ionic": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"icon": "ionic.png",
|
||||
"js": {
|
||||
"Ionic.config": "",
|
||||
"Ionic.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"website": "https://ionicframework.com"
|
||||
},
|
||||
"Ionicons": {
|
||||
"cats": [
|
||||
17
|
||||
],
|
||||
"description": "Ionicons is an open-source icon set crafted for web, iOS, Android, and desktop apps.",
|
||||
"html": "<link[^>]* href=[^>]+ionicons(?:\\.min)?\\.css",
|
||||
"icon": "Ionicons.png",
|
||||
"website": "http://ionicons.com"
|
||||
},
|
||||
"Irroba": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<a[^>]*href=\"https://www\\.irroba\\.com\\.br",
|
||||
"icon": "irroba.svg",
|
||||
"website": "https://www.irroba.com.br/"
|
||||
},
|
||||
"Isotope": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"description": "Isotope.js is a JavaScript library that makes it easy to sort, filter, and add Masonry layouts to items on a webpage.",
|
||||
"icon": "Isotope.svg",
|
||||
"js": {
|
||||
"Isotope": "",
|
||||
"init_isotope": ""
|
||||
},
|
||||
"oss": true,
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium",
|
||||
"onetime"
|
||||
],
|
||||
"website": "https://isotope.metafizzy.co"
|
||||
},
|
||||
"Iterable": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Iterable is a cross-channel marketing platform that powers unified customer experiences.",
|
||||
"icon": "Iterable.png",
|
||||
"js": {
|
||||
"iterableAnalytics": ""
|
||||
},
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"js\\.iterable\\.com"
|
||||
],
|
||||
"website": "https://iterable.com/"
|
||||
},
|
||||
"Izooto": {
|
||||
"cats": [
|
||||
32,
|
||||
5
|
||||
],
|
||||
"description": "iZooto is a user engagement and retention tool that leverages web push notifications to help business to drive repeat traffic, leads and sales.",
|
||||
"icon": "Izooto.png",
|
||||
"js": {
|
||||
"Izooto": "",
|
||||
"_izooto": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cdn\\.izooto\\.\\w+",
|
||||
"website": "https://www.izooto.com"
|
||||
},
|
||||
"iEXExchanger": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"iexexchanger_session": ""
|
||||
},
|
||||
"icon": "iEXExchanger.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"Apache",
|
||||
"Angular"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "iEXExchanger"
|
||||
},
|
||||
"website": "https://exchanger.iexbase.com"
|
||||
},
|
||||
"iPresta": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "iPresta.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"PrestaShop"
|
||||
],
|
||||
"meta": {
|
||||
"designer": "iPresta"
|
||||
},
|
||||
"website": "http://ipresta.ir"
|
||||
},
|
||||
"iWeb": {
|
||||
"cats": [
|
||||
20
|
||||
],
|
||||
"description": "iWeb is a web site creation tool.",
|
||||
"icon": "iWeb.png",
|
||||
"meta": {
|
||||
"generator": "^iWeb( [\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"website": "http://apple.com/ilife/iweb"
|
||||
},
|
||||
"ikiwiki": {
|
||||
"cats": [
|
||||
8
|
||||
],
|
||||
"description": "ikiwiki is a free and open-source wiki application.",
|
||||
"html": [
|
||||
"<link rel=\"alternate\" type=\"application/x-wiki\" title=\"Edit this page\" href=\"[^\"]*/ikiwiki\\.cgi",
|
||||
"<a href=\"/(?:cgi-bin/)?ikiwiki\\.cgi\\?do="
|
||||
],
|
||||
"icon": "ikiwiki.png",
|
||||
"website": "http://ikiwiki.info"
|
||||
},
|
||||
"imperia CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"html": "<imp:live-info sysid=\"[0-9a-f-]+\"(?: node_id=\"[0-9/]*\")? *\\/>",
|
||||
"icon": "imperiaCMS.svg",
|
||||
"implies": "Perl",
|
||||
"meta": {
|
||||
"GENERATOR": "^IMPERIA ([0-9.]{2,3})\\;version:\\1",
|
||||
"X-Imperia-Live-Info": ""
|
||||
},
|
||||
"url": "imperia/md/",
|
||||
"website": "https://www.pirobase-imperia.com/de/produkte/produktuebersicht/imperia-cms"
|
||||
},
|
||||
"ip-api": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"icon": "ip-api.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ip-api.com/",
|
||||
"xhr": "ip-api\\.com/"
|
||||
},
|
||||
"ip-label": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "iplabel.svg",
|
||||
"js": {
|
||||
"clobs": ""
|
||||
},
|
||||
"scripts": "clobs\\.js",
|
||||
"website": "http://www.ip-label.com"
|
||||
},
|
||||
"ipapi": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipapi is a real-time geolocation and reverse IP lookup REST API.",
|
||||
"icon": "ipapi.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ipapi.com",
|
||||
"xhr": "api\\.ipapi\\.com"
|
||||
},
|
||||
"ipapi.co": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipapi.co is a web analytics provider with IP address lookup and location API.",
|
||||
"icon": "ipapi.co.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ipapi.co",
|
||||
"xhr": "ipapi\\.co/"
|
||||
},
|
||||
"ipdata": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipdata is a JSON IP Address Geolocation API that allows to lookup the location of both IPv4 and IPv6.",
|
||||
"icon": "ipdata.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"recurring",
|
||||
"low"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ipdata.co/",
|
||||
"xhr": "api\\.ipdata\\.co"
|
||||
},
|
||||
"ipgeolocation": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipgeolocation is an IP Geolocation API and Accurate IP Lookup Database.",
|
||||
"icon": "ipgeolocation.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"recurring",
|
||||
"mid"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ipgeolocation.co/",
|
||||
"xhr": "api\\.ipgeolocation\\.io"
|
||||
},
|
||||
"ipify": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipify is a service which provide public IP address API, IP geolocation API, VPN and Proxy detection API products.",
|
||||
"icon": "ipify.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"payg",
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.ipify\\.org",
|
||||
"website": "https://ipify.org",
|
||||
"xhr": "(?:api|api64|geo)\\.ipify\\.org"
|
||||
},
|
||||
"ipstack": {
|
||||
"cats": [
|
||||
79
|
||||
],
|
||||
"description": "ipstack is a real-time IP to geolocation API capable of looking at location data and assessing security threats originating from risky IP addresses.",
|
||||
"icon": "ipstack.png",
|
||||
"js": {
|
||||
"ENV.ipStackAccessToken": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://ipstack.com",
|
||||
"xhr": "api\\.ipstack\\.com"
|
||||
},
|
||||
"iubenda": {
|
||||
"cats": [
|
||||
67
|
||||
],
|
||||
"icon": "iubenda.png",
|
||||
"scripts": [
|
||||
"iubenda\\.com/cookie-solution/confs/js/"
|
||||
],
|
||||
"website": "https://www.iubenda.com/"
|
||||
}
|
||||
}
|
@ -0,0 +1,642 @@
|
||||
{
|
||||
"J2Store": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "J2Store is a Joomla shopping cart and ecommerce extension.",
|
||||
"icon": "j2store.png",
|
||||
"js": {
|
||||
"j2storeURL": ""
|
||||
},
|
||||
"requires": "Joomla",
|
||||
"website": "https://www.j2store.org/"
|
||||
},
|
||||
"JANet": {
|
||||
"cats": [
|
||||
71
|
||||
],
|
||||
"description": "JANet is an affiliate marketing network.",
|
||||
"dom": "img[src*='.j-a-net.jp'],img[data-src*='.j-a-net.jp']",
|
||||
"icon": "JANet.png",
|
||||
"website": "https://j-a-net.jp"
|
||||
},
|
||||
"JAlbum": {
|
||||
"cats": [
|
||||
7
|
||||
],
|
||||
"description": "jAlbum is across-platform photo website software for creating and uploading galleries from images and videos.",
|
||||
"icon": "JAlbum.png",
|
||||
"implies": "Java",
|
||||
"meta": {
|
||||
"generator": "JAlbum( [\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"website": "http://jalbum.net/en"
|
||||
},
|
||||
"JBoss Application Server": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "JBoss(?:-([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "JBoss Application Server.png",
|
||||
"website": "http://jboss.org/jbossas.html"
|
||||
},
|
||||
"JBoss Web": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"excludes": "Apache Tomcat",
|
||||
"headers": {
|
||||
"X-Powered-By": "JBossWeb(?:-([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "JBoss Web.png",
|
||||
"implies": "JBoss Application Server",
|
||||
"website": "http://jboss.org/jbossweb"
|
||||
},
|
||||
"JET Enterprise": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"headers": {
|
||||
"powered": "jet-enterprise"
|
||||
},
|
||||
"icon": "JET Enterprise.svg",
|
||||
"website": "http://www.jetecommerce.com.br/"
|
||||
},
|
||||
"JS Charts": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"icon": "JS Charts.png",
|
||||
"js": {
|
||||
"JSChart": ""
|
||||
},
|
||||
"scripts": "jscharts.{0,32}\\.js",
|
||||
"website": "http://www.jscharts.com"
|
||||
},
|
||||
"JSEcoin": {
|
||||
"cats": [
|
||||
56
|
||||
],
|
||||
"description": "JSEcoin is a way to mine, receive payments for your goods or services and transfer cryptocurrency",
|
||||
"icon": "JSEcoin.png",
|
||||
"js": {
|
||||
"jseMine": ""
|
||||
},
|
||||
"scripts": "^(?:https):?//load\\.jsecoin\\.com/load/",
|
||||
"website": "https://jsecoin.com/"
|
||||
},
|
||||
"JShop": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "JShop is the ecommerce database solution marketed by Whorl Ltd. worldwide.",
|
||||
"icon": "JShop.svg",
|
||||
"js": {
|
||||
"jss_1stepDeliveryType": "",
|
||||
"jss_1stepFillShipping": ""
|
||||
},
|
||||
"website": "http://www.whorl.co.uk"
|
||||
},
|
||||
"JTL Shop": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"JTLSHOP": ""
|
||||
},
|
||||
"description": "JTL Shop is an ecommerce product created by JTL Software company.",
|
||||
"html": "(?:<input[^>]+name=\"JTLSHOP|<a href=\"jtl\\.php)",
|
||||
"icon": "JTL Shop.svg",
|
||||
"website": "https://www.jtl-software.de/online-shopsystem"
|
||||
},
|
||||
"JW Player": {
|
||||
"cats": [
|
||||
14
|
||||
],
|
||||
"description": "JW Player is a online video player with video engagement analytics, custom video player skins, and live video streaming capability.",
|
||||
"dom": "div[data-video-provider*=jwplayer]",
|
||||
"icon": "JW Player.svg",
|
||||
"js": {
|
||||
"jwDefaults": "",
|
||||
"jwplayer": "",
|
||||
"jwplayerApiUrl": "",
|
||||
"webpackJsonpjwplayer": ""
|
||||
},
|
||||
"oss": true,
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"\\.jwplayer\\.com",
|
||||
"\\.jwpcdn\\.com"
|
||||
],
|
||||
"website": "https://www.jwplayer.com",
|
||||
"xhr": "\\.jwpsrv\\.com"
|
||||
},
|
||||
"Jahia DX": {
|
||||
"cats": [
|
||||
1,
|
||||
47
|
||||
],
|
||||
"html": "<script id=\"staticAssetAggregatedJavascrip",
|
||||
"icon": "JahiaDX.svg",
|
||||
"website": "http://www.jahia.com/dx"
|
||||
},
|
||||
"Jalios": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "Jalios.png",
|
||||
"meta": {
|
||||
"generator": "Jalios"
|
||||
},
|
||||
"website": "http://www.jalios.com"
|
||||
},
|
||||
"Java": {
|
||||
"cats": [
|
||||
27
|
||||
],
|
||||
"cookies": {
|
||||
"JSESSIONID": ""
|
||||
},
|
||||
"description": "Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible.",
|
||||
"icon": "Java.png",
|
||||
"website": "http://java.com"
|
||||
},
|
||||
"Java Servlet": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "Servlet(?:\\/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Java.png",
|
||||
"implies": "Java",
|
||||
"website": "http://www.oracle.com/technetwork/java/index-jsp-135475.html"
|
||||
},
|
||||
"JavaScript Infovis Toolkit": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"icon": "JavaScript Infovis Toolkit.png",
|
||||
"js": {
|
||||
"$jit": "",
|
||||
"$jit.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "jit(?:-yc)?\\.js",
|
||||
"website": "https://philogb.github.io/jit/"
|
||||
},
|
||||
"JavaServer Faces": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "JSF(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "JavaServer Faces.png",
|
||||
"implies": "Java",
|
||||
"website": "http://javaserverfaces.java.net"
|
||||
},
|
||||
"JavaServer Pages": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "JSP(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Java.png",
|
||||
"implies": "Java",
|
||||
"website": "http://www.oracle.com/technetwork/java/javaee/jsp/index.html"
|
||||
},
|
||||
"Javadoc": {
|
||||
"cats": [
|
||||
4
|
||||
],
|
||||
"description": "Javadoc is a tool used for generating Java code documentation in HTML format from Java source code.",
|
||||
"html": "<!-- Generated by javadoc -->",
|
||||
"icon": "Java.png",
|
||||
"website": "https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html"
|
||||
},
|
||||
"Jekyll": {
|
||||
"cats": [
|
||||
57
|
||||
],
|
||||
"cpe": "cpe:/a:jekyllrb:jekyll",
|
||||
"description": "Jekyll is a blog-aware, static site generator for personal, project, or organisation sites.",
|
||||
"html": [
|
||||
"Powered by <a href=\"https?://jekyllrb\\.com\"[^>]*>Jekyll</",
|
||||
"<!-- Created with Jekyll Now -",
|
||||
"<!-- Begin Jekyll SEO tag"
|
||||
],
|
||||
"icon": "Jekyll.png",
|
||||
"meta": {
|
||||
"generator": "Jekyll (v[\\d.]+)?\\;version:\\1"
|
||||
},
|
||||
"website": "http://jekyllrb.com"
|
||||
},
|
||||
"Jenkins": {
|
||||
"cats": [
|
||||
44
|
||||
],
|
||||
"description": "Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration (CI) purposes.",
|
||||
"headers": {
|
||||
"X-Jenkins": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"html": "<span class=\"jenkins_ver\"><a href=\"https://jenkins\\.io/\">Jenkins ver\\. ([\\d.]+)\\;version:\\1",
|
||||
"icon": "Jenkins.png",
|
||||
"implies": "Java",
|
||||
"js": {
|
||||
"jenkinsCIGlobal": "",
|
||||
"jenkinsRules": ""
|
||||
},
|
||||
"website": "https://jenkins.io/"
|
||||
},
|
||||
"Jetshop": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<(?:div|aside) id=\"jetshop-branding\">",
|
||||
"icon": "Jetshop.png",
|
||||
"js": {
|
||||
"JetshopData": ""
|
||||
},
|
||||
"website": "http://jetshop.se"
|
||||
},
|
||||
"Jetty": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Jetty(?:\\(([\\d\\.]*\\d+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Jetty.png",
|
||||
"implies": "Java",
|
||||
"website": "http://www.eclipse.org/jetty"
|
||||
},
|
||||
"Jibres": {
|
||||
"cats": [
|
||||
6,
|
||||
55
|
||||
],
|
||||
"cookies": {
|
||||
"jibres": ""
|
||||
},
|
||||
"description": "Jibres is an ecommerce solution with an online store builder and Point-of-Sale (PoS) software.",
|
||||
"headers": {
|
||||
"X-Powered-By": "Jibres"
|
||||
},
|
||||
"icon": "Jibres.svg",
|
||||
"js": {
|
||||
"jibres": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Jibres"
|
||||
},
|
||||
"scripts": "/jibres\\.js",
|
||||
"website": "https://jibres.com"
|
||||
},
|
||||
"Jimdo": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "Jimdo is a website-builder and all-in-one hosting solution, designed to enable users to build their own websites.",
|
||||
"headers": {
|
||||
"X-Jimdo-Instance": "",
|
||||
"X-Jimdo-Wid": ""
|
||||
},
|
||||
"icon": "jimdo.png",
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"url": "\\.jimdo\\.com/",
|
||||
"website": "https://www.jimdo.com"
|
||||
},
|
||||
"Jirafe": {
|
||||
"cats": [
|
||||
10,
|
||||
32
|
||||
],
|
||||
"icon": "Jirafe.png",
|
||||
"js": {
|
||||
"jirafe": ""
|
||||
},
|
||||
"scripts": "/jirafe\\.js",
|
||||
"website": "https://docs.jirafe.com"
|
||||
},
|
||||
"Jitsi": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "Jitsi is a free and open-source multiplatform voice (VoIP), videoconferencing and instant messaging applications for the web platform.",
|
||||
"icon": "Jitsi.png",
|
||||
"scripts": "lib-jitsi-meet.*\\.js",
|
||||
"website": "https://jitsi.org"
|
||||
},
|
||||
"Jive": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"headers": {
|
||||
"X-JIVE-USER-ID": "",
|
||||
"X-JSL": "",
|
||||
"X-Jive-Flow-Id": "",
|
||||
"X-Jive-Request-Id": "",
|
||||
"x-jive-chrome-wrapped": ""
|
||||
},
|
||||
"icon": "Jive.png",
|
||||
"website": "http://www.jivesoftware.com"
|
||||
},
|
||||
"JivoChat": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "JivoChat is a live chat solution for websites offering customizable web and mobile chat widgets.",
|
||||
"icon": "JivoChat.png",
|
||||
"js": {
|
||||
"jivo_api": "",
|
||||
"jivo_version": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"recurring",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.jivosite\\.com",
|
||||
"website": "https://www.jivosite.com"
|
||||
},
|
||||
"JobberBase": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"icon": "JobberBase.png",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"Jobber": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Jobberbase"
|
||||
},
|
||||
"website": "http://www.jobberbase.com"
|
||||
},
|
||||
"JoomShopping": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "JoomShopping is an open-source ecommerce plugin for Joomla.",
|
||||
"icon": "JoomShopping.png",
|
||||
"implies": "Joomla",
|
||||
"js": {
|
||||
"joomshoppingVideoHtml5": ""
|
||||
},
|
||||
"oss": true,
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"onetime"
|
||||
],
|
||||
"scripts": "/components/com_jshopping/",
|
||||
"website": "https://www.webdesigner-profi.de/joomla-webdesign/joomla-shop"
|
||||
},
|
||||
"Joomla": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:joomla:joomla",
|
||||
"description": "Joomla is a free and open-source content management system for publishing web content.",
|
||||
"headers": {
|
||||
"X-Content-Encoded-By": "Joomla! ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"html": "(?:<div[^>]+id=\"wrapper_r\"|<(?:link|script)[^>]+(?:feed|components)/com_|<table[^>]+class=\"pill)\\;confidence:50",
|
||||
"icon": "Joomla.svg",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"Joomla": "",
|
||||
"jcomments": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Joomla!(?: ([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"oss": true,
|
||||
"url": "option=com_",
|
||||
"website": "https://www.joomla.org"
|
||||
},
|
||||
"Judge.me": {
|
||||
"cats": [
|
||||
90
|
||||
],
|
||||
"description": "Judge.me powers product reviews on ecommerce stores.",
|
||||
"icon": "Judge.svg",
|
||||
"js": {
|
||||
"judgeme": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cdn\\.judge\\.me",
|
||||
"website": "https://judge.me/"
|
||||
},
|
||||
"Jumbo": {
|
||||
"cats": [
|
||||
92
|
||||
],
|
||||
"description": "Jumbo is a page speed optimizer app for Shopify based sites.",
|
||||
"icon": "Jumbo.png",
|
||||
"implies": "Shopify",
|
||||
"scripts": "mt\\.tryjumbo\\.com",
|
||||
"website": "https://www.tryjumbo.com/"
|
||||
},
|
||||
"Jumpseller": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Jumpseller is a cloud ecommerce solution for small businesses.",
|
||||
"icon": "Jumpseller.svg",
|
||||
"js": {
|
||||
"Jumpseller": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"assets\\.jumpseller\\.\\w+/",
|
||||
"jumpseller-apps\\.herokuapp\\.\\w+/"
|
||||
],
|
||||
"website": "https://jumpseller.com"
|
||||
},
|
||||
"Justo": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Justo is a subscription-based software that allows anyone to set up an online store and sell their products with delivery options.",
|
||||
"icon": "Justo.svg",
|
||||
"pricing": [
|
||||
"high",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.getjusto\\.com/",
|
||||
"website": "https://www.getjusto.com"
|
||||
},
|
||||
"jComponent": {
|
||||
"cats": [
|
||||
12,
|
||||
59
|
||||
],
|
||||
"icon": "jComponent.png",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"MAIN.version": ".*\\;version:\\1"
|
||||
},
|
||||
"website": "https://componentator.com"
|
||||
},
|
||||
"jQTouch": {
|
||||
"cats": [
|
||||
26
|
||||
],
|
||||
"description": "jQTouch is an open-source Zepto/ JQuery plugin with native animations, automatic navigation, and themes for mobile WebKit browsers like iPhone, G1 (Android), and Palm Pre.",
|
||||
"icon": "jQTouch.png",
|
||||
"js": {
|
||||
"jQT": ""
|
||||
},
|
||||
"scripts": "jqtouch.*\\.js",
|
||||
"website": "http://jqtouch.com"
|
||||
},
|
||||
"jQuery": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"cpe": "cpe:/a:jquery:jquery",
|
||||
"description": "jQuery is a JavaScript library which is a free, open-source software designed to simplify HTML DOM tree traversal and manipulation, as well as event handling, CSS animation, and Ajax.",
|
||||
"icon": "jQuery.svg",
|
||||
"js": {
|
||||
"$.fn.jquery": "([\\d.]+)\\;version:\\1",
|
||||
"jQuery.fn.jquery": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"scripts": [
|
||||
"jquery",
|
||||
"/jquery(-(\\d+\\.\\d+\\.\\d+))[/.-];version:\\1",
|
||||
"/(\\d+\\.\\d+\\.\\d+)/jquery[/.-];version:\\1"
|
||||
],
|
||||
"website": "https://jquery.com"
|
||||
},
|
||||
"jQuery DevBridge Autocomplete": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"description": "Ajax Autocomplete for jQuery allows you to easily create autocomplete/autosuggest boxes for text input fields.",
|
||||
"icon": "jQuery.svg",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"$.devbridgeAutocomplete": "",
|
||||
"jQuery.devbridgeAutocomplete": ""
|
||||
},
|
||||
"scripts": [
|
||||
"/devbridgeAutocomplete(?:-min)?\\.js",
|
||||
"/jquery\\.devbridge-autocomplete/([0-9.]+)/jquery\\.autocomplete(?:.min)?\\.js\\;version:\\1"
|
||||
],
|
||||
"website": "https://www.devbridge.com/sourcery/components/jquery-autocomplete/"
|
||||
},
|
||||
"jQuery Migrate": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"description": "Query Migrate is a javascript library that allows you to preserve the compatibility of your jQuery code developed for versions of jQuery older than 1.9.",
|
||||
"icon": "jQuery.svg",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"jQuery.migrateVersion": "([\\d.]+)\\;version:\\1",
|
||||
"jQuery.migrateWarnings": "",
|
||||
"jqueryMigrate": ""
|
||||
},
|
||||
"scripts": "jquery[.-]migrate(?:-([\\d.]+))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1?\\1:\\2",
|
||||
"website": "https://github.com/jquery/jquery-migrate"
|
||||
},
|
||||
"jQuery Mobile": {
|
||||
"cats": [
|
||||
26
|
||||
],
|
||||
"description": "jQuery Mobile is a HTML5-based user interface system designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices.",
|
||||
"icon": "jQuery Mobile.svg",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"jQuery.mobile.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "jquery[.-]mobile(?:-([\\d.]))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1?\\1:\\2",
|
||||
"website": "https://jquerymobile.com"
|
||||
},
|
||||
"jQuery Sparklines": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"description": "jQuery Sparklines is a plugin that generates sparklines (small inline charts) directly in the browser using data supplied either inline in the HTML, or via javascript.",
|
||||
"implies": "jQuery",
|
||||
"scripts": "jquery\\.sparkline.*\\.js",
|
||||
"website": "http://omnipotent.net/jquery.sparkline/"
|
||||
},
|
||||
"jQuery UI": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"cpe": "cpe:/a:jquery:jquery_ui",
|
||||
"description": "jQuery UI is a collection of GUI widgets, animated visual effects, and themes implemented with jQuery, Cascading Style Sheets, and HTML.",
|
||||
"icon": "jQuery UI.svg",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"jQuery.ui.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": [
|
||||
"jquery-ui[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",
|
||||
"([\\d.]+)/jquery-ui(?:\\.min)?\\.js\\;version:\\1",
|
||||
"jquery-ui.*\\.js"
|
||||
],
|
||||
"website": "http://jqueryui.com"
|
||||
},
|
||||
"jQuery-pjax": {
|
||||
"cats": [
|
||||
26
|
||||
],
|
||||
"description": "jQuery PJAX is a plugin that uses AJAX and pushState.",
|
||||
"html": "<div[^>]+data-pjax-container",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"jQuery.pjax": ""
|
||||
},
|
||||
"meta": {
|
||||
"pjax-push": "",
|
||||
"pjax-replace": "",
|
||||
"pjax-timeout": ""
|
||||
},
|
||||
"scripts": "jquery[.-]pjax(?:-([\\d.]))?(?:\\.min)?\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1?\\1:\\2",
|
||||
"website": "https://github.com/defunkt/jquery-pjax"
|
||||
},
|
||||
"jqPlot": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"icon": "jqPlot.png",
|
||||
"implies": "jQuery",
|
||||
"scripts": "jqplot.*\\.js",
|
||||
"website": "http://www.jqplot.com"
|
||||
},
|
||||
"jsDelivr": {
|
||||
"cats": [
|
||||
31
|
||||
],
|
||||
"description": "JSDelivr is a free public CDN for open-source projects. It can serve web files directly from the npm registry and GitHub repositories without any configuration.",
|
||||
"html": "<link [^>]*?href=\"?[a-zA-Z]*?:?//cdn\\.jsdelivr\\.net/",
|
||||
"icon": "jsdelivr-icon.svg",
|
||||
"scripts": "//cdn\\.jsdelivr\\.net/",
|
||||
"website": "https://www.jsdelivr.com/"
|
||||
}
|
||||
}
|
@ -0,0 +1,638 @@
|
||||
{
|
||||
"K2": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"html": "<!--(?: JoomlaWorks \"K2\"| Start K2)",
|
||||
"icon": "K2.png",
|
||||
"implies": "Joomla",
|
||||
"js": {
|
||||
"K2RatingURL": ""
|
||||
},
|
||||
"website": "https://getk2.org"
|
||||
},
|
||||
"KISSmetrics": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "KISSmetrics.png",
|
||||
"js": {
|
||||
"KM_COOKIE_DOMAIN": ""
|
||||
},
|
||||
"website": "https://www.kissmetrics.com"
|
||||
},
|
||||
"KQS.store": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "KQS.store is an ecommerce software.",
|
||||
"dom": [
|
||||
"a[href*='kqsdesign.pl'][target='_blank']",
|
||||
"a[href*='kqs.pl'][target='_blank']",
|
||||
"#kqs-box,kqs-cookie"
|
||||
],
|
||||
"icon": "KQS.store.png",
|
||||
"js": {
|
||||
"kqs_box": "\\;confidence:50",
|
||||
"kqs_off": "\\;confidence:50"
|
||||
},
|
||||
"pricing": [
|
||||
"onetime"
|
||||
],
|
||||
"saas": false,
|
||||
"website": "https://www.kqs.pl"
|
||||
},
|
||||
"KaTeX": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"description": "KaTeX is a cross-browser JavaScript library that displays mathematical notation in web browsers.",
|
||||
"dom": {
|
||||
"link[href*=katex]": {
|
||||
"attributes": {
|
||||
"href": "katex(?:\\.min)?\\.css"
|
||||
}
|
||||
}
|
||||
},
|
||||
"icon": "KaTeX.svg",
|
||||
"js": {
|
||||
"katex": "",
|
||||
"katex.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"oss": true,
|
||||
"scripts": "katex(@|/)[0-9.]+(?:/dist)?/katex(?:\\.min)?\\.(mjs|js|css)\\;version:\\1",
|
||||
"website": "https://katex.org/"
|
||||
},
|
||||
"Kajabi": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"_kjb_session": ""
|
||||
},
|
||||
"icon": "Kajabi.svg",
|
||||
"js": {
|
||||
"Kajabi": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://newkajabi.com"
|
||||
},
|
||||
"Kameleoon": {
|
||||
"cats": [
|
||||
74
|
||||
],
|
||||
"cookies": {
|
||||
"kameleoonVisitorCode": ""
|
||||
},
|
||||
"description": "Kameleoon is a personalisation technology platform for real-time omnichannel optimisation and conversion.",
|
||||
"dom": "link[href*='.kameleoon.eu/kameleoon.js']",
|
||||
"icon": "Kameleoon.svg",
|
||||
"js": {
|
||||
"Kameleoon.Gatherer.SCRIPT_VERSION": "(.+)\\;version:\\1",
|
||||
"kameleoonEndLoadTime": "",
|
||||
"kameleoonS": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.kameleoon\\.\\w+/kameleoon\\.js",
|
||||
"website": "https://kameleoon.com/"
|
||||
},
|
||||
"Kamva": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "Kamva.svg",
|
||||
"js": {
|
||||
"Kamva": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "[CK]amva"
|
||||
},
|
||||
"scripts": "cdn\\.mykamva\\.ir",
|
||||
"website": "https://kamva.ir"
|
||||
},
|
||||
"Karma": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"description": "Karma is a test runner for JavaScript that runs on Node.js.",
|
||||
"icon": "Karma.svg",
|
||||
"implies": "Node.js",
|
||||
"js": {
|
||||
"karma.vars.version": "(.+)\\;version:\\1"
|
||||
},
|
||||
"oss": true,
|
||||
"scripts": "karma\\.mdpcdn\\.com",
|
||||
"website": "https://karma-runner.github.io"
|
||||
},
|
||||
"Kartra": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Kartra is an online business platform that offers marketing and sales tools.",
|
||||
"dom": "form[action*='app.kartra.com']",
|
||||
"icon": "Kartra.png",
|
||||
"js": {
|
||||
"init_kartra_tracking": "",
|
||||
"kartra_tracking_loaded": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "app\\.kartra\\.com",
|
||||
"website": "https://home.kartra.com"
|
||||
},
|
||||
"Keap": {
|
||||
"cats": [
|
||||
53
|
||||
],
|
||||
"description": "Keap offers an email marketing and sales platform for small businesses, including products to manage customers, customer relationship management, marketing, and ecommerce.",
|
||||
"dom": "form[action*='property.infusionsoft.com']",
|
||||
"icon": "Keap.svg",
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "property\\.infusionsoft\\.com",
|
||||
"website": "https://keap.com",
|
||||
"xhr": "property\\.infusionsoft\\.com"
|
||||
},
|
||||
"Kemal": {
|
||||
"cats": [
|
||||
18,
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "Kemal"
|
||||
},
|
||||
"icon": "kemalcr.png",
|
||||
"website": "http://kemalcr.com"
|
||||
},
|
||||
"Kendo UI": {
|
||||
"cats": [
|
||||
66
|
||||
],
|
||||
"description": "Kendo UI is a HTML5 user interface framework for building interactive and high-performance websites and applications.",
|
||||
"html": "<link[^>]*\\s+href=[^>]*styles/kendo\\.common(?:\\.min)?\\.css[^>]*/>",
|
||||
"icon": "Kendo UI.png",
|
||||
"implies": "jQuery",
|
||||
"js": {
|
||||
"kendo": "",
|
||||
"kendo.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"website": "https://www.telerik.com/kendo-ui"
|
||||
},
|
||||
"Kentico CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"CMSPreferredCulture": ""
|
||||
},
|
||||
"cpe": "cpe:/a:kentico:kentico_cms",
|
||||
"description": "Kentico CMS is a web content management system for building websites, online stores, intranets, and Web 2.0 community sites.",
|
||||
"icon": "Kentico CMS.png",
|
||||
"js": {
|
||||
"CMS.Application": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Kentico CMS ([\\d.R]+ \\(build [\\d.]+\\))\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "/CMSPages/GetResource\\.ashx",
|
||||
"website": "http://www.kentico.com"
|
||||
},
|
||||
"Kerberos": {
|
||||
"cats": [
|
||||
16
|
||||
],
|
||||
"description": "Kerberos is an authentication method commonly used by Windows servers",
|
||||
"headers": {
|
||||
"WWW-Authenticate": "^Kerberos"
|
||||
},
|
||||
"website": "https://tools.ietf.org/html/rfc4559"
|
||||
},
|
||||
"Kestrel": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "^Kestrel"
|
||||
},
|
||||
"icon": "kestrel.svg",
|
||||
"implies": "Microsoft ASP.NET",
|
||||
"website": "https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/kestrel"
|
||||
},
|
||||
"KeyCDN": {
|
||||
"cats": [
|
||||
31
|
||||
],
|
||||
"description": "KeyCDN is a content delivery network (CDN).",
|
||||
"headers": {
|
||||
"Server": "^keycdn-engine$"
|
||||
},
|
||||
"icon": "KeyCDN.png",
|
||||
"website": "http://www.keycdn.com"
|
||||
},
|
||||
"Kibana": {
|
||||
"cats": [
|
||||
29,
|
||||
25
|
||||
],
|
||||
"cpe": "cpe:/a:elasticsearch:kibana",
|
||||
"description": "Kibana is an open-source data visualisation dashboard for Elasticsearch. It provides visualisation capabilities on top of the content indexed on an Elasticsearch cluster. Users can create bar, line and scatter plots, or pie charts and maps on top of large volumes of data.",
|
||||
"headers": {
|
||||
"kbn-name": "kibana",
|
||||
"kbn-version": "^([\\d.]+)$\\;version:\\1"
|
||||
},
|
||||
"html": "<title>Kibana</title>",
|
||||
"icon": "kibana.svg",
|
||||
"implies": [
|
||||
"Node.js",
|
||||
"Elasticsearch"
|
||||
],
|
||||
"url": "kibana#/dashboard/",
|
||||
"website": "http://www.elastic.co/products/kibana"
|
||||
},
|
||||
"Kibo Commerce": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Kibo Commerce is a enterprise ecommerce platform that offers a cloud-based, end-to-end commerce solution for retailers and branded manufacturers.",
|
||||
"icon": "Kibo.png",
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"scripts": "cdn-tp\\d+\\.mozu\\.com",
|
||||
"website": "https://kibocommerce.com"
|
||||
},
|
||||
"Kibo Personalization": {
|
||||
"cats": [
|
||||
76,
|
||||
74
|
||||
],
|
||||
"description": "Kibo Personalization is a omnichannel personalisation software powered by machine learning to deliver individualized customer experiences and powered by Monetate and Certona.",
|
||||
"icon": "Kibo.png",
|
||||
"js": {
|
||||
"BaynoteAPI": "",
|
||||
"BaynoteJSVersion": "",
|
||||
"monetate": "",
|
||||
"monetateQ": "",
|
||||
"monetateT": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"\\.monetate\\.net",
|
||||
"\\.baynote\\.net"
|
||||
],
|
||||
"website": "https://kibocommerce.com/personalization-software"
|
||||
},
|
||||
"KineticJS": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"icon": "KineticJS.png",
|
||||
"js": {
|
||||
"Kinetic": "",
|
||||
"Kinetic.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "kinetic(?:-v?([\\d.]+))?(?:\\.min)?\\.js\\;version:\\1",
|
||||
"website": "https://github.com/ericdrowell/KineticJS/"
|
||||
},
|
||||
"Kinsta": {
|
||||
"cats": [
|
||||
62,
|
||||
88
|
||||
],
|
||||
"headers": {
|
||||
"x-kinsta-cache": ""
|
||||
},
|
||||
"icon": "kinsta.svg",
|
||||
"implies": "WordPress",
|
||||
"website": "https://kinsta.com"
|
||||
},
|
||||
"Kiwi Sizing": {
|
||||
"cats": [
|
||||
76
|
||||
],
|
||||
"description": "Kiwi Sizing is a size chart and a recommender plugin on the Shopify platform.",
|
||||
"icon": "Kiwi Sizing.png",
|
||||
"js": {
|
||||
"KiwiSizing": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cdn\\.static\\.kiwisizing\\.com/",
|
||||
"website": "https://www.kiwisizing.com"
|
||||
},
|
||||
"Klarna Checkout": {
|
||||
"cats": [
|
||||
41,
|
||||
6,
|
||||
91
|
||||
],
|
||||
"cookies": {
|
||||
"ku1-sid": "",
|
||||
"ku1-vid": ""
|
||||
},
|
||||
"description": "Klarna Checkout is a complete payment solution where Klarna handles a store's entire checkout.",
|
||||
"icon": "Klarna.svg",
|
||||
"js": {
|
||||
"KlarnaOnsiteService": "",
|
||||
"_klarnaCheckout": ""
|
||||
},
|
||||
"pricing": [
|
||||
"payg",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.klarnaservices\\.com/lib\\.js",
|
||||
"website": "https://www.klarna.com/international/"
|
||||
},
|
||||
"Klaviyo": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Klaviyo is an email marketing platform for online businesses.",
|
||||
"icon": "Klaviyo.svg",
|
||||
"js": {
|
||||
"KlaviyoSubscribe": "",
|
||||
"klaviyo": ""
|
||||
},
|
||||
"scripts": "klaviyo\\.com",
|
||||
"website": "https://www.klaviyo.com/"
|
||||
},
|
||||
"Klevu": {
|
||||
"cats": [
|
||||
29
|
||||
],
|
||||
"description": "Klevu is a highly advanced AI-Powered search solution for ecommerce platforms.",
|
||||
"icon": "Klevu.png",
|
||||
"js": {
|
||||
"klevu_apiKey": "",
|
||||
"klevu_layout": "",
|
||||
"klevu_sessionId": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "js\\.klevu\\.\\w+/klevu-js-v([\\d.]+)\\;version:\\1",
|
||||
"website": "https://www.klevu.com"
|
||||
},
|
||||
"Knockout.js": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"icon": "Knockout.js.png",
|
||||
"js": {
|
||||
"ko.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"website": "http://knockoutjs.com"
|
||||
},
|
||||
"Ko-fi": {
|
||||
"cats": [
|
||||
5,
|
||||
41
|
||||
],
|
||||
"description": "Ko-fi is an online platform that helps content creators get the financial support.",
|
||||
"dom": "a[href*='ko-fi.com/'][target='_blank']",
|
||||
"icon": "Ko-fi.svg",
|
||||
"js": {
|
||||
"kofiwidget2": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "ko-fi\\.com/widgets",
|
||||
"website": "https://ko-fi.com"
|
||||
},
|
||||
"Koa": {
|
||||
"cats": [
|
||||
18,
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "^koa$"
|
||||
},
|
||||
"icon": "Koa.png",
|
||||
"implies": "Node.js",
|
||||
"website": "http://koajs.com"
|
||||
},
|
||||
"Koala Framework": {
|
||||
"cats": [
|
||||
1,
|
||||
18
|
||||
],
|
||||
"html": "<!--[^>]+This website is powered by Koala Web Framework CMS",
|
||||
"icon": "Koala Framework.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "^Koala Web Framework CMS"
|
||||
},
|
||||
"website": "http://koala-framework.org"
|
||||
},
|
||||
"KobiMaster": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "Kobimaster.png",
|
||||
"implies": "Microsoft ASP.NET",
|
||||
"js": {
|
||||
"kmGetSession": "",
|
||||
"kmPageInfo": ""
|
||||
},
|
||||
"website": "https://www.kobimaster.com.tr"
|
||||
},
|
||||
"Koha": {
|
||||
"cats": [
|
||||
50
|
||||
],
|
||||
"cpe": "cpe:/a:koha:koha",
|
||||
"description": "Koha is an open-source Integrated Library System (ILS).",
|
||||
"html": [
|
||||
"<input name=\"koha_login_context\" value=\"intranet\" type=\"hidden\">",
|
||||
"<a href=\"/cgi-bin/koha/"
|
||||
],
|
||||
"icon": "koha.png",
|
||||
"implies": "Perl",
|
||||
"js": {
|
||||
"KOHA": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "^Koha ([\\d.]+)$\\;version:\\1"
|
||||
},
|
||||
"website": "https://koha-community.org/"
|
||||
},
|
||||
"Kohana": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"cookies": {
|
||||
"kohanasession": ""
|
||||
},
|
||||
"cpe": "cpe:/a:kohanaframework:kohana",
|
||||
"headers": {
|
||||
"X-Powered-By": "Kohana Framework ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"icon": "Kohana.png",
|
||||
"implies": "PHP",
|
||||
"website": "http://kohanaframework.org"
|
||||
},
|
||||
"Koken": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"koken_referrer": ""
|
||||
},
|
||||
"html": [
|
||||
"<html lang=\"en\" class=\"k-source-essays k-lens-essays\">",
|
||||
"<!--\\s+KOKEN DEBUGGING"
|
||||
],
|
||||
"icon": "Koken.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "Koken ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"scripts": "koken(?:\\.js\\?([\\d.]+)|/storage)\\;version:\\1",
|
||||
"website": "http://koken.me"
|
||||
},
|
||||
"Komodo CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "Komodo CMS.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "^Komodo CMS"
|
||||
},
|
||||
"website": "http://www.komodocms.com"
|
||||
},
|
||||
"Konduto": {
|
||||
"cats": [
|
||||
16
|
||||
],
|
||||
"description": "Konduto is a fraud detection service for ecommerce.",
|
||||
"dom": "link[href*='.konduto.com']",
|
||||
"icon": "Konduto.png",
|
||||
"js": {
|
||||
"Konduto": "",
|
||||
"getKondutoID": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.k-analytix\\.com",
|
||||
"website": "https://www.konduto.com"
|
||||
},
|
||||
"Koobi": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"html": "<!--[^K>-]+Koobi ([a-z\\d.]+)\\;version:\\1",
|
||||
"icon": "Koobi.png",
|
||||
"meta": {
|
||||
"generator": "Koobi"
|
||||
},
|
||||
"website": "http://dream4.de/cms"
|
||||
},
|
||||
"Kooboo CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"headers": {
|
||||
"X-KoobooCMS-Version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"icon": "Kooboo CMS.png",
|
||||
"implies": "Microsoft ASP.NET",
|
||||
"scripts": "/Kooboo",
|
||||
"website": "http://kooboo.com"
|
||||
},
|
||||
"Kooomo": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Kooomo is a SaaS ecommerce platform with a focus on localisation and internationalisation.",
|
||||
"dom": "img[src*='.kooomo-cloud.com']",
|
||||
"icon": "Kooomo.svg",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "Kooomo(?: v([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.kooomo.com"
|
||||
},
|
||||
"Kotisivukone": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "Kotisivukone.png",
|
||||
"scripts": "kotisivukone(?:\\.min)?\\.js",
|
||||
"website": "http://www.kotisivukone.fi"
|
||||
},
|
||||
"Kount": {
|
||||
"cats": [
|
||||
10,
|
||||
16
|
||||
],
|
||||
"description": "Kount is a suite of fraud detection and prevention solutions for ecommerce businesses.",
|
||||
"icon": "Kount.svg",
|
||||
"js": {
|
||||
"ka.ClientSDK": "",
|
||||
"ka.collectData": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"shopify\\.kount\\.net/js"
|
||||
],
|
||||
"website": "https://kount.com"
|
||||
},
|
||||
"Kubernetes Dashboard": {
|
||||
"cats": [
|
||||
47
|
||||
],
|
||||
"cpe": "cpe:/a:kubernetes:kubernetes",
|
||||
"html": "<html ng-app=\"kubernetesDashboard\">",
|
||||
"icon": "Kubernetes.svg",
|
||||
"website": "https://kubernetes.io/"
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,137 @@
|
||||
{
|
||||
"Qualtrics": {
|
||||
"cats": [
|
||||
73
|
||||
],
|
||||
"description": "Qualtrics is an cloud-based platform for creating and distributing web-based surveys.",
|
||||
"icon": "Qualtrics.svg",
|
||||
"js": {
|
||||
"QSI.ClientSideTargeting": ""
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.qualtrics\\.com/",
|
||||
"website": "https://www.qualtrics.com"
|
||||
},
|
||||
"Quantcast Choice": {
|
||||
"cats": [
|
||||
67
|
||||
],
|
||||
"description": "Quantcast Choice is a free consent management platform to meet key privacy requirements stemming from ePrivacy Directive, GDPR, and CCPA.",
|
||||
"icon": "Quantcast.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "quantcast\\.mgr\\.consensu\\.org",
|
||||
"website": "https://www.quantcast.com/products/choice-consent-management-platform"
|
||||
},
|
||||
"Quantcast Measure": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "Quantcast Measure is an audience insights and analytics tool.",
|
||||
"icon": "Quantcast.png",
|
||||
"js": {
|
||||
"quantserve": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.quantserve\\.com/quant\\.js",
|
||||
"website": "https://www.quantcast.com/products/measure-audience-insights"
|
||||
},
|
||||
"Quantum Metric": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "Quantum Metric is a continuous product design platform that helps organizations build better products faster.",
|
||||
"icon": "Quantummetric.png",
|
||||
"saas": true,
|
||||
"scripts": "cdn\\.quantummetric\\.com",
|
||||
"website": "https://www.quantummetric.com/"
|
||||
},
|
||||
"Qubit": {
|
||||
"cats": [
|
||||
74,
|
||||
76
|
||||
],
|
||||
"description": "Qubit is a SaaS based persuasive personalisation at scale services.",
|
||||
"icon": "Qubit.png",
|
||||
"js": {
|
||||
"__qubit": "",
|
||||
"onQubitReady": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "static\\.goqubit\\.com",
|
||||
"website": "https://www.qubit.com"
|
||||
},
|
||||
"Question2Answer": {
|
||||
"cats": [
|
||||
15
|
||||
],
|
||||
"description": "Question2Answer (Q2A) is a popular open-source Q&A platform for PHP/MySQL.",
|
||||
"html": "<!-- Powered by Question2Answer",
|
||||
"icon": "question2answer.png",
|
||||
"implies": "PHP",
|
||||
"scripts": "\\./qa-content/qa-page\\.js\\?([0-9.]+)\\;version:\\1",
|
||||
"website": "http://www.question2answer.org"
|
||||
},
|
||||
"Quick.CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:opensolution:quick.cms",
|
||||
"html": "<a href=\"[^>]+opensolution\\.org/\">CMS by",
|
||||
"icon": "Quick.CMS.png",
|
||||
"meta": {
|
||||
"generator": "Quick\\.CMS(?: v([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"website": "http://opensolution.org"
|
||||
},
|
||||
"Quick.Cart": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<a href=\"[^>]+opensolution\\.org/\">(?:Shopping cart by|Sklep internetowy)",
|
||||
"icon": "Quick.Cart.png",
|
||||
"meta": {
|
||||
"generator": "Quick\\.Cart(?: v([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"website": "http://opensolution.org"
|
||||
},
|
||||
"Quicklink": {
|
||||
"cats": [
|
||||
59,
|
||||
92
|
||||
],
|
||||
"description": "Quicklink is a JS library which aims to be a drop-in solution for sites to prefetch links based on what is in the user's viewport",
|
||||
"icon": "Quicklink.svg",
|
||||
"js": {
|
||||
"drupalSettings.quicklink": "",
|
||||
"quicklink": ""
|
||||
},
|
||||
"scripts": "quicklink@([\\d.]+)/dist/quicklink.*\\.js\\;version:\\1",
|
||||
"website": "https://getquick.link/"
|
||||
},
|
||||
"Quill": {
|
||||
"cats": [
|
||||
24
|
||||
],
|
||||
"description": "Quill is a free open-source WYSIWYG editor.",
|
||||
"icon": "Quill.png",
|
||||
"js": {
|
||||
"Quill": ""
|
||||
},
|
||||
"website": "http://quilljs.com"
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,970 @@
|
||||
{
|
||||
"W3 Total Cache": {
|
||||
"cats": [
|
||||
23,
|
||||
87
|
||||
],
|
||||
"description": "W3 Total Cache (W3TC) improves the SEO and increases website performance and reducing load times by leveraging features like content delivery network (CDN) integration and the latest best practices.",
|
||||
"headers": {
|
||||
"X-Powered-By": "W3 Total Cache(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"html": "<!--[^>]+W3 Total Cache",
|
||||
"icon": "W3 Total Cache.png",
|
||||
"requires": "WordPress",
|
||||
"website": "http://www.w3-edge.com/wordpress-plugins/w3-total-cache"
|
||||
},
|
||||
"W3Counter": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "W3Counter.png",
|
||||
"scripts": "w3counter\\.com/tracker\\.js",
|
||||
"website": "http://www.w3counter.com"
|
||||
},
|
||||
"WEBDEV": {
|
||||
"cats": [
|
||||
20
|
||||
],
|
||||
"description": "WEBDEV is a tool to develop internet and intranet sites and applications that support data and processes",
|
||||
"headers": {
|
||||
"WebDevSrc": ""
|
||||
},
|
||||
"html": "<!-- [a-zA-Z0-9_]+ [\\d/]+ [\\d:]+ WebDev \\d\\d ([\\d.]+) -->\\;version:\\1",
|
||||
"icon": "webdev.png",
|
||||
"meta": {
|
||||
"generator": "^WEBDEV$"
|
||||
},
|
||||
"website": "https://www.windev.com/webdev/index.html"
|
||||
},
|
||||
"WEBXPAY": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "Powered by <a href=\"https://www\\.webxpay\\.com\">WEBXPAY<",
|
||||
"icon": "WEBXPAY.png",
|
||||
"js": {
|
||||
"WEBXPAY": ""
|
||||
},
|
||||
"website": "https://webxpay.com"
|
||||
},
|
||||
"WHMCS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "WHMCS is an automation platform that simplifies and automates all aspects of operating an online web hosting and domain registrar business.",
|
||||
"icon": "WHMCS.png",
|
||||
"js": {
|
||||
"WHMCS": ""
|
||||
},
|
||||
"oss": true,
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"website": "http://www.whmcs.com"
|
||||
},
|
||||
"WP Engine": {
|
||||
"cats": [
|
||||
62,
|
||||
88
|
||||
],
|
||||
"description": "WP Engine is a website hosting provider.",
|
||||
"headers": {
|
||||
"X-Pass-Why": "",
|
||||
"X-Powered-By": "WP Engine",
|
||||
"X-WPE-Loopback-Upstream-Addr": "",
|
||||
"wpe-backend": ""
|
||||
},
|
||||
"icon": "wpengine.svg",
|
||||
"implies": "WordPress",
|
||||
"website": "https://wpengine.com"
|
||||
},
|
||||
"WP Rocket": {
|
||||
"cats": [
|
||||
23,
|
||||
87
|
||||
],
|
||||
"description": "WP Rocket is a caching and performance optimisation plugin to improve the loading speed of WordPress websites.",
|
||||
"headers": {
|
||||
"X-Powered-By": "WP Rocket(?:/([\\d.]+))?\\;version:\\1",
|
||||
"X-Rocket-Nginx-Bypass": ""
|
||||
},
|
||||
"html": "<!--[^>]+WP Rocket",
|
||||
"icon": "WP Rocket.png",
|
||||
"requires": "WordPress",
|
||||
"website": "http://wp-rocket.me"
|
||||
},
|
||||
"WP-Statistics": {
|
||||
"cats": [
|
||||
10,
|
||||
87
|
||||
],
|
||||
"html": [
|
||||
"<!-- Analytics by WP-Statistics v([\\d.]+) -\\;version:\\1"
|
||||
],
|
||||
"icon": "WP-Statistics.png",
|
||||
"requires": "WordPress",
|
||||
"website": "https://wp-statistics.com"
|
||||
},
|
||||
"WPCacheOn": {
|
||||
"cats": [
|
||||
23,
|
||||
87
|
||||
],
|
||||
"description": "WPCacheOn is a caching and performance optimisation plugin, which improves the loading speed of WordPress websites.",
|
||||
"headers": {
|
||||
"x-powered-by": "^Optimized by WPCacheOn"
|
||||
},
|
||||
"icon": "WPCacheOn.png",
|
||||
"requires": [
|
||||
"WordPress"
|
||||
],
|
||||
"website": "https://wpcacheon.io"
|
||||
},
|
||||
"Wagtail": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "Wagtail is a Django content management system (CMS) focused on flexibility and user experience.",
|
||||
"dom": {
|
||||
"[style*='images/']": {
|
||||
"attributes": {
|
||||
"style": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
}
|
||||
},
|
||||
"img[src*='images/']": {
|
||||
"attributes": {
|
||||
"src": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
}
|
||||
},
|
||||
"img[srcset*='images/'], source[srcset*='images/']": {
|
||||
"attributes": {
|
||||
"srcset": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
}
|
||||
},
|
||||
"meta[content*='images/']": {
|
||||
"attributes": {
|
||||
"content": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
}
|
||||
},
|
||||
"style, script": {
|
||||
"text": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
},
|
||||
"video[poster*='images/']": {
|
||||
"attributes": {
|
||||
"poster": "(?:\\.[a-z]+|/media)(?:/[\\w-]+)?/(?:original_images/[\\w-]+|images/[\\w-.]+\\.(?:(?:fill|max|min)-\\d+x\\d+(?:-c\\d+)?|(?:width|height|scale)-\\d+|original))\\."
|
||||
}
|
||||
}
|
||||
},
|
||||
"icon": "Wagtail.svg",
|
||||
"implies": "Django",
|
||||
"website": "https://wagtail.io/"
|
||||
},
|
||||
"Wair": {
|
||||
"cats": [
|
||||
76,
|
||||
5
|
||||
],
|
||||
"description": "Wair is the widget to personalised fit.",
|
||||
"icon": "Wair.png",
|
||||
"js": {
|
||||
"PredictV3.default.version": "([\\d.]+)\\;version:\\1",
|
||||
"predictWidget": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "getwair\\.com",
|
||||
"website": "https://getwair.com"
|
||||
},
|
||||
"Warp": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "^Warp/(\\d+(?:\\.\\d+)+)?$\\;version:\\1"
|
||||
},
|
||||
"icon": "Warp.png",
|
||||
"implies": "Haskell",
|
||||
"website": "http://www.stackage.org/package/warp"
|
||||
},
|
||||
"Web2py": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"X-Powered-By": "web2py"
|
||||
},
|
||||
"icon": "Web2py.png",
|
||||
"implies": [
|
||||
"Python",
|
||||
"jQuery"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "^Web2py"
|
||||
},
|
||||
"scripts": "web2py\\.js",
|
||||
"website": "http://web2py.com"
|
||||
},
|
||||
"WebAR": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"html": [
|
||||
"<model-viewer"
|
||||
],
|
||||
"icon": "webAR.svg",
|
||||
"website": "https://modelviewer.dev/"
|
||||
},
|
||||
"WebAssembly": {
|
||||
"cats": [
|
||||
27
|
||||
],
|
||||
"description": "WebAssembly (abbreviated Wasm) is a binary instruction format for a stack-based virtual machine. Wasm is designed as a portable compilation target for programming languages, enabling deployment on the web for client and server applications.",
|
||||
"headers": {
|
||||
"Content-Type": "application/wasm"
|
||||
},
|
||||
"icon": "WebAssembly.svg",
|
||||
"oss": true,
|
||||
"website": "https://webassembly.org/"
|
||||
},
|
||||
"WebEngage": {
|
||||
"cats": [
|
||||
32,
|
||||
76
|
||||
],
|
||||
"description": "WebEngage is a customer data platform and marketing automation suite.",
|
||||
"icon": "WebEngage.png",
|
||||
"js": {
|
||||
"webengage.__v": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.webengage\\.co(?:m)?/",
|
||||
"website": "https://webengage.com"
|
||||
},
|
||||
"WebGUI": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cookies": {
|
||||
"wgSession": ""
|
||||
},
|
||||
"icon": "WebGUI.png",
|
||||
"implies": "Perl",
|
||||
"meta": {
|
||||
"generator": "^WebGUI ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"website": "http://www.webgui.org"
|
||||
},
|
||||
"WebMetric": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"cookies": {
|
||||
"_wmuid": ""
|
||||
},
|
||||
"icon": "WebMetric.svg",
|
||||
"js": {
|
||||
"_wmid": ""
|
||||
},
|
||||
"scripts": "cdn\\.webmetric\\.ir",
|
||||
"website": "https://webmetric.ir/"
|
||||
},
|
||||
"WebNode": {
|
||||
"cats": [
|
||||
1,
|
||||
51
|
||||
],
|
||||
"cookies": {
|
||||
"_gat_wnd_header": ""
|
||||
},
|
||||
"description": "Webnode is a drag-and-drop online website builder.",
|
||||
"icon": "WebNode.svg",
|
||||
"js": {
|
||||
"wnd.$system": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "^Webnode(?:\\s([\\d.]+))?$\\;version:\\1"
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.webnode.com"
|
||||
},
|
||||
"WebSite X5": {
|
||||
"cats": [
|
||||
20
|
||||
],
|
||||
"description": "WebSite X5 is a tools to create and publish websites.",
|
||||
"icon": "WebSite X5.png",
|
||||
"meta": {
|
||||
"generator": "Incomedia WebSite X5 (\\w+ [\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"website": "http://websitex5.com"
|
||||
},
|
||||
"Webflow": {
|
||||
"cats": [
|
||||
51
|
||||
],
|
||||
"description": "Webflow is Software-as-a-Service (Saas) for website building and hosting.",
|
||||
"html": "<html[^>]+data-wf-site",
|
||||
"icon": "webflow.svg",
|
||||
"js": {
|
||||
"Webflow": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Webflow"
|
||||
},
|
||||
"website": "https://webflow.com"
|
||||
},
|
||||
"Webgains": {
|
||||
"cats": [
|
||||
71
|
||||
],
|
||||
"description": "Webgains is an affiliate marketing network.",
|
||||
"icon": "Webgains.svg",
|
||||
"js": {
|
||||
"ITCLKQ": ""
|
||||
},
|
||||
"scripts": "analytics\\.webgains\\.io",
|
||||
"website": "https://www.webgains.com/"
|
||||
},
|
||||
"Webix": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"icon": "Webix.png",
|
||||
"js": {
|
||||
"webix": ""
|
||||
},
|
||||
"scripts": "\\bwebix\\.js",
|
||||
"website": "http://webix.com"
|
||||
},
|
||||
"Weblium": {
|
||||
"cats": [
|
||||
1,
|
||||
6
|
||||
],
|
||||
"description": "Weblium let's you create a web site or online store without the need for a web developer or designer.",
|
||||
"dom": "link[href*='res2.weblium.site']",
|
||||
"icon": "Weblium.svg",
|
||||
"implies": [
|
||||
"Node.js",
|
||||
"OpenResty",
|
||||
"React"
|
||||
],
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "res2\\.weblium\\.site/common/core\\.min\\.js",
|
||||
"url": "\\.weblium\\.site",
|
||||
"website": "https://weblium.com"
|
||||
},
|
||||
"WebsPlanet": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "WebsPlanet.png",
|
||||
"meta": {
|
||||
"generator": "WebsPlanet"
|
||||
},
|
||||
"website": "http://websplanet.com"
|
||||
},
|
||||
"Websale": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"websale_ac": ""
|
||||
},
|
||||
"icon": "Websale.png",
|
||||
"website": "http://websale.de"
|
||||
},
|
||||
"Website Creator": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "WebsiteCreator.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL",
|
||||
"Vue.js"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "Website Creator by hosttech",
|
||||
"wsc_rendermode": ""
|
||||
},
|
||||
"website": "https://www.hosttech.ch/websitecreator"
|
||||
},
|
||||
"WebsiteBaker": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "WebsiteBaker.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"meta": {
|
||||
"generator": "WebsiteBaker"
|
||||
},
|
||||
"website": "http://websitebaker2.org/en/home.php"
|
||||
},
|
||||
"Websocket": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"html": [
|
||||
"<link[^>]+rel=[\"']web-socket[\"']",
|
||||
"<(?:link|a)[^>]+href=[\"']wss?://"
|
||||
],
|
||||
"icon": "websocket.png",
|
||||
"website": "https://en.wikipedia.org/wiki/WebSocket"
|
||||
},
|
||||
"Webtrekk": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "Webtrekk.png",
|
||||
"js": {
|
||||
"WebtrekkV3": "",
|
||||
"webtrekk": "",
|
||||
"webtrekkConfig": "",
|
||||
"webtrekkHeatmapObjects": "",
|
||||
"webtrekkLinktrackObjects": "",
|
||||
"webtrekkUnloadObjects": "",
|
||||
"webtrekkV3": "",
|
||||
"wt_tt": "",
|
||||
"wt_ttv2": ""
|
||||
},
|
||||
"website": "http://www.webtrekk.com"
|
||||
},
|
||||
"Webtrends": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"html": "<img[^>]+id=\"DCSIMG\"[^>]+webtrends",
|
||||
"icon": "Webtrends.png",
|
||||
"js": {
|
||||
"WTOptimize": "",
|
||||
"WebTrends": ""
|
||||
},
|
||||
"website": "http://worldwide.webtrends.com"
|
||||
},
|
||||
"Webzi": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "Webzi.svg",
|
||||
"js": {
|
||||
"Webzi": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "^Webzi"
|
||||
},
|
||||
"scripts": "cdn\\.6th\\.ir",
|
||||
"website": "https://webzi.ir"
|
||||
},
|
||||
"Weebly": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"description": "Weebly is a website and eCommerce service.",
|
||||
"icon": "Weebly.svg",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"js": {
|
||||
"_W.configDomain": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "cdn\\d+\\.editmysite\\.com",
|
||||
"website": "https://www.weebly.com"
|
||||
},
|
||||
"Weglot": {
|
||||
"cats": [
|
||||
89
|
||||
],
|
||||
"headers": {
|
||||
"Weglot-Translated": ""
|
||||
},
|
||||
"icon": "Weglot.png",
|
||||
"scripts": [
|
||||
"cdn\\.weglot\\.com",
|
||||
"wp-content/plugins/weglot"
|
||||
],
|
||||
"website": "https://www.weglot.com"
|
||||
},
|
||||
"Welcart": {
|
||||
"cats": [
|
||||
6,
|
||||
87
|
||||
],
|
||||
"cookies": {
|
||||
"usces_cookie": ""
|
||||
},
|
||||
"cpe": "cpe:/a:welcart:welcart",
|
||||
"description": "Welcart is a free ecommerce plugin for WordPress with top market share in Japan.",
|
||||
"html": [
|
||||
"<link[^>]+?href=\"[^\"]+usces_default(?:\\.min)?\\.css",
|
||||
"<!-- Welcart version : v([\\d.]+)\\;version:\\1"
|
||||
],
|
||||
"icon": "Welcart.svg",
|
||||
"requires": "WordPress",
|
||||
"scripts": "uscesL10n",
|
||||
"website": "https://www.welcart.com"
|
||||
},
|
||||
"Whatfix": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"description": "Whatfix is a SaaS based platform which provides in-app guidance and performance support for web applications and software products.",
|
||||
"icon": "Whatfix.png",
|
||||
"js": {
|
||||
"_wfx_add_logger": "",
|
||||
"_wfx_settings": "",
|
||||
"wfx_is_playing__": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "whatfix\\.com",
|
||||
"website": "https://whatfix.com"
|
||||
},
|
||||
"Wheelio": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"description": "Wheelio is gamified pop-up/widget for ecommerce sites.",
|
||||
"icon": "Wheelio.png",
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "wheelioapp\\.azureedge\\.net",
|
||||
"website": "https://wheelio-app.com/"
|
||||
},
|
||||
"Whooshkaa": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"html": "<iframe src=\"[^>]+whooshkaa\\.com",
|
||||
"icon": "Whooshkaa.svg",
|
||||
"website": "https://www.whooshkaa.com"
|
||||
},
|
||||
"Wigzo": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Wigzo is e-commerce marketing automation platform that helps businesses of every size dig deeper into data to find opportunities to increase their sales and revenue.",
|
||||
"icon": "Wigzo.png",
|
||||
"js": {
|
||||
"wigzo": ""
|
||||
},
|
||||
"saas": true,
|
||||
"scripts": "app\\.wigzo\\.com",
|
||||
"website": "https://www.wigzo.com/"
|
||||
},
|
||||
"Wiki.js": {
|
||||
"cats": [
|
||||
4
|
||||
],
|
||||
"description": "Wiki.js is a wiki engine running on Node.js and written in JavaScript.",
|
||||
"icon": "Wiki.js.png",
|
||||
"implies": "Node.js",
|
||||
"js": {
|
||||
"WIKI.$_apolloInitData": "",
|
||||
"WIKI.$apolloProvider": ""
|
||||
},
|
||||
"oss": true,
|
||||
"website": "https://js.wiki"
|
||||
},
|
||||
"Wikinggruppen": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": [
|
||||
"<!-- WIKINGGRUPPEN"
|
||||
],
|
||||
"icon": "wikinggruppen.png",
|
||||
"website": "https://wikinggruppen.se/"
|
||||
},
|
||||
"WikkaWiki": {
|
||||
"cats": [
|
||||
8
|
||||
],
|
||||
"description": "WikkaWiki is an open-source wiki application written in PHP.",
|
||||
"html": "Powered by <a href=\"[^>]+WikkaWiki",
|
||||
"icon": "WikkaWiki.png",
|
||||
"meta": {
|
||||
"generator": "WikkaWiki"
|
||||
},
|
||||
"website": "http://wikkawiki.org"
|
||||
},
|
||||
"Windows CE": {
|
||||
"cats": [
|
||||
28
|
||||
],
|
||||
"description": "Windows CE is an operating system designed for small footprint devices or embedded systems.",
|
||||
"headers": {
|
||||
"Server": "\\bWinCE\\b"
|
||||
},
|
||||
"icon": "Microsoft.png",
|
||||
"website": "http://microsoft.com"
|
||||
},
|
||||
"Windows Server": {
|
||||
"cats": [
|
||||
28
|
||||
],
|
||||
"description": "Windows Server is a brand name for a group of server operating systems.",
|
||||
"headers": {
|
||||
"Server": "Win32|Win64"
|
||||
},
|
||||
"icon": "WindowsServer.png",
|
||||
"website": "http://microsoft.com/windowsserver"
|
||||
},
|
||||
"Wink": {
|
||||
"cats": [
|
||||
26,
|
||||
12
|
||||
],
|
||||
"description": "Wink Toolkit is a JavaScript toolkit used to build mobile web apps.",
|
||||
"icon": "Wink.png",
|
||||
"js": {
|
||||
"wink.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "(?:_base/js/base|wink).*\\.js",
|
||||
"website": "http://winktoolkit.org"
|
||||
},
|
||||
"Winstone Servlet Container": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Winstone Servlet (?:Container|Engine) v?([\\d.]+)?\\;version:\\1",
|
||||
"X-Powered-By": "Winstone(?:\\/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"website": "http://winstone.sourceforge.net"
|
||||
},
|
||||
"Wisepops": {
|
||||
"cats": [
|
||||
5,
|
||||
32
|
||||
],
|
||||
"description": "Wisepops is an intelligent popup and marketing automation system that offers marketers a single platform from which to create and manage website popups.",
|
||||
"icon": "Wisepops.svg",
|
||||
"js": {
|
||||
"WisePopsObject": "",
|
||||
"wisepops._api": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "loader\\.wisepops\\.com/get-loader\\.js",
|
||||
"website": "https://wisepops.com"
|
||||
},
|
||||
"Wistia": {
|
||||
"cats": [
|
||||
14
|
||||
],
|
||||
"description": "Wistia is designed exclusively to serve companies using video on their websites for marketing, support, and sales.",
|
||||
"icon": "Wistia.svg",
|
||||
"js": {
|
||||
"Wistia": "",
|
||||
"wistiaEmbeds": "",
|
||||
"wistiaUtils": ""
|
||||
},
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"mid",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.wistia\\.com",
|
||||
"website": "https://wistia.com"
|
||||
},
|
||||
"Wix": {
|
||||
"cats": [
|
||||
1,
|
||||
11
|
||||
],
|
||||
"cookies": {
|
||||
"Domain": "\\.wix\\.com"
|
||||
},
|
||||
"description": "Wix provides cloud-based web development services, allowing users to create HTML5 websites and mobile sites.",
|
||||
"headers": {
|
||||
"X-Wix-Renderer-Server": "",
|
||||
"X-Wix-Request-Id": "",
|
||||
"X-Wix-Server-Artifact-Id": ""
|
||||
},
|
||||
"icon": "Wix.svg",
|
||||
"implies": "React",
|
||||
"js": {
|
||||
"wixBiSession": "",
|
||||
"wixPerformanceMeasurements": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "Wix\\.com Website Builder"
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "static\\.parastorage\\.com",
|
||||
"website": "https://www.wix.com"
|
||||
},
|
||||
"Wix eCommerce": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"dom": {
|
||||
"#wix-viewer-model": {
|
||||
"text": "wixstores"
|
||||
}
|
||||
},
|
||||
"icon": "Wix.svg",
|
||||
"implies": "Wix",
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.wix.com/freesitebuilder/tae-store"
|
||||
},
|
||||
"Wolf CMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"html": "(?:<a href=\"[^>]+wolfcms\\.org[^>]+>Wolf CMS(?:</a>)? inside|Thank you for using <a[^>]+>Wolf CMS)",
|
||||
"icon": "Wolf CMS.png",
|
||||
"implies": "PHP",
|
||||
"website": "http://www.wolfcms.org"
|
||||
},
|
||||
"Woltlab Community Framework": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "Woltlab Community Framework.png",
|
||||
"implies": "PHP",
|
||||
"scripts": "WCF\\..*\\.js",
|
||||
"website": "http://www.woltlab.com"
|
||||
},
|
||||
"WooCommerce": {
|
||||
"cats": [
|
||||
6,
|
||||
87
|
||||
],
|
||||
"description": "WooCommerce is an open-source ecommerce plugin for WordPress.",
|
||||
"dom": ".woocommerce, .woocommerce-no-js, link[rel*='woocommerce']",
|
||||
"icon": "WooCommerce.svg",
|
||||
"js": {
|
||||
"woocommerce_params": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "WooCommerce ([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"oss": true,
|
||||
"requires": "WordPress",
|
||||
"scripts": [
|
||||
"woocommerce",
|
||||
"/woocommerce(?:\\.min)?\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1"
|
||||
],
|
||||
"website": "https://woocommerce.com"
|
||||
},
|
||||
"Woopra": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "Woopra.png",
|
||||
"scripts": "static\\.woopra\\.com",
|
||||
"website": "http://www.woopra.com"
|
||||
},
|
||||
"WordPress": {
|
||||
"cats": [
|
||||
1,
|
||||
11
|
||||
],
|
||||
"cpe": "cpe:/a:wordpress:wordpress",
|
||||
"description": "WordPress is a free and open-source content management system written in PHP and paired with a MySQL or MariaDB database. Features include a plugin architecture and a template system.",
|
||||
"headers": {
|
||||
"X-Pingback": "/xmlrpc\\.php$",
|
||||
"link": "rel=\"https://api\\.w\\.org/\""
|
||||
},
|
||||
"html": [
|
||||
"<link rel=[\"']stylesheet[\"'] [^>]+/wp-(?:content|includes)/",
|
||||
"<link[^>]+s\\d+\\.wp\\.com"
|
||||
],
|
||||
"icon": "WordPress.svg",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"js": {
|
||||
"wp_username": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "^WordPress ?([\\d.]+)?\\;version:\\1",
|
||||
"shareaholic:wp_version": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"/wp-(?:content|includes)/",
|
||||
"wp-embed\\.min\\.js"
|
||||
],
|
||||
"website": "https://wordpress.org"
|
||||
},
|
||||
"WordPress Super Cache": {
|
||||
"cats": [
|
||||
23,
|
||||
87
|
||||
],
|
||||
"description": "WordPress Super Cache is a static caching plugin for WordPress.",
|
||||
"headers": {
|
||||
"WP-Super-Cache": ""
|
||||
},
|
||||
"html": "<!--[^>]+WP-Super-Cache",
|
||||
"icon": "wp_super_cache.png",
|
||||
"requires": "WordPress",
|
||||
"website": "http://z9.io/wp-super-cache/"
|
||||
},
|
||||
"WordPress VIP": {
|
||||
"cats": [
|
||||
62
|
||||
],
|
||||
"headers": {
|
||||
"x-powered-by": "^WordPress\\.com VIP"
|
||||
},
|
||||
"icon": "wpvip.svg",
|
||||
"implies": [
|
||||
"WordPress",
|
||||
"Automattic"
|
||||
],
|
||||
"website": "https://wpvip.com"
|
||||
},
|
||||
"WorldPay": {
|
||||
"cats": [
|
||||
41
|
||||
],
|
||||
"description": "",
|
||||
"dom": "img[src*='secure.worldpay.com'], img[alt='Powered by WorldPay'], a[href*='worldpay.com'][target='_blank']",
|
||||
"icon": "WorldPay.svg",
|
||||
"pricing": [
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://online.worldpay.com"
|
||||
},
|
||||
"Wunderkind": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Wunderkind (Formerly BounceX) is a software for behavioural marketing technologies, created to de-anonymise site visitors, analyse their digital behaviour and create relevant digital experiences regardless of channel or device.",
|
||||
"icon": "Wunderkind.svg",
|
||||
"js": {
|
||||
"bouncex": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.bounceexchange\\.com",
|
||||
"website": "https://www.wunderkind.co"
|
||||
},
|
||||
"webEdition": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"cpe": "cpe:/a:webedition:webedition_cms",
|
||||
"icon": "webEdition.png",
|
||||
"meta": {
|
||||
"DC.title": "webEdition",
|
||||
"generator": "webEdition"
|
||||
},
|
||||
"website": "http://webedition.de/en"
|
||||
},
|
||||
"webpack": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"description": "Webpack is an open-source JavaScript module bundler.",
|
||||
"icon": "webpack.svg",
|
||||
"js": {
|
||||
"webpackJsonp": ""
|
||||
},
|
||||
"website": "https://webpack.js.org/"
|
||||
},
|
||||
"wisyCMS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "wisyCMS.svg",
|
||||
"meta": {
|
||||
"generator": "^wisy CMS[ v]{0,3}([0-9.,]*)\\;version:\\1"
|
||||
},
|
||||
"website": "https://wisy.3we.de"
|
||||
},
|
||||
"wpBakery": {
|
||||
"cats": [
|
||||
51,
|
||||
87
|
||||
],
|
||||
"description": "WPBakery is a drag and drop visual page builder plugin for WordPress.",
|
||||
"icon": "wpBakery.svg",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "WPBakery"
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"onetime"
|
||||
],
|
||||
"requires": "WordPress",
|
||||
"website": "https://wpbakery.com"
|
||||
},
|
||||
"wpCache": {
|
||||
"cats": [
|
||||
23,
|
||||
87
|
||||
],
|
||||
"description": "WPCache is a static caching plugin for WordPress.",
|
||||
"headers": {
|
||||
"X-Powered-By": "wpCache(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"html": "<!--[^>]+wpCache",
|
||||
"icon": "wpCache.png",
|
||||
"implies": "PHP",
|
||||
"meta": {
|
||||
"generator": "wpCache",
|
||||
"keywords": "wpCache"
|
||||
},
|
||||
"requires": "WordPress",
|
||||
"url": "^https?://[^/]+\\.wpcache\\.co",
|
||||
"website": "https://wpcache.co"
|
||||
}
|
||||
}
|
@ -0,0 +1,236 @@
|
||||
{
|
||||
"X-Cart": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"cookies": {
|
||||
"xid": "[a-z\\d]{32}(?:;|$)"
|
||||
},
|
||||
"html": [
|
||||
"Powered by X-Cart(?: (\\d+))? <a[^>]+href=\"http://www\\.x-cart\\.com/\"[^>]*>\\;version:\\1",
|
||||
"<a[^>]+href=\"[^\"]*(?:\\?|&)xcart_form_id=[a-z\\d]{32}(?:&|$)"
|
||||
],
|
||||
"icon": "X-Cart.png",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"xcart_web_dir": "",
|
||||
"xliteConfig": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "X-Cart(?: (\\d+))?\\;version:\\1"
|
||||
},
|
||||
"scripts": "/skin/common_files/modules/Product_Options/func\\.js",
|
||||
"website": "http://x-cart.com"
|
||||
},
|
||||
"X.ai": {
|
||||
"cats": [
|
||||
72
|
||||
],
|
||||
"description": "X.ai is a scheduling tool that organizes meeting times and improves lead conversion by adding embedded booking buttons to websites or within live chat applications.",
|
||||
"icon": "X.ai.png",
|
||||
"js": {
|
||||
"xdotaiAction": "",
|
||||
"xdotaiButton": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "(?:cdn)?x\\.ai/.*/xdotai-embed\\.js",
|
||||
"website": "https://x.ai"
|
||||
},
|
||||
"XAMPP": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"html": "<title>XAMPP(?: Version ([\\d\\.]+))?</title>\\;version:\\1",
|
||||
"icon": "XAMPP.png",
|
||||
"implies": [
|
||||
"Apache",
|
||||
"MySQL",
|
||||
"PHP",
|
||||
"Perl"
|
||||
],
|
||||
"meta": {
|
||||
"author": "Kai Oswald Seidler\\;confidence:10"
|
||||
},
|
||||
"website": "http://www.apachefriends.org/en/xampp.html"
|
||||
},
|
||||
"XMB": {
|
||||
"cats": [
|
||||
2
|
||||
],
|
||||
"html": "<!-- Powered by XMB",
|
||||
"icon": "XMB.png",
|
||||
"website": "http://www.xmbforum.com"
|
||||
},
|
||||
"XOOPS": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "XOOPS.png",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"xoops": ""
|
||||
},
|
||||
"meta": {
|
||||
"generator": "XOOPS"
|
||||
},
|
||||
"website": "http://xoops.org"
|
||||
},
|
||||
"XRegExp": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "XRegExp.png",
|
||||
"js": {
|
||||
"XRegExp.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": [
|
||||
"xregexp[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",
|
||||
"/([\\d.]+)/xregexp(?:\\.min)?\\.js\\;version:\\1",
|
||||
"xregexp.*\\.js"
|
||||
],
|
||||
"website": "http://xregexp.com"
|
||||
},
|
||||
"XWiki": {
|
||||
"cats": [
|
||||
8
|
||||
],
|
||||
"description": "XWiki is a free wiki software platform written in Java.",
|
||||
"excludes": "MediaWiki",
|
||||
"html": [
|
||||
"<html[^>]data-xwiki-[^>]>"
|
||||
],
|
||||
"icon": "xwiki.png",
|
||||
"implies": "Java\\;confidence:99",
|
||||
"meta": {
|
||||
"wiki": "xwiki"
|
||||
},
|
||||
"website": "http://www.xwiki.org"
|
||||
},
|
||||
"Xajax": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "Xajax.png",
|
||||
"scripts": "xajax_core.*\\.js",
|
||||
"website": "http://xajax-project.org"
|
||||
},
|
||||
"Xanario": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "Xanario.png",
|
||||
"meta": {
|
||||
"generator": "xanario shopsoftware"
|
||||
},
|
||||
"website": "http://xanario.de"
|
||||
},
|
||||
"XenForo": {
|
||||
"cats": [
|
||||
2
|
||||
],
|
||||
"cookies": {
|
||||
"xf_csrf": "",
|
||||
"xf_session": ""
|
||||
},
|
||||
"description": "XenForo is a PHP-based forum hosting program for communities that is designed to be deployed on a remote web server.",
|
||||
"html": [
|
||||
"(?:jQuery\\.extend\\(true, XenForo|<a[^>]+>Forum software by XenForo™|<!--XF:branding|<html[^>]+id=\"XenForo\")",
|
||||
"<html id=\"XF\" "
|
||||
],
|
||||
"icon": "XenForo.png",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"js": {
|
||||
"XF.GuestUsername": ""
|
||||
},
|
||||
"website": "http://xenforo.com"
|
||||
},
|
||||
"Xeora": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"headers": {
|
||||
"Server": "XeoraEngine",
|
||||
"X-Powered-By": "XeoraCube"
|
||||
},
|
||||
"html": "<input type=\"hidden\" name=\"_sys_bind_\\d+\" id=\"_sys_bind_\\d+\" />",
|
||||
"icon": "xeora.png",
|
||||
"implies": "Microsoft ASP.NET",
|
||||
"scripts": "/_bi_sps_v.+\\.js",
|
||||
"website": "http://www.xeora.org"
|
||||
},
|
||||
"Xitami": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Xitami(?:/([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Xitami.png",
|
||||
"website": "http://xitami.com"
|
||||
},
|
||||
"Xonic": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": [
|
||||
"Powered by <a href=\"http://www\\.xonic-solutions\\.de/index\\.php\" target=\"_blank\">xonic-solutions Shopsoftware</a>"
|
||||
],
|
||||
"icon": "xonic.png",
|
||||
"meta": {
|
||||
"keywords": "xonic-solutions"
|
||||
},
|
||||
"scripts": "core/jslib/jquery\\.xonic\\.js\\.php",
|
||||
"website": "http://www.xonic-solutions.de"
|
||||
},
|
||||
"XpressEngine": {
|
||||
"cats": [
|
||||
1
|
||||
],
|
||||
"icon": "XpressEngine.png",
|
||||
"meta": {
|
||||
"generator": "XpressEngine"
|
||||
},
|
||||
"website": "http://www.xpressengine.com/"
|
||||
},
|
||||
"Xtremepush": {
|
||||
"cats": [
|
||||
32
|
||||
],
|
||||
"description": "Xtremepush is a customer engagement, personalisation and data platform. It's purpose-built for multichannel and mobile marketing.",
|
||||
"icon": "Xtremepush.svg",
|
||||
"js": {
|
||||
"xtremepush": ""
|
||||
},
|
||||
"website": "https://xtremepush.com"
|
||||
},
|
||||
"xCharts": {
|
||||
"cats": [
|
||||
25
|
||||
],
|
||||
"html": "<link[^>]* href=\"[^\"]*xcharts(?:\\.min)?\\.css",
|
||||
"implies": "D3",
|
||||
"js": {
|
||||
"xChart": ""
|
||||
},
|
||||
"scripts": "xcharts\\.js",
|
||||
"website": "https://tenxer.github.io/xcharts/"
|
||||
},
|
||||
"xtCommerce": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"html": "<div class=\"copyright\">[^<]+<a[^>]+>xt:Commerce",
|
||||
"icon": "xtCommerce.png",
|
||||
"meta": {
|
||||
"generator": "xt:Commerce"
|
||||
},
|
||||
"website": "https://www.xt-commerce.com"
|
||||
}
|
||||
}
|
@ -0,0 +1,298 @@
|
||||
{
|
||||
"YUI": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"cpe": "cpe:/a:yahoo:yui",
|
||||
"icon": "YUI.png",
|
||||
"js": {
|
||||
"YAHOO.VERSION": "^(.+)$\\;version:\\1",
|
||||
"YUI.version": "^(.+)$\\;version:\\1"
|
||||
},
|
||||
"scripts": "(?:/yui/|yui\\.yahooapis\\.com)",
|
||||
"website": "http://yuilibrary.com"
|
||||
},
|
||||
"YUI Doc": {
|
||||
"cats": [
|
||||
4
|
||||
],
|
||||
"description": "UIDoc is a Node.js application used at build time to generate API documentation.",
|
||||
"html": "(?:<html[^>]* yuilibrary\\.com/rdf/[\\d.]+/yui\\.rdf|<body[^>]+class=\"yui3-skin-sam)",
|
||||
"icon": "yahoo.png",
|
||||
"website": "http://developer.yahoo.com/yui/yuidoc"
|
||||
},
|
||||
"YaBB": {
|
||||
"cats": [
|
||||
2
|
||||
],
|
||||
"html": "Powered by <a href=\"[^>]+yabbforum",
|
||||
"icon": "YaBB.png",
|
||||
"website": "http://www.yabbforum.com"
|
||||
},
|
||||
"Yahoo Advertising": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"html": [
|
||||
"<iframe[^>]+adserver\\.yahoo\\.com",
|
||||
"<img[^>]+clicks\\.beap\\.bc\\.yahoo\\.com"
|
||||
],
|
||||
"icon": "yahoo.png",
|
||||
"js": {
|
||||
"adxinserthtml": ""
|
||||
},
|
||||
"scripts": "adinterax\\.com",
|
||||
"website": "http://advertising.yahoo.com"
|
||||
},
|
||||
"Yahoo! Ecommerce": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"headers": {
|
||||
"X-XRDS-Location": "/ystore/"
|
||||
},
|
||||
"html": "<link[^>]+store\\.yahoo\\.net",
|
||||
"icon": "yahoo.png",
|
||||
"js": {
|
||||
"YStore": ""
|
||||
},
|
||||
"website": "http://smallbusiness.yahoo.com/ecommerce"
|
||||
},
|
||||
"Yahoo! Tag Manager": {
|
||||
"cats": [
|
||||
42
|
||||
],
|
||||
"html": "<!-- (?:End )?Yahoo! Tag Manager -->",
|
||||
"icon": "yahoo.png",
|
||||
"scripts": "b\\.yjtag\\.jp/iframe",
|
||||
"website": "https://tagmanager.yahoo.co.jp/"
|
||||
},
|
||||
"Yahoo! Web Analytics": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"icon": "yahoo.png",
|
||||
"js": {
|
||||
"YWA": ""
|
||||
},
|
||||
"scripts": "d\\.yimg\\.com/mi/ywa\\.js",
|
||||
"website": "http://web.analytics.yahoo.com"
|
||||
},
|
||||
"Yandex.Direct": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"description": "Yandex Direct is the platform designed for sponsored ad management.",
|
||||
"html": "<yatag class=\"ya-partner__ads\">",
|
||||
"icon": "Yandex.Direct.png",
|
||||
"js": {
|
||||
"yandex_ad_format": "",
|
||||
"yandex_partner_id": ""
|
||||
},
|
||||
"scripts": "https?://an\\.yandex\\.ru/",
|
||||
"website": "http://partner.yandex.com"
|
||||
},
|
||||
"Yandex.Messenger": {
|
||||
"cats": [
|
||||
5,
|
||||
52
|
||||
],
|
||||
"description": "Yandex.Messenger is an instant messaging application.",
|
||||
"icon": "Yandex.Messenger.svg",
|
||||
"js": {
|
||||
"yandexChatWidget": ""
|
||||
},
|
||||
"pricing": [
|
||||
"payg"
|
||||
],
|
||||
"scripts": "chat\\.s3\\.yandex\\.net/widget\\.js",
|
||||
"website": "https://dialogs.yandex.ru"
|
||||
},
|
||||
"Yandex.Metrika": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "Yandex.Metrica is a free web analytics service that tracks and reports website traffic.",
|
||||
"icon": "Yandex.Metrika.png",
|
||||
"js": {
|
||||
"yandex_metrika": ""
|
||||
},
|
||||
"scripts": [
|
||||
"mc\\.yandex\\.ru/metrika/(?:tag|watch)\\.js",
|
||||
"cdn\\.jsdelivr\\.net/npm/yandex\\-metrica\\-watch/watch\\.js"
|
||||
],
|
||||
"website": "http://metrika.yandex.com"
|
||||
},
|
||||
"Yaws": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "Yaws(?: ([\\d.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Yaws.png",
|
||||
"website": "http://yaws.hyber.org"
|
||||
},
|
||||
"Yelp Reservations": {
|
||||
"cats": [
|
||||
5,
|
||||
72
|
||||
],
|
||||
"description": "Yelp Reservations is a cloud-based restaurant management system.",
|
||||
"dom": {
|
||||
"iframe[src*='yelp']": {
|
||||
"attributes": {
|
||||
"src": "yelp(?:.com/reservations|reservations\\.com)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"icon": "Yelp.svg",
|
||||
"website": "http://yelp.com"
|
||||
},
|
||||
"Yelp Review Badge": {
|
||||
"cats": [
|
||||
5
|
||||
],
|
||||
"description": "Yelp Review Badges showcase business reviews from Yelp on websites.",
|
||||
"dom": {
|
||||
"img[src*='dyn.yelpcdn.com']": {
|
||||
"attributes": {
|
||||
"src": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"icon": "Yelp.svg",
|
||||
"scripts": "yelp\\.com/biz_badge_js",
|
||||
"website": "http://yelp.com"
|
||||
},
|
||||
"Yepcomm": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "yepcomm.png",
|
||||
"meta": {
|
||||
"author": "Yepcomm Tecnologia",
|
||||
"copyright": "Yepcomm Tecnologia"
|
||||
},
|
||||
"website": "https://www.yepcomm.com.br"
|
||||
},
|
||||
"Yieldify": {
|
||||
"cats": [
|
||||
76
|
||||
],
|
||||
"description": "Yieldify is a customer journey optimisation platform that brings personalisation to the full customer journey.",
|
||||
"icon": "Yieldify.svg",
|
||||
"js": {
|
||||
"_yieldify": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.yieldify\\.com",
|
||||
"website": "https://www.yieldify.com"
|
||||
},
|
||||
"Yieldlab": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"icon": "Yieldlab.png",
|
||||
"scripts": "^https?://(?:[^/]+\\.)?yieldlab\\.net/",
|
||||
"website": "http://yieldlab.de"
|
||||
},
|
||||
"Yii": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"cookies": {
|
||||
"YII_CSRF_TOKEN": ""
|
||||
},
|
||||
"description": "Yii is an open-source, object-oriented, component-based MVC PHP web application framework.",
|
||||
"html": [
|
||||
"Powered by <a href=\"http://www\\.yiiframework\\.com/\" rel=\"external\">Yii Framework</a>",
|
||||
"<input type=\"hidden\" value=\"[a-zA-Z0-9]{40}\" name=\"YII_CSRF_TOKEN\" \\/>",
|
||||
"<!\\[CDATA\\[YII-BLOCK-(?:HEAD|BODY-BEGIN|BODY-END)\\]"
|
||||
],
|
||||
"icon": "Yii.png",
|
||||
"implies": "PHP",
|
||||
"scripts": [
|
||||
"/assets/[a-zA-Z0-9]{8}\\/yii\\.js$",
|
||||
"/yii\\.(?:validation|activeForm)\\.js"
|
||||
],
|
||||
"website": "https://www.yiiframework.com"
|
||||
},
|
||||
"Yoast SEO": {
|
||||
"cats": [
|
||||
54,
|
||||
87
|
||||
],
|
||||
"description": "Yoast SEO is a search engine optimisation plugin for WordPress and other platforms.",
|
||||
"dom": {
|
||||
"script.yoast-schema-graph": {
|
||||
"attributes": {
|
||||
"class": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"html": "<!-- This site is optimized with the Yoast (?:WordPress )?SEO plugin v([\\d.]+) -\\;version:\\1",
|
||||
"icon": "Yoast SEO.png",
|
||||
"requires": "WordPress",
|
||||
"website": "https://yoast.com"
|
||||
},
|
||||
"Yotpo": {
|
||||
"cats": [
|
||||
84,
|
||||
90
|
||||
],
|
||||
"description": "Yotpo is a provider of Loyalty & Referrals, SMS Marketing, Reviews, and Visual UGC solutions.",
|
||||
"icon": "Yotpo.png",
|
||||
"js": {
|
||||
"yotpo": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low",
|
||||
"recurring"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "staticw2\\.yotpo\\.com",
|
||||
"website": "https://www.yotpo.com/"
|
||||
},
|
||||
"Yottaa": {
|
||||
"cats": [
|
||||
42,
|
||||
74,
|
||||
92
|
||||
],
|
||||
"description": "Yottaa is an ecommerce optimisation platform that helps with conversions, performance and security.",
|
||||
"icon": "Yottaa.svg",
|
||||
"meta": {
|
||||
"X-Yottaa-Metrics": "",
|
||||
"X-Yottaa-Optimizations": ""
|
||||
},
|
||||
"scripts": "cdn\\.yottaa\\.\\w+/",
|
||||
"website": "https://www.yottaa.com"
|
||||
},
|
||||
"YouTrack": {
|
||||
"cats": [
|
||||
13
|
||||
],
|
||||
"description": "YouTrack is a browser-based bug tracker, issue tracking system and project management software.",
|
||||
"html": [
|
||||
"no-title=\"YouTrack\">",
|
||||
"data-reactid=\"[^\"]+\">youTrack ([0-9.]+)<\\;version:\\1",
|
||||
"type=\"application/opensearchdescription\\+xml\" title=\"YouTrack\"/>"
|
||||
],
|
||||
"icon": "YouTrack.png",
|
||||
"website": "http://www.jetbrains.com/youtrack/"
|
||||
},
|
||||
"YouTube": {
|
||||
"cats": [
|
||||
14
|
||||
],
|
||||
"description": "YouTube is a video sharing service where users can create their own profile, upload videos, watch, like and comment on other videos.",
|
||||
"html": "<(?:param|embed|iframe)[^>]+youtube(?:-nocookie)?\\.com/(?:v|embed)",
|
||||
"icon": "YouTube.png",
|
||||
"website": "http://www.youtube.com"
|
||||
}
|
||||
}
|
@ -0,0 +1,328 @@
|
||||
{
|
||||
"ZK": {
|
||||
"cats": [
|
||||
18
|
||||
],
|
||||
"html": "<!-- ZK [.\\d\\s]+-->",
|
||||
"icon": "ZK.png",
|
||||
"implies": "Java",
|
||||
"scripts": "zkau/",
|
||||
"website": "http://zkoss.org"
|
||||
},
|
||||
"ZURB Foundation": {
|
||||
"cats": [
|
||||
66
|
||||
],
|
||||
"description": "Zurb Foundation is used to prototype in the browser. Allows rapid creation of websites or applications while leveraging mobile and responsive technology. The front end framework is the collection of HTML, CSS, and Javascript containing design patterns.",
|
||||
"html": [
|
||||
"<link[^>]+foundation[^>\"]+css",
|
||||
"<div [^>]*class=\"[^\"]*(?:small|medium|large)-\\d{1,2} columns"
|
||||
],
|
||||
"icon": "ZURB Foundation.png",
|
||||
"js": {
|
||||
"Foundation.version": "([\\d.]+)\\;version:\\1"
|
||||
},
|
||||
"website": "http://foundation.zurb.com"
|
||||
},
|
||||
"Zabbix": {
|
||||
"cats": [
|
||||
19
|
||||
],
|
||||
"html": "<body[^>]+zbxCallPostScripts",
|
||||
"icon": "Zabbix.png",
|
||||
"implies": "PHP",
|
||||
"js": {
|
||||
"zbxCallPostScripts": ""
|
||||
},
|
||||
"meta": {
|
||||
"Author": "ZABBIX SIA\\;confidence:70"
|
||||
},
|
||||
"url": "\\/zabbix\\/\\;confidence:30",
|
||||
"website": "http://zabbix.com"
|
||||
},
|
||||
"Zanox": {
|
||||
"cats": [
|
||||
36
|
||||
],
|
||||
"html": "<img [^>]*src=\"[^\"]+ad\\.zanox\\.com",
|
||||
"icon": "Zanox.png",
|
||||
"js": {
|
||||
"zanox": ""
|
||||
},
|
||||
"scripts": "zanox\\.com/scripts/zanox\\.js$",
|
||||
"website": "http://zanox.com"
|
||||
},
|
||||
"Zen Cart": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"icon": "Zen Cart.png",
|
||||
"meta": {
|
||||
"generator": "Zen Cart"
|
||||
},
|
||||
"website": "http://www.zen-cart.com"
|
||||
},
|
||||
"Zend": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"cookies": {
|
||||
"ZENDSERVERSESSID": ""
|
||||
},
|
||||
"headers": {
|
||||
"X-Powered-By": "Zend(?:Server)?(?:[\\s/]?([0-9.]+))?\\;version:\\1"
|
||||
},
|
||||
"icon": "Zend.png",
|
||||
"website": "http://zend.com"
|
||||
},
|
||||
"Zendesk": {
|
||||
"cats": [
|
||||
4,
|
||||
13,
|
||||
52
|
||||
],
|
||||
"cookies": {
|
||||
"_help_center_session": "",
|
||||
"_zendesk_cookie": "",
|
||||
"_zendesk_shared_session": ""
|
||||
},
|
||||
"description": "Zendesk is a cloud-based help desk management solution offering customizable tools to build customer service portal, knowledge base and online communities.",
|
||||
"dns": {
|
||||
"TXT": [
|
||||
"mail\\.zendesk\\.com"
|
||||
]
|
||||
},
|
||||
"headers": {
|
||||
"x-zendesk-user-id": ""
|
||||
},
|
||||
"icon": "Zendesk.png",
|
||||
"js": {
|
||||
"Zendesk": ""
|
||||
},
|
||||
"pricing": [
|
||||
"low"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "static\\.zdassets\\.com",
|
||||
"website": "https://zendesk.com"
|
||||
},
|
||||
"Zendesk Chat": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "Zendesk Chat is a live chat and communication widget.",
|
||||
"icon": "Zendesk Chat.png",
|
||||
"pricing": [
|
||||
"freemium",
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "v2\\.zopim\\.com",
|
||||
"website": "http://zopim.com"
|
||||
},
|
||||
"Zenfolio": {
|
||||
"cats": [
|
||||
7
|
||||
],
|
||||
"description": "Zenfolio is a photography website builder.",
|
||||
"icon": "Zenfolio.png",
|
||||
"js": {
|
||||
"Zenfolio": ""
|
||||
},
|
||||
"website": "https://zenfolio.com"
|
||||
},
|
||||
"Zepto": {
|
||||
"cats": [
|
||||
59
|
||||
],
|
||||
"icon": "Zepto.png",
|
||||
"js": {
|
||||
"Zepto": ""
|
||||
},
|
||||
"scripts": "zepto.*\\.js",
|
||||
"website": "http://zeptojs.com"
|
||||
},
|
||||
"Zimbra": {
|
||||
"cats": [
|
||||
30
|
||||
],
|
||||
"cookies": {
|
||||
"ZM_TEST": "true"
|
||||
},
|
||||
"icon": "Zimbra.png",
|
||||
"implies": "Java",
|
||||
"website": "https://www.zimbra.com/"
|
||||
},
|
||||
"Zinnia": {
|
||||
"cats": [
|
||||
11
|
||||
],
|
||||
"description": "Zimbra is a is a collaborative software suite that includes an email server and a web client.",
|
||||
"icon": "Zinnia.png",
|
||||
"implies": "Django",
|
||||
"meta": {
|
||||
"generator": "Zinnia"
|
||||
},
|
||||
"website": "http://django-blog-zinnia.com"
|
||||
},
|
||||
"Zip": {
|
||||
"cats": [
|
||||
41,
|
||||
91
|
||||
],
|
||||
"description": "Zip is a payment service that lets you receive your purchase now and spread the total cost over a interest-free payment schedule.",
|
||||
"dom": "link[href*='widgets.quadpay.com/'], div[data-quadpay-src*='.quadpay.com/']",
|
||||
"icon": "zip_pay.svg",
|
||||
"js": {
|
||||
"QuadPayShopify": "",
|
||||
"quadpayID": ""
|
||||
},
|
||||
"pricing": [
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": [
|
||||
"quadpay\\.com",
|
||||
"static\\.zipmoney\\.com\\.au",
|
||||
"zip\\.co"
|
||||
],
|
||||
"website": "https://www.zip.co/"
|
||||
},
|
||||
"Zipkin": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"headers": {
|
||||
"X-B3-Flags": "",
|
||||
"X-B3-ParentSpanId": "",
|
||||
"X-B3-Sampled": "",
|
||||
"X-B3-SpanId": "",
|
||||
"X-B3-TraceId": ""
|
||||
},
|
||||
"icon": "Zipkin.png",
|
||||
"website": "https://zipkin.io/"
|
||||
},
|
||||
"Zocdoc": {
|
||||
"cats": [
|
||||
72
|
||||
],
|
||||
"description": "Zocdoc is a New York City-based company offering an online service that allows people to find and book in-person or telemedicine appointments for medical or dental care.",
|
||||
"dom": "a[href*='www.zocdoc.com'][target='_blank']",
|
||||
"icon": "Zocdoc.svg",
|
||||
"pricing": [
|
||||
"payg"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "offsiteschedule\\.zocdoc\\.com",
|
||||
"website": "https://www.zocdoc.com"
|
||||
},
|
||||
"Zoey": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Zoey is a cloud-based ecommerce platform for B2B and wholesale businesses.",
|
||||
"excludes": "Magento",
|
||||
"icon": "Zoey.svg",
|
||||
"implies": [
|
||||
"PHP",
|
||||
"MySQL"
|
||||
],
|
||||
"js": {
|
||||
"Zoey.module": "",
|
||||
"zoey.developer": "",
|
||||
"zoeyDev": ""
|
||||
},
|
||||
"scripts": "cdna4\\.zoeysite\\.com",
|
||||
"website": "https://www.zoey.com/"
|
||||
},
|
||||
"Zoho": {
|
||||
"cats": [
|
||||
53
|
||||
],
|
||||
"description": "Zoho is a web-based online office suite.",
|
||||
"dns": {
|
||||
"TXT": [
|
||||
"\\.zoho\\.com"
|
||||
]
|
||||
},
|
||||
"icon": "Zoho.svg",
|
||||
"pricing": [
|
||||
"low",
|
||||
"freemium"
|
||||
],
|
||||
"saas": true,
|
||||
"website": "https://www.zoho.com/"
|
||||
},
|
||||
"Zoho Mail": {
|
||||
"cats": [
|
||||
75
|
||||
],
|
||||
"description": "Zoho Mail is an email hosting service for businesses.",
|
||||
"dns": {
|
||||
"TXT": [
|
||||
"transmail\\.net"
|
||||
]
|
||||
},
|
||||
"icon": "Zoho.svg",
|
||||
"implies": "Zoho",
|
||||
"website": "https://www.zoho.com/mail/"
|
||||
},
|
||||
"Zone.js": {
|
||||
"cats": [
|
||||
12
|
||||
],
|
||||
"implies": "Angular",
|
||||
"js": {
|
||||
"Zone.root": ""
|
||||
},
|
||||
"website": "https://github.com/angular/angular/tree/master/packages/zone.js"
|
||||
},
|
||||
"Zonos": {
|
||||
"cats": [
|
||||
6
|
||||
],
|
||||
"description": "Zonos is a cross-border ecommerce software and app solution for companies with international business.",
|
||||
"icon": "Zonos.svg",
|
||||
"js": {
|
||||
"Zonos": "",
|
||||
"zonos": "",
|
||||
"zonosCheckout": ""
|
||||
},
|
||||
"pricing": [
|
||||
"poa"
|
||||
],
|
||||
"saas": true,
|
||||
"scripts": "\\.zonos\\.com/",
|
||||
"website": "https://zonos.com"
|
||||
},
|
||||
"Zoominfo": {
|
||||
"cats": [
|
||||
10
|
||||
],
|
||||
"description": "ZoomInfo provides actionable B2B contact and company information for sales and marketing teams.",
|
||||
"icon": "Zoominfo.svg",
|
||||
"saas": true,
|
||||
"scripts": "ws\\.zoominfo\\.com",
|
||||
"website": "https://www.zoominfo.com/"
|
||||
},
|
||||
"Zoominfo Chat": {
|
||||
"cats": [
|
||||
52
|
||||
],
|
||||
"description": "ZoomInfo chat is a live chat solution.",
|
||||
"icon": "Zoominfo.svg",
|
||||
"saas": true,
|
||||
"scripts": "madstreetden\\.widget\\.insent\\.ai",
|
||||
"website": "https://www.zoominfo.com/chat"
|
||||
},
|
||||
"Zope": {
|
||||
"cats": [
|
||||
22
|
||||
],
|
||||
"headers": {
|
||||
"Server": "^Zope/"
|
||||
},
|
||||
"icon": "Zope.png",
|
||||
"website": "http://zope.org"
|
||||
}
|
||||
}
|
Reference in new issue