Split technologies.json into technologies/[a-z].json

main
Elbert Alias 3 years ago
parent 22d6c56157
commit 2401457a99

3
.gitignore vendored

@ -1,5 +1,6 @@
/build/*
/src/drivers/**/technologies.json
/src/drivers/**/categories.json
/src/drivers/**/technologies/*
/src/drivers/**/wappalyzer.js
/src/drivers/webextension/images/icons/converted/*

@ -17,7 +17,7 @@ To get started, see the [README](https://github.com/aliasio/wappalyzer/blob/mast
Wappalyzer uses [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) to fingerprint technologies. Refer to the [specification](https://github.com/AliasIO/wappalyzer/blob/master/README.md#specification) for detail.
- Add a new block to [`src/technologies.json`](https://github.com/aliasio/wappalyzer/blob/master/src/technologies.json).
- Add a new block to [`src/technologies/*.json`](https://github.com/aliasio/wappalyzer/blob/master/src/technologies). The filename should match the first letter of the technology name (a-z). Use `_.json` if the first character is a number or symbol.
- Add an icon to [`src/drivers/webextension/images/icons`](https://github.com/aliasio/wappalyzer/tree/master/src/drivers/webextension/images/icons). The image must be square, either SVG or PNG (32 x 32 pixels).
Only widely used technologies are accepted. When creating a pull request, include ten or more links to websites that use the application, a GitHub page with at least 1,000 stars or anything that will help establish the size of the user base.
@ -26,7 +26,7 @@ Only widely used technologies are accepted. When creating a pull request, includ
Please [open an issue on GitHub](https://github.com/aliasio/wappalyzer/issues) first to discuss the need for a new category.
To add a category, edit [`src/technologies.json`](https://github.com/aliasio/wappalyzer/blob/master/src/technologies.json) and update every [locale](https://github.com/aliasio/wappalyzer/tree/master/src/drivers/webextension/_locales). You may use the English category name in all of them.
To add a category, edit [`src/categories.json`](https://github.com/aliasio/wappalyzer/blob/master/src/categories.json) and update every [locale](https://github.com/aliasio/wappalyzer/tree/master/src/drivers/webextension/_locales). You may use the English category name in all of them.
## Adding a new translation

@ -53,7 +53,7 @@ node src/drivers/npm/cli.js https://example.com
A long list of [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) is used to identify technologies on web pages. Wappalyzer inspects HTML code, as well as JavaScript variables, response headers and more.
Patterns (regular expressions) are kept in [`src/technologies.json`](https://github.com/aliasio/wappalyzer/blob/master/src/technologies.json). The following is an example of an application fingerprint.
Patterns (regular expressions) are kept in [`src/technologies/`](https://github.com/aliasio/wappalyzer/blob/master/src/technologies). The following is an example of an application fingerprint.
#### Example

@ -8,10 +8,21 @@ const link = (src, dest) => {
fs.linkSync(src, dest)
}
// WebExtension
link('./src/technologies.json', './src/drivers/webextension/technologies.json')
link('./src/wappalyzer.js', './src/drivers/webextension/js/wappalyzer.js')
// NPM
link('./src/technologies.json', './src/drivers/npm/technologies.json')
link('./src/wappalyzer.js', './src/drivers/npm/wappalyzer.js')
link('./src/categories.json', './src/drivers/webextension/categories.json')
link('./src/categories.json', './src/drivers/npm/categories.json')
for (const index of Array(27).keys()) {
const character = index ? String.fromCharCode(index + 96) : '_'
link(
`./src/technologies/${character}.json`,
`./src/drivers/webextension/technologies/${character}.json`
)
link(
`./src/technologies/${character}.json`,
`./src/drivers/npm/technologies/${character}.json`
)
}

@ -2,9 +2,43 @@ const fs = require('fs')
const iconPath = './src/drivers/webextension/images/icons'
const { technologies, categories } = JSON.parse(
fs.readFileSync('./src/technologies.json')
)
const categories = JSON.parse(fs.readFileSync('./src/categories.json'))
let technologies = {}
for (const index of Array(27).keys()) {
const charCode = index ? index + 96 : 95
const character = String.fromCharCode(charCode)
const _technologies = JSON.parse(
fs.readFileSync(`./src/technologies/${character}.json`)
)
Object.keys(_technologies).forEach((name) => {
const _charCode = name.toLowerCase().charCodeAt(0)
if (charCode !== _charCode) {
if (_charCode < 97 || _charCode > 122) {
if (charCode !== 95) {
throw new Error(
`${name} should be moved from ./src/technologies/${character}.json to ./src/technologies/_.json`
)
}
} else {
throw new Error(
`${name} should be moved from ./src/technologies/${character}.json to ./src/technologies/${String.fromCharCode(
_charCode
)}.json`
)
}
}
})
technologies = {
...technologies,
..._technologies,
}
}
Object.keys(technologies).forEach((name) => {
const technology = technologies[name]

@ -19,9 +19,9 @@
"link": "node ./bin/link.js",
"lint": "eslint src/**/*.{js,json}",
"lint:fix": "eslint --fix src/**/*.{js,json}",
"validate": "yarn run lint && jsonlint -qV ./schema.json ./src/technologies.json && node ./bin/validate.js",
"validate": "yarn run lint && jsonlint -qV ./schema.json ./src/technologies/*.json && node ./bin/validate.js",
"convert": "node ./bin/convert.js",
"prettify": "jsonlint -si --trim-trailing-commas --enforce-double-quotes ./src/technologies.json",
"prettify": "jsonlint -si --trim-trailing-commas --enforce-double-quotes ./src/categories.json ./src/technologies/*.json",
"build": "yarn run link && yarn run validate && yarn run prettify && yarn run convert && node ./bin/build.js",
"build:safari": "xcrun safari-web-extension-converter --swift --project-location build --force src/drivers/webextension"
}

@ -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"
}
}
}
}

@ -17,11 +17,26 @@ const fs = require('fs')
const Wappalyzer = require('./wappalyzer')
// See https://www.wappalyzer.com/docs/dev/specification or use
// https://raw.githubusercontent.com/AliasIO/wappalyzer/master/src/technologies.json
const { technologies, categories } = JSON.parse(
fs.readFileSync('./technologies.json')
// https://raw.githubusercontent.com/AliasIO/wappalyzer/master/src/technologies
const categories = JSON.parse(
fs.readFileSync(path.resolve(`./categories.json`))
)
let technologies = {}
for (const index of Array(27).keys()) {
const character = index ? String.fromCharCode(index + 96) : '_'
technologies = {
...technologies,
...JSON.parse(
fs.readFileSync(
path.resolve(`./technologies/${character}.json`)
)
),
}
}
Wappalyzer.setTechnologies(technologies)
Wappalyzer.setCategories(categories)

@ -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
}
}

@ -18,9 +18,10 @@ RUN mkdir -p "$WAPPALYZER_ROOT/browsers"
WORKDIR "$WAPPALYZER_ROOT"
ADD cli.js .
ADD categories.json
ADD driver.js .
ADD package.json .
ADD technologies.json .
ADD technologies .
ADD wappalyzer.js .
ADD yarn.lock .

@ -42,10 +42,25 @@ if (AWS_LAMBDA_FUNCTION_NAME) {
const extensions = /^([^.]+$|\.(asp|aspx|cgi|htm|html|jsp|php)$)/
const { technologies, categories } = JSON.parse(
fs.readFileSync(path.resolve(`${__dirname}/technologies.json`))
const categories = JSON.parse(
fs.readFileSync(path.resolve(`${__dirname}/categories.json`))
)
let technologies = {}
for (const index of Array(27).keys()) {
const character = index ? String.fromCharCode(index + 96) : '_'
technologies = {
...technologies,
...JSON.parse(
fs.readFileSync(
path.resolve(`${__dirname}/technologies/${character}.json`)
)
),
}
}
setTechnologies(technologies)
setCategories(categories)

@ -31,9 +31,10 @@
"main": "driver.js",
"files": [
"cli.js",
"categories.json",
"driver.js",
"index.js",
"technologies.json",
"technologies/*",
"wappalyzer.js"
],
"bin": {
@ -42,4 +43,4 @@
"dependencies": {
"puppeteer": "^5.3.0"
}
}
}

@ -136,10 +136,23 @@ const Driver = {
*/
async loadTechnologies() {
try {
const { technologies, categories } = await (
await fetch(chrome.runtime.getURL('technologies.json'))
const categories = await (
await fetch(chrome.runtime.getURL('categories.json'))
).json()
let technologies = {}
for (const index of Array(27).keys()) {
const character = index ? String.fromCharCode(index + 96) : '_'
technologies = {
...technologies,
...(await (
await fetch(chrome.runtime.getURL(`technologies/${character}.json`))
).json()),
}
}
setTechnologies(technologies)
setCategories(categories)
} catch (error) {

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,948 @@
{
"D3": {
"cats": [
25
],
"cpe": "cpe:/a:d3.js_project:d3.js",
"description": "D3.js is a JavaScript library for producing dynamic, interactive data visualisations in web browsers.",
"icon": "D3.png",
"js": {
"d3.version": "^(.+)$\\;version:\\1"
},
"scripts": "/d3(?:\\. v\\d+)?(?:\\.min)?\\.js",
"website": "http://d3js.org"
},
"DERAK.CLOUD": {
"cats": [
31
],
"cookies": {
"__derak_auth": "",
"__derak_user": ""
},
"headers": {
"Derak-Umbrage": "",
"Server": "^DERAK\\.CLOUD$"
},
"icon": "DerakCloud.png",
"js": {
"derakCloud.init": ""
},
"website": "https://derak.cloud"
},
"DHTMLX": {
"cats": [
59
],
"icon": "DHTMLX.png",
"scripts": "dhtmlxcommon\\.js",
"website": "http://dhtmlx.com"
},
"DM Polopoly": {
"cats": [
1
],
"html": "<(?:link [^>]*href|img [^>]*src)=\"/polopoly_fs/",
"icon": "DM Polopoly.png",
"implies": "Java",
"website": "http://www.atex.com/products/dm-polopoly"
},
"DNN": {
"cats": [
1
],
"cookies": {
"DotNetNukeAnonymous": ""
},
"cpe": "cpe:/a:dnnsoftware:dotnetnuke",
"headers": {
"Cookie": "dnn_IsMobile=",
"DNNOutputCache": "",
"X-Compressed-By": "DotNetNuke"
},
"html": [
"<!-- by DotNetNuke Corporation",
"<!-- DNN Platform"
],
"icon": "DNN.png",
"implies": "Microsoft ASP.NET",
"js": {
"DotNetNuke": "",
"dnn.apiversion": "^(.+)$\\;version:\\1"
},
"meta": {
"generator": "DotNetNuke"
},
"oss": true,
"scripts": [
"/js/dnncore\\.js",
"/js/dnn\\.js"
],
"website": "http://dnnsoftware.com"
},
"Dancer": {
"cats": [
18
],
"description": "Mono.net delivers the a Software-as-a-Service (SaaS) platform to build and sell websites and other digital products.",
"headers": {
"Server": "Perl Dancer ([\\d.]+)\\;version:\\1",
"X-Powered-By": "Perl Dancer ([\\d.]+)\\;version:\\1"
},
"icon": "Dancer.png",
"implies": "Perl",
"pricing": [
"poa"
],
"saas": true,
"website": "http://perldancer.org"
},
"Danneo CMS": {
"cats": [
1
],
"headers": {
"X-Powered-By": "CMS Danneo ([\\d.]+)\\;version:\\1"
},
"icon": "Danneo CMS.png",
"implies": [
"Apache",
"PHP"
],
"meta": {
"generator": "Danneo CMS ([\\d.]+)\\;version:\\1"
},
"website": "http://danneo.com"
},
"Dart": {
"cats": [
27
],
"excludes": [
"Angular",
"AngularJS"
],
"html": "/(?:<script)[^>]+(?:type=\"application/dart\")/",
"icon": "Dart.svg",
"implies": "AngularDart",
"js": {
"___dart__$dart_dartObject_ZxYxX_0_": "",
"___dart_dispatch_record_ZxYxX_0_": ""
},
"scripts": [
"/(?:\\.)?(?:dart)(?:\\.js)?/",
"packages/browser/dart\\.js"
],
"website": "https://www.dartlang.org"
},
"Darwin": {
"cats": [
28
],
"description": "Darwin is the open-source operating system from Apple that forms the basis for macOS.",
"headers": {
"Server": "Darwin",
"X-Powered-By": "Darwin"
},
"icon": "Apple.svg",
"website": "https://opensource.apple.com"
},
"DataLife Engine": {
"cats": [
1
],
"cpe": "cpe:/a:dleviet:datalife_engine",
"icon": "DataLife Engine.svg",
"implies": [
"PHP",
"Apache"
],
"js": {
"dle_root": ""
},
"meta": {
"generator": "DataLife Engine"
},
"website": "https://dle-news.ru"
},
"DataTables": {
"cats": [
59
],
"cpe": "cpe:/a:datatables:datatables.net",
"description": "DataTables is a plug-in for the jQuery Javascript library adding advanced features like pagination, instant search, themes, and more to any HTML table.",
"icon": "DataTables.png",
"implies": "jQuery",
"js": {
"$.fn.dataTable.version": "^(.+)$\\;version:\\1",
"jQuery.fn.dataTable.version": "^(.+)$\\;version:\\1"
},
"oss": true,
"scripts": "dataTables.*\\.js",
"website": "http://datatables.net"
},
"Datadog": {
"cats": [
78,
10
],
"description": "Datadog is a SaaS-based monitoring and analytics platform for large-scale applications and infrastructure.",
"icon": "Datadog.svg",
"js": {
"DD_LOGS": "\\;confidence:1",
"DD_RUM": "\\;confidence:99"
},
"pricing": [
"low",
"payg",
"recurring",
"freemium"
],
"saas": true,
"scripts": "www\\.datadoghq-browser-agent\\.com",
"website": "https://www.datadoghq.com"
},
"Datadome": {
"cats": [
16
],
"cookies": {
"datadome": "",
"datadome-_zldp": "",
"datadome-_zldt": ""
},
"headers": {
"Server": "^DataDome$",
"X-DataDome": "",
"X-DataDome-CID": ""
},
"icon": "datadome.png",
"scripts": "^https://ct\\.datadome\\.co/[a-z]\\.js$",
"website": "https://datadome.co/"
},
"DatoCMS": {
"cats": [
1
],
"html": "<[^>]+https://www\\.datocms-assets\\.com",
"icon": "datocms.svg",
"website": "https://www.datocms.com"
},
"Day.js": {
"cats": [
59
],
"icon": "Day.js.svg",
"js": {
"dayjs": ""
},
"website": "https://github.com/iamkun/dayjs"
},
"Dealer Spike": {
"cats": [
36,
32
],
"description": "Dealer Spike is a digital marketing and advertising company focused that helps dealers grow their business.",
"dom": "meta[name='author'][content*='Dealer Spike']",
"icon": "Dealer Spike.svg",
"pricing": [
"poa"
],
"saas": true,
"scripts": "cdn\\.dealerspike\\.com",
"website": "https://www.dealerspike.com",
"xhr": "\\.dealerspike\\.com"
},
"Debian": {
"cats": [
28
],
"cpe": "cpe:/o:debian:debian_linux",
"description": "Debian is a Linux software which is a free open-source software.",
"headers": {
"Server": "Debian",
"X-Powered-By": "(?:Debian|dotdeb|(potato|woody|sarge|etch|lenny|squeeze|wheezy|jessie|stretch|buster|sid))\\;version:\\1"
},
"icon": "Debian.png",
"website": "https://debian.org"
},
"Decibel": {
"cats": [
10,
74
],
"description": "Decibel is a behavioral analysis solution that helps users gain actionable insights about their digital audience.",
"icon": "Decibel.svg",
"js": {
"decibelInsight": "",
"decibelInsightLayer": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "cdn\\.decibelinsight\\.net",
"website": "https://decibel.com"
},
"DedeCMS": {
"cats": [
1
],
"cpe": "cpe:/a:dedecms:dedecms",
"icon": "DedeCMS.png",
"implies": "PHP",
"js": {
"DedeContainer": ""
},
"scripts": "dedeajax",
"website": "http://dedecms.com"
},
"Detectify": {
"cats": [
16
],
"description": "Detectify is an automated scanner that checks your web application for vulnerabilities.",
"dns": {
"TXT": [
"detectify-verification"
]
},
"icon": "Detectify.svg",
"website": "https://detectify.com/"
},
"Didomi": {
"cats": [
67
],
"description": "Didomi is a consent management platform helping brands and businesses collect, store and leverage their customer consents.",
"icon": "didomi.png",
"scripts": "sdk\\.privacy-center\\.org/.*/loader\\.js",
"website": "https://www.didomi.io/en/consent-preference-management"
},
"Digest": {
"cats": [
16
],
"description": "Digest is an authentication method based on a MD5 hash used by web servers.",
"headers": {
"WWW-Authenticate": "^Digest"
},
"website": "https://tools.ietf.org/html/rfc7616"
},
"DigiCert": {
"cats": [
70
],
"certIssuer": "DigiCert",
"icon": "DigiCert.svg",
"website": "https://www.digicert.com/"
},
"Digistore24": {
"cats": [
71
],
"description": "Digistore24 is a German digital reselling and affiliate marketing platform.",
"dom": "a[href*='www.digistore24.com'][target='_blank']",
"icon": "Digistore24.svg",
"js": {
"DIGISTORE_LINK_ID_KEY": "",
"DIGISTORE_VENDORKEY": "",
"getTheSourceForDigistoreLinks": ""
},
"pricing": [
"payg"
],
"saas": true,
"scripts": [
"digistore/digistore\\.js",
"www\\.digistore24\\.com"
],
"website": "https://www.digistore24.com"
},
"DigitalRiver": {
"cats": [
6,
41
],
"cookies": {
"X-DR-SHOPPER-ets": "",
"X-DR-THEME": "^\\d+$"
},
"description": "Digital River provides global ecommerce, payments and marketing services.",
"icon": "DigitalRiver.svg",
"js": {
"DigitalRiver": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.digitalriver\\.com/",
"website": "https://www.digitalriver.com"
},
"DirectAdmin": {
"cats": [
9
],
"cpe": "cpe:/a:directadmin:directadmin",
"description": "DirectAdmin is a graphical web-based web hosting control panel designed to make administration of websites easier.",
"headers": {
"Server": "DirectAdmin Daemon v([\\d.]+)\\;version:\\1"
},
"html": "<a[^>]+>DirectAdmin</a> Web Control Panel",
"icon": "DirectAdmin.png",
"implies": [
"PHP",
"Apache"
],
"website": "https://www.directadmin.com"
},
"Discourse": {
"cats": [
2
],
"description": "Discourse is an open-source internet forum and mailing list management software application.",
"icon": "Discourse.png",
"implies": "Ruby on Rails",
"js": {
"Discourse": ""
},
"meta": {
"generator": "Discourse(?: ?/?([\\d.]+\\d))?\\;version:\\1"
},
"website": "https://discourse.org"
},
"Discuz! X": {
"cats": [
2
],
"description": "Discuz! X is an internet forum software written in PHP and supports MySQL and PostgreSQL databases.",
"icon": "Discuz X.png",
"implies": "PHP",
"js": {
"DISCUZCODE": "",
"discuzVersion": "^(.+)$\\;version:\\1",
"discuz_uid": ""
},
"meta": {
"generator": "Discuz! X([\\d\\.]+)?\\;version:\\1"
},
"website": "http://www.discuz.net"
},
"Disqus": {
"cats": [
15
],
"cpe": "cpe:/a:disqus:disqus_comment_system",
"description": "Disqus is a worldwide blog comment hosting service for web sites and online communities that use a networked platform.",
"html": "<div[^>]+id=\"disqus_thread\"",
"icon": "Disqus.svg",
"js": {
"DISQUS": "",
"disqus_shortname": "",
"disqus_url": ""
},
"scripts": "disqus_url",
"website": "https://disqus.com"
},
"District M": {
"cats": [
36
],
"description": "District M is a programmatic advertising exchange.",
"dom": "iframe[src*='.districtm.io']",
"icon": "District M.svg",
"saas": true,
"website": "https://districtm.net",
"xhr": "\\.districtm\\.io"
},
"Divi": {
"cats": [
51,
87
],
"description": "Divi is a WordPress Theme and standalone WordPress plugin from Elegant themes that allows users to build websites using the visual drag-and-drop Divi page builder.",
"icon": "Divi.png",
"js": {
"DIVI": ""
},
"meta": {
"generator": "Divi"
},
"pricing": [
"low",
"recurring",
"onetime"
],
"requires": "WordPress",
"saas": true,
"scripts": "Divi/js/custom\\.(?:min|unified)\\.js\\?ver=([\\d.]+)\\;version:\\1",
"website": "https://www.elegantthemes.com/gallery/divi"
},
"Divido": {
"cats": [
41,
91
],
"description": "Divio is a Buy now pay later solution. Divido provided whitelabel platform connects lenders, retailers and channel partners at the point of sale",
"icon": "Divido.png",
"saas": true,
"scripts": "cdn\\.divido\\.com",
"website": "https://www.divido.com/"
},
"Django": {
"cats": [
18
],
"cpe": "cpe:/a:djangoproject:django",
"description": "Django is a Python-based free and open-source web application framework.",
"html": "(?:powered by <a[^>]+>Django ?([\\d.]+)?<\\/a>|<input[^>]*name=[\"']csrfmiddlewaretoken[\"'][^>]*>)\\;version:\\1",
"icon": "Django.png",
"implies": "Python",
"js": {
"__admin_media_prefix__": "",
"django": ""
},
"website": "https://djangoproject.com"
},
"DocFX": {
"cats": [
4
],
"description": "DocFX is a tool for building and publishing API documentation for .NET projects.",
"icon": "DocFX.svg",
"meta": {
"docfx:navrel": "toc.html",
"docfx:tocrel": "toc.html",
"generator": "docfx\\s([\\d\\.]+)\\;version:\\1"
},
"oss": true,
"website": "https://github.com/dotnet/docfx"
},
"Docker": {
"cats": [
60
],
"cpe": "cpe:/a:docker:engine",
"description": "Docker is a tool designed to make it easier to create, deploy, and run applications by using containers.",
"html": "<!-- This comment is expected by the docker HEALTHCHECK -->",
"icon": "Docker.svg",
"website": "https://www.docker.com/"
},
"DocuSign": {
"cats": [
19
],
"description": "DocuSign allows organisations to manage electronic agreements.",
"dns": {
"TXT": [
"docusign"
]
},
"icon": "DocuSign.svg",
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://www.docusign.com",
"xhr": "docusign\\.net"
},
"Docusaurus": {
"cats": [
4,
57
],
"description": "Docusaurus is a tool for teams to publish documentation websites.",
"icon": "docusaurus.svg",
"implies": [
"React",
"webpack"
],
"js": {
"search.indexName": ""
},
"meta": {
"generator": "^Docusaurus(?: v(.+))?$\\;version:\\1"
},
"website": "https://docusaurus.io/"
},
"Dojo": {
"cats": [
59
],
"cpe": "cpe:/a:dojotoolkit:dojo",
"icon": "Dojo.png",
"js": {
"dojo": "",
"dojo.version.major": "^(.+)$\\;version:\\1"
},
"scripts": "([\\d.]+)/dojo/dojo(?:\\.xd)?\\.js\\;version:\\1",
"website": "https://dojotoolkit.org"
},
"Dokan": {
"cats": [
6
],
"description": "Dokan offers a multi-vendor marketplace solution built on top of wordpress and woocommerce.",
"icon": "Dokan.svg",
"js": {
"dokan": ""
},
"saas": true,
"website": "https://wedevs.com/dokan"
},
"Dokeos": {
"cats": [
21
],
"description": "Dokeos is an e-learning and course management web application.",
"headers": {
"X-Powered-By": "Dokeos"
},
"html": "(?:Portal <a[^>]+>Dokeos|@import \"[^\"]+dokeos_blue)",
"icon": "Dokeos.png",
"implies": [
"PHP",
"Xajax",
"jQuery",
"CKEditor"
],
"meta": {
"generator": "Dokeos"
},
"website": "https://dokeos.com"
},
"DokuWiki": {
"cats": [
8
],
"cookies": {
"DokuWiki": ""
},
"cpe": "cpe:/a:dokuwiki:dokuwiki",
"description": "DokuWiki is a Free open-source wiki software.",
"html": [
"<div[^>]+id=\"dokuwiki__>",
"<a[^>]+href=\"#dokuwiki__"
],
"icon": "DokuWiki.png",
"implies": "PHP",
"meta": {
"generator": "^DokuWiki( Release [\\d-]+)?\\;version:\\1"
},
"website": "https://www.dokuwiki.org"
},
"Dotclear": {
"cats": [
1
],
"cpe": "cpe:/a:dotclear:dotclear",
"headers": {
"X-Dotclear-Static-Cache": ""
},
"icon": "Dotclear.png",
"implies": "PHP",
"website": "http://dotclear.org"
},
"Dotdigital": {
"cats": [
32,
10
],
"description": "Dotdigital is an all-in-one cloud-based customer engagement multichannel marketing platform.",
"icon": "Dotdigital.svg",
"js": {
"dmPt": "\\;confidence:25",
"dm_insight_id": "",
"dmtrackingobjectname": "\\;confidence:75"
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "js/_dmptv([\\d.]+)\\.js\\;version:\\1",
"website": "https://dotdigital.com"
},
"DoubleClick Ad Exchange (AdX)": {
"cats": [
36
],
"description": "DoubleClick Ad Exchange is a real-time marketplace to buy and sell display advertising space.",
"icon": "DoubleClick.svg",
"saas": true,
"scripts": [
"googlesyndication\\.com/pagead/show_ads\\.js",
"tpc\\.googlesyndication\\.com/safeframe",
"googlesyndication\\.com.*abg\\.js"
],
"website": "http://www.doubleclickbygoogle.com/solutions/digital-marketing/ad-exchange/"
},
"DoubleClick Campaign Manager (DCM)": {
"cats": [
36
],
"icon": "DoubleClick.svg",
"scripts": "2mdn\\.net",
"website": "http://www.doubleclickbygoogle.com/solutions/digital-marketing/campaign-manager/"
},
"DoubleClick Floodlight": {
"cats": [
36
],
"icon": "DoubleClick.svg",
"scripts": "https?://fls\\.doubleclick\\.net",
"website": "http://support.google.com/ds/answer/6029713?hl=en"
},
"DoubleClick for Publishers (DFP)": {
"cats": [
36
],
"description": "DoubleClick for Publishers (DFP) is a hosted ad serving platform that streamlines your ad management.",
"icon": "DoubleClick.svg",
"pricing": [
"freemium"
],
"saas": true,
"scripts": "googletagservices\\.com/tag/js/gpt(?:_mobile)?\\.js",
"website": "http://www.google.com/dfp"
},
"Doxygen": {
"cats": [
4
],
"cpe": "cpe:/a:doxygen:doxygen",
"description": "Doxygen is a documentation generator, a tool for writing software reference documentation.",
"html": "(?:<!-- Generated by Doxygen ([\\d.]+)|<link[^>]+doxygen\\.css)\\;version:\\1",
"icon": "Doxygen.png",
"meta": {
"generator": "Doxygen ([\\d.]+)\\;version:\\1"
},
"website": "http://www.doxygen.nl/"
},
"Draft.js": {
"cats": [
20
],
"description": "Draft.js is a JavaScript rich text editor framework, built for React.",
"icon": "draftjs.png",
"scripts": "draft-js(@|/)([\\d.]+)\\;version:\\2",
"website": "https://draftjs.org/"
},
"DreamWeaver": {
"cats": [
20
],
"cpe": "cpe:/a:adobe:dreamweaver",
"description": "Dreamweaver is a development tool for creating, publishing, and managing websites and mobile content.",
"html": "<!--[^>]*(?:InstanceBeginEditable|Dreamweaver([^>]+)target|DWLayoutDefaultTable)\\;version:\\1",
"icon": "DreamWeaver.png",
"js": {
"MM_preloadImages": "",
"MM_showHideLayers": "",
"MM_showMenu": ""
},
"website": "https://www.adobe.com/products/dreamweaver.html"
},
"Drift": {
"cats": [
52
],
"description": "Drift is a conversational marketing platform.",
"icon": "Drift.svg",
"js": {
"drift": "",
"driftt": ""
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.drift.com/"
},
"Drupal": {
"cats": [
1
],
"cpe": "cpe:/a:drupal:drupal",
"description": "Drupal is a free and open-source web content management framework.",
"headers": {
"Expires": "19 Nov 1978",
"X-Drupal-Cache": "",
"X-Generator": "^Drupal(?:\\s([\\d.]+))?\\;version:\\1"
},
"html": "<(?:link|style)[^>]+\"/sites/(?:default|all)/(?:themes|modules)/",
"icon": "Drupal.svg",
"implies": "PHP",
"js": {
"Drupal": ""
},
"meta": {
"generator": "^Drupal(?:\\s([\\d.]+))?\\;version:\\1"
},
"oss": true,
"scripts": "drupal\\.js",
"website": "https://drupal.org"
},
"Drupal Commerce": {
"cats": [
6
],
"cpe": "cpe:/a:commerceguys:commerce",
"description": "Drupal Commerce is open-source ecommerce software that augments the content management system Drupal.",
"dom": "aside#cart-offcanvas, form.commerce-order-item-add-to-cart-form,form.commerce-add-to-cart",
"html": "<[^>]+(?:id=\"block[_-]commerce[_-]cart[_-]cart|class=\"commerce[_-]product[_-]field)",
"icon": "Drupal Commerce.png",
"implies": "Drupal",
"oss": true,
"scripts": [
"/modules/(?:contrib/)?commerce/js/conditions\\.js\\;confidence:50",
"/profiles/commerce_kickstart/modules/contrib/commerce/modules/checkout/commerce_checkout\\.js\\;confidence:50",
"/sites/(?:all|default)/modules/(?:contrib/)?commerce/modules/checkout/commerce_checkout\\.js\\;confidence:50"
],
"website": "http://drupalcommerce.org"
},
"Duda": {
"cats": [
1
],
"description": "Duda is a web design platform for companies that offer web design services.",
"html": "<div[^>]*id=\"P6iryBW0Wu\"",
"icon": "duda.png",
"js": {
"SystemID": "^.*DIRECT.*$",
"d_version": "^(.*)$\\;version:\\1\\;confidence:0"
},
"pricing": [
"low"
],
"saas": true,
"website": "https://www.duda.co/website-builder"
},
"Dukaan": {
"cats": [
6
],
"description": "Dukaan is a hosted ecommerce solution made in India.",
"icon": "Dukaan.svg",
"meta": {
"apple-mobile-web-app-title": "^MyDukaan$"
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "apps\\.mydukaan\\.io/",
"website": "https://mydukaan.io"
},
"Duopana": {
"cats": [
1,
11,
51,
53
],
"description": "Duopana is a platform for creating online communities, blogs and managing collaborative content.",
"html": "(?:<!-- /*BeraCode script)",
"icon": "Duopana.svg",
"scripts": "\\*berajs.beracode.com\\*",
"website": "https://duopana.com/"
},
"Dynamic Yield": {
"cats": [
74,
76
],
"cookies": {
"_dy_geo": "",
"_dy_ses_load_seq": ""
},
"description": "Dynamic Yield is a provider of automated conversion optimisation tools for marketers and retailers.",
"icon": "DynamicYield.svg",
"js": {
"DY.AdDetection": "",
"DYExps.sectionConfig": "",
"_dy_memStore": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "cdn(?:-eu)?\\.dynamicyield\\.\\w+/",
"website": "https://www.dynamicyield.com"
},
"Dynamicweb": {
"cats": [
1,
6
],
"cookies": {
"Dynamicweb": ""
},
"description": "Dynamicweb is a all-in-one platform for content management, ecommerce, digital marketing, product information management (PIM) and integration.",
"icon": "Dynamicweb.svg",
"implies": "Microsoft ASP.NET",
"meta": {
"generator": "Dynamicweb ([\\d.]+)\\;version:\\1"
},
"website": "http://www.dynamicweb.dk"
},
"Dynatrace": {
"cats": [
10
],
"cookies": {
"dtCookie1": ""
},
"icon": "Dynatrace.png",
"js": {
"dtrum": ""
},
"website": "https://www.dynatrace.com"
},
"db-ip": {
"cats": [
79
],
"description": "dbip is a geolocation API and database.",
"icon": "db-ip.png",
"js": {
"ENV.dbip": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "cdn\\.db-ip\\.com",
"website": "https://db-ip.com/",
"xhr": "api\\.db-ip\\.com"
},
"decimal.js": {
"cats": [
59
],
"icon": "decimal.js.png",
"js": {
"Decimal.ROUND_HALF_FLOOR": ""
},
"scripts": [
"decimal[.-]([\\d.]*\\d+)(?:\\.min)?\\.js\\;version:\\1",
"/([\\d.]*\\d+)/decimal(?:\\.min)?\\.js\\;version:\\1",
"decimal(?:\\.min)?\\.js(?:\\?ver(?:sion)?=([\\d.]*\\d+))?\\;version:\\1"
],
"website": "https://mikemcl.github.io/decimal.js/"
},
"deepMiner": {
"cats": [
56
],
"icon": "deepminer.png",
"js": {
"deepMiner": ""
},
"scripts": "deepMiner\\.js",
"website": "https://github.com/deepwn/deepMiner"
}
}

@ -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"
}
}

@ -0,0 +1,984 @@
{
"F5 BigIP": {
"cats": [
64
],
"cookies": {
"F5_HT_shrinked": "",
"F5_ST": "",
"F5_fullWT": "",
"LastMRH_Session": "",
"MRHSHint": "",
"MRHSequence": "",
"MRHSession": "",
"TIN": ""
},
"description": "F5's BIG-IP is a family of products covering software and hardware designed around application availability, access control, and security solutions.",
"headers": {
"server": "^big-?ip$"
},
"icon": "F5.png",
"website": "https://www.f5.com/products/big-ip-services"
},
"FAST ESP": {
"cats": [
29
],
"description": "FAST ESP is a service-oriented architecture development platform which is geared towards production searchable indexes. It provided a flexible framework for creating ETL applications for efficient indexing of searchable content.",
"html": "<form[^>]+id=\"fastsearch\"",
"icon": "FAST ESP.png",
"website": "http://microsoft.com/enterprisesearch"
},
"FAST Search for SharePoint": {
"cats": [
29
],
"description": "FAST Search for SharePoint is the search engine for Microsoft's SharePoint collaboration platform. Its purpose is helping SharePoint users locate and retrieve stored enterprise content.",
"html": "<input[^>]+ name=\"ParametricSearch",
"icon": "FAST Search for SharePoint.png",
"implies": [
"Microsoft SharePoint",
"Microsoft ASP.NET"
],
"url": "Pages/SearchResults\\.aspx\\?k=",
"website": "http://sharepoint.microsoft.com/en-us/product/capabilities/search/Pages/Fast-Search.aspx"
},
"Fabric": {
"cats": [
6
],
"description": "Fabric is a headless commerce platform helping direct-to-consumer and B2B brands utilize an ecommerce platform designed for their needs.",
"dom": "img[data-src*='fabric.imgix.net/']",
"icon": "Fabric.svg",
"meta": {
"powered-by": "FabricInc"
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://fabric.inc"
},
"Facebook": {
"cats": [
5
],
"description": "Facebook is an online social media and social networking service.",
"icon": "Facebook.svg",
"scripts": "//connect\\.facebook\\.([a-z]+)/[^/]*/[a-z]*\\.js",
"website": "http://facebook.com"
},
"Facebook Login": {
"cats": [
69
],
"description": "Facebook Login is a way for people to create accounts and log into your app across multiple platforms.",
"icon": "Facebook.svg",
"js": {
"FB.getLoginStatus": ""
},
"website": "https://developers.facebook.com/docs/facebook-login/"
},
"Facebook Pixel": {
"cats": [
10
],
"description": "Facebook pixel is an analytics tool that allows you to measure the effectiveness of your advertising.",
"dom": "img[src*='facebook.com/tr']",
"icon": "Facebook.svg",
"js": {
"_fbq": ""
},
"website": "http://facebook.com"
},
"Facil-iti": {
"cats": [
68
],
"description": "Facil-iti is a web accessibility overlay which provides support for some people with disabilities and seniors.",
"icon": "Facil-iti.svg",
"scripts": "ws\\.facil-iti\\.com/tag/faciliti-tag\\.min\\.js",
"website": "https://www.facil-iti.com/"
},
"Fact Finder": {
"cats": [
29
],
"description": "Fact Finder is a platform which, combines search, navigation, and merchandising solutions to streamline online search and power sales.",
"html": "<!-- Factfinder",
"icon": "Fact Finder.png",
"scripts": "Suggest\\.ff",
"url": "(?:/ViewParametricSearch|ffsuggest\\.[a-z]htm)",
"website": "http://fact-finder.com"
},
"FancyBox": {
"cats": [
59
],
"description": "FancyBox is a tool for displaying images, html content and multi-media in a Mac-style 'lightbox' that floats overtop of web page.",
"icon": "FancyBox.png",
"implies": "jQuery",
"js": {
"$.fancybox.version": "^(.+)$\\;version:\\1",
"Fancybox.version": "^(.+)$\\;version:\\1",
"jQuery.fancybox.version": "^(.+)$\\;version:\\1"
},
"scripts": "jquery\\.fancybox(?:\\.pack|\\.min)?\\.js(?:\\?v=([\\d.]+))?$\\;version:\\1",
"website": "http://fancyapps.com/fancybox"
},
"FaraPy": {
"cats": [
1
],
"html": "<!-- Powered by FaraPy.",
"icon": "FaraPy.png",
"implies": "Python",
"website": "https://faral.tech"
},
"FareHarbor": {
"cats": [
5,
72
],
"description": "FareHarbor is an booking and schedule management solution intended for tour and activity companies.",
"html": "<iframe[^>]+fareharbor",
"icon": "FareHarbor.svg",
"pricing": [
"poa"
],
"saas": true,
"scripts": "fareharbor\\.com/embeds/api/",
"website": "https://fareharbor.com"
},
"Fast Checkout": {
"cats": [
6
],
"description": "Fast Checkout is a one-click purchases for buyers without requiring a password to log in.",
"icon": "Fast Checkout.svg",
"js": {
"FAST_VERSION": "([\\d\\.]+)\\;version:\\1",
"Fast.Events": ""
},
"pricing": [
"payg"
],
"saas": true,
"scripts": "js\\.fast\\.co/",
"website": "https://www.fast.co"
},
"Fastcommerce": {
"cats": [
6
],
"icon": "Fastcommerce.png",
"meta": {
"generator": "^Fastcommerce"
},
"website": "https://www.fastcommerce.com.br"
},
"Fasterize": {
"cats": [
92
],
"description": "Fasterize is a website accelerator service.",
"icon": "Fasterize.svg",
"js": {
"fstrz": ""
},
"website": "https://www.fasterize.com/"
},
"Fastly": {
"cats": [
31
],
"description": "Fastly is a cloud computing services provider. Fastly's cloud platform provides a content delivery network, Internet security services, load balancing, and video & streaming services.",
"headers": {
"Fastly-Debug-Digest": "",
"Vary": "Fastly-SSL",
"X-Fastly-Request-ID": "",
"x-fastly-origin": "",
"x-via-fastly:": ""
},
"icon": "Fastly.svg",
"pricing": [
"payg"
],
"website": "https://www.fastly.com",
"xhr": "\\.fastly\\.net"
},
"Fastspring": {
"cats": [
6
],
"html": [
"<a [^>]*href=\"https?://sites\\.fastspring\\.com",
"<form [^>]*action=\"https?://sites\\.fastspring\\.com"
],
"icon": "fastspring.png",
"website": "https://fastspring.com"
},
"Fat Zebra": {
"cats": [
41
],
"description": "Fat Zebra provides a process of accepting credit card payments online.",
"html": [
"<(?:iframe|img|form)[^>]+paynow\\.pmnts\\.io",
"<(?:iframe)[^>]+FatZebraFrame"
],
"icon": "fatzebra.png",
"scripts": "paynow\\.pmnts\\.io",
"website": "https://www.fatzebra.com/"
},
"Fat-Free Framework": {
"cats": [
18
],
"headers": {
"X-Powered-By": "^Fat-Free Framework$"
},
"icon": "Fat-Free Framework.png",
"implies": "PHP",
"website": "http://fatfreeframework.com"
},
"Fbits": {
"cats": [
6
],
"icon": "Fbits.png",
"js": {
"fbits": ""
},
"website": "https://www.traycorp.com.br"
},
"Fedora": {
"cats": [
28
],
"cpe": "cpe:/o:fedoraproject:fedora",
"description": "Fedora is a free open-source Linux-based operating system.",
"headers": {
"Server": "Fedora"
},
"icon": "Fedora.png",
"website": "http://fedoraproject.org"
},
"Feedback Fish": {
"cats": [
13
],
"description": "Feedback Fish is a widget for collecting website feedback from users.",
"icon": "feedback-fish.svg",
"scripts": "^https://feedback\\.fish/ff\\.js",
"website": "https://feedback.fish"
},
"Fera": {
"cats": [
90
],
"description": "Fera is a product review and social proof application for ecommerce websites.",
"icon": "Fera.svg",
"js": {
"fera": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "cdn\\.fera\\.ai",
"website": "https://fera.ai/"
},
"FilePond": {
"cats": [
59
],
"description": "FilePond is a JavaScript library for file uploads.",
"icon": "filepond.svg",
"js": {
"FilePond": "",
"FilePond.create": "",
"FilePond.setOptions": ""
},
"scripts": "filepond.js",
"website": "https://pqina.nl/filepond/"
},
"FinanceAds": {
"cats": [
71
],
"description": "FinanceAds is a performance marketing agency that has grown affiliate network for the financial sector.",
"dom": "link[href*='js.financeads.net'], link[href*='js.financeads.com'], a[href*='www.financeads.net/tc.php']",
"icon": "Financeads.png",
"pricing": [
"payg"
],
"saas": true,
"website": "https://www.financeads.com"
},
"Findify": {
"cats": [
29,
76
],
"description": "Findify is an intelligent ecommerce search, navigation and personalisation solution.",
"icon": "Findify.svg",
"js": {
"FindifyAnalytics": "",
"findify": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "@findify/bundle@([\\d.]+)/dist/.+\\.js\\;version:\\1",
"website": "https://www.findify.io"
},
"FingerprintJS": {
"cats": [
59,
83
],
"description": "FingerprintJS is a browser fingerprinting library that queries browser attributes and computes a hashed visitor identifier from them.",
"icon": "FingerprintJS.svg",
"js": {
"Fingerprint": "(\\d)?$\\;version:\\1",
"Fingerprint2": "",
"Fingerprint2.VERSION": "^(.+)$\\;version:\\1",
"FingerprintJS": ""
},
"oss": true,
"pricing": [
"payg"
],
"saas": true,
"scripts": [
"fingerprint(?:/fp)?(\\d)?(?:\\.min)?\\.js\\;version:\\1",
"fingerprintjs(?:\\-pro|2)?(?:@|/)(\\d.*?)?/\\;version:\\1"
],
"website": "https://fingerprintjs.com"
},
"Firebase": {
"cats": [
34
],
"description": "Firebase is a Backend-as-a-Service (Baas) for creating mobile and web applications.",
"icon": "Firebase.png",
"js": {
"firebase.SDK_VERSION": "([\\d.]+)$\\;version:\\1"
},
"scripts": [
"/(?:([\\d.]+)/)?firebase(?:\\.min)?\\.js\\;version:\\1",
"/firebasejs/([\\d.]+)/firebase\\;version:\\1"
],
"website": "https://firebase.com"
},
"Fireblade": {
"cats": [
31
],
"headers": {
"Server": "fbs"
},
"icon": "Fireblade.png",
"website": "http://fireblade.com"
},
"Firepush": {
"cats": [
32
],
"description": "Firepush is an omnichannel marketing app that helps Shopify stores to drive sales with automated web push, email and SMS campaigns.",
"dom": "link[href*='cdn.firepush.net']",
"icon": "Firepush.svg",
"pricing": [
"low",
"freemium",
"recurring"
],
"saas": true,
"scripts": "cdn\\.firepush\\.\\w+",
"website": "https://getfirepush.com"
},
"FirstImpression.io": {
"cats": [
36
],
"description": "FirstImpression.io is a customized ad placements for publisher websites on their platform, with zero technical work.",
"icon": "FirstImpression.io.png",
"js": {
"FI.options": "",
"fiPrebidAnalyticsHandler": ""
},
"scripts": "\\.firstimpression\\.io",
"website": "https://www.firstimpression.io",
"xhr": "\\.firstimpression\\.io"
},
"Fit Analytics": {
"cats": [
5,
76
],
"description": "Fit Analytics is a platform that provides clothing size recommendations for online customers by measuring individual dimensions via webcams.",
"icon": "Fit Analytics.png",
"js": {
"FitAnalyticsWidget": "",
"_fitAnalytics": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.fitanalytics\\.com",
"website": "https://www.fitanalytics.com"
},
"FlagSmith": {
"cats": [
85
],
"description": "FlagSmith is an open-source, fully supported feature flag & remote configuration solution, which provides hosted API to help deployment to a private cloud or on-premises environment.",
"icon": "FlagSmith.svg",
"js": {
"flagsmith": ""
},
"oss": true,
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"scripts": "cdn\\.flagsmith\\.com/",
"website": "https://flagsmith.com"
},
"Flarum": {
"cats": [
2
],
"cpe": "cpe:/a:flarum:flarum",
"description": "Flarum is a discussion platform.",
"html": "<div id=\"flarum-loading\"",
"icon": "flarum.png",
"implies": [
"PHP",
"MySQL"
],
"js": {
"app.cache.discussionList": "",
"app.forum.freshness": ""
},
"website": "http://flarum.org/"
},
"Flask": {
"cats": [
18,
22
],
"headers": {
"Server": "Werkzeug/?([\\d\\.]+)?\\;version:\\1"
},
"icon": "Flask.png",
"implies": "Python",
"website": "http://flask.pocoo.org"
},
"Flat UI": {
"cats": [
66
],
"html": "<link[^>]* href=[^>]+flat-ui(?:\\.min)?\\.css",
"icon": "Flat UI.png",
"implies": "Bootstrap",
"website": "https://designmodo.github.io/Flat-UI/"
},
"FlexCMP": {
"cats": [
1
],
"headers": {
"X-Flex-Lang": "",
"X-Powered-By": "FlexCMP.+\\[v\\. ([\\d.]+)\\;version:\\1"
},
"html": "<!--[^>]+FlexCMP[^>v]+v\\. ([\\d.]+)\\;version:\\1",
"icon": "FlexCMP.png",
"meta": {
"generator": "^FlexCMP"
},
"website": "http://www.flexcmp.com/cms/home"
},
"FlexSlider": {
"cats": [
5
],
"description": "FlexSlider is a free jQuery slider plugin.",
"icon": "FlexSlider.png",
"implies": "jQuery",
"scripts": [
"jquery\\.flexslider(?:\\.min)?\\.js$"
],
"website": "https://woocommerce.com/flexslider/"
},
"Flickity": {
"cats": [
59
],
"js": {
"Flickity": ""
},
"scripts": "/flickity(?:\\.pkgd)?(?:\\.min)?\\.js",
"website": "https://flickity.metafizzy.co/"
},
"Flow": {
"cats": [
6
],
"description": "Flow is an ecommerce platform that enables brands and retailers to sell their merchandise to customers internationally by creating localized shopping experiences.",
"icon": "Flow.png",
"js": {
"flow.countryPicker": "",
"flow_cart_localize": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "(?:shopify-)?cdn\\.flow\\.io/",
"website": "https://www.flow.io/"
},
"FluxBB": {
"cats": [
2
],
"cpe": "cpe:/a:fluxbb:fluxbb",
"html": "<p id=\"poweredby\">[^<]+<a href=\"https?://fluxbb\\.org/\">",
"icon": "FluxBB.png",
"implies": "PHP",
"website": "https://fluxbb.org"
},
"Flyspray": {
"cats": [
13
],
"cookies": {
"flyspray_project": ""
},
"html": "(?:<a[^>]+>Powered by Flyspray|<map id=\"projectsearchform)",
"icon": "Flyspray.png",
"implies": "PHP",
"website": "http://flyspray.org"
},
"Flywheel": {
"cats": [
62,
88
],
"headers": {
"x-fw-hash": "",
"x-fw-serve": "",
"x-fw-server": "^Flywheel(?:/([\\d.]+))?\\;version:\\1",
"x-fw-static": "",
"x-fw-type": ""
},
"icon": "flywheel.svg",
"implies": "WordPress",
"website": "https://getflywheel.com"
},
"Fomo": {
"cats": [
32
],
"description": "Fomo is a social proof marketing platform.",
"icon": "Fomo.png",
"js": {
"fomo.version": "(.+)\\;version:\\1"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "fomo\\.com/api/v",
"website": "https://fomo.com"
},
"Font Awesome": {
"cats": [
17
],
"description": "Font Awesome is a font and icon toolkit based on CSS and Less.",
"html": [
"<link[^>]* href=[^>]+(?:([\\d.]+)/)?(?:css/)?font-awesome(?:\\.min)?\\.css\\;version:\\1",
"<link[^>]* href=[^>]*kit\\-pro\\.fontawesome\\.com/releases/v([0-9.]+)/\\;version:\\1"
],
"icon": "font-awesome.svg",
"js": {
"FontAwesomeCdnConfig": "",
"___FONT_AWESOME___": ""
},
"pricing": [
"low",
"freemium",
"recurring"
],
"scripts": [
"(?:F|f)o(?:n|r)t-?(?:A|a)wesome(?:.*?([0-9a-fA-F]{7,40}|[\\d]+(?:.[\\d]+(?:.[\\d]+)?)?)|)",
"\\.fontawesome\\.com/([0-9a-z]+).js"
],
"website": "https://fontawesome.com/"
},
"Fork CMS": {
"cats": [
1
],
"cpe": "cpe:/a:fork-cms:fork_cms",
"icon": "ForkCMS.png",
"implies": "Symfony",
"meta": {
"generator": "^Fork CMS$"
},
"website": "http://www.fork-cms.com/"
},
"Formitable": {
"cats": [
5,
72
],
"description": "Formitable is an reservation management system for restaurants.",
"icon": "Formitable.svg",
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": [
"formitable\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1",
"cdn\\.formitable\\.com"
],
"website": "https://formitable.com"
},
"ForoshGostar": {
"cats": [
6
],
"cookies": {
"Aws.customer": ""
},
"icon": "ForoshGostar.svg",
"implies": "Microsoft ASP.NET",
"meta": {
"generator": "^Forosh\\s?Gostar.*|Arsina Webshop.*$"
},
"website": "https://www.foroshgostar.com"
},
"Forte": {
"cats": [
41
],
"description": "Forte, a CSG Company offers merchants and partners a broad range of payment solutions.",
"icon": "Forte.svg",
"pricing": [
"payg"
],
"saas": true,
"scripts": "checkout\\.forte\\.net",
"website": "https://www.forte.net"
},
"Forter": {
"cats": [
16
],
"cookies": {
"forterToken": ""
},
"description": "Forter is a SaaS company that provides fraud prevention technology for online retailers and marketplaces.",
"icon": "Forter.svg",
"js": {
"ftr__startScriptLoad": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "forter\\.com",
"website": "https://www.forter.com"
},
"Fortune3": {
"cats": [
6
],
"html": "(?:<link [^>]*href=\"[^\\/]*\\/\\/www\\.fortune3\\.com\\/[^\"]*siterate\\/rate\\.css|Powered by <a [^>]*href=\"[^\"]+fortune3\\.com)",
"icon": "Fortune3.png",
"scripts": "cartjs\\.php\\?(?:.*&)?s=[^&]*myfortune3cart\\.com",
"website": "http://fortune3.com"
},
"Foswiki": {
"cats": [
8
],
"cookies": {
"FOSWIKISTRIKEONE": "",
"SFOSWIKISID": ""
},
"cpe": "cpe:/a:foswiki:foswiki",
"description": "Foswiki is a free open-source collaboration platform.",
"headers": {
"X-Foswikiaction": "",
"X-Foswikiuri": ""
},
"html": [
"<div class=\"foswiki(?:Copyright|Page|Main)\">"
],
"icon": "foswiki.png",
"implies": "Perl",
"js": {
"foswiki": ""
},
"meta": {
"foswiki.SERVERTIME": "",
"foswiki.WIKINAME": ""
},
"website": "http://foswiki.org"
},
"Four": {
"cats": [
41,
91
],
"description": "Pay with four is a Buy now pay later solution.",
"icon": "Four.svg",
"js": {
"Four": ""
},
"saas": true,
"scripts": "scripts\\.paywithfour\\.com",
"website": "https://paywithfour.com/"
},
"Foursixty": {
"cats": [
5
],
"description": "Foursixty is a widget which turns Instagram content and UGC into shoppable galleries.",
"icon": "Foursixty.png",
"js": {
"FoursixtyEmbed": ""
},
"saas": true,
"scripts": "foursixty\\.com",
"website": "https://foursixty.com/"
},
"Foxy.io": {
"cats": [
6
],
"description": "Foxys hosted cart & payment page allow you to sell anything, using your existing website or platform.",
"icon": "foxyio.svg",
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scripts": "cdn\\.foxycart\\.com",
"website": "https://www.foxy.io"
},
"FreeBSD": {
"cats": [
28
],
"cpe": "cpe:/o:freebsd:freebsd",
"description": "FreeBSD is a free and open-source Unix-like operating system.",
"headers": {
"Server": "FreeBSD(?: ([\\d.]+))?\\;version:\\1"
},
"icon": "FreeBSD.png",
"website": "http://freebsd.org"
},
"FreeTextBox": {
"cats": [
24
],
"description": "FreeTextBox is a free open-source HTML Editor.",
"html": "<!-- \\* FreeTextBox v\\d \\((\\d+\\.\\d+\\.\\d+)\\;version:\\1",
"icon": "FreeTextBox.png",
"implies": "Microsoft ASP.NET",
"js": {
"FTB_API": "",
"FTB_AddEvent": ""
},
"website": "http://freetextbox.com"
},
"Freespee": {
"cats": [
10
],
"icon": "Freespee.svg",
"scripts": "analytics\\.freespee\\.com/js/external/fs\\.(?:min\\.)?js",
"website": "https://www.freespee.com"
},
"Freshchat": {
"cats": [
52
],
"description": "Freshchat is a cloud-hosted live messaging and engagement application.",
"icon": "Freshchat.svg",
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "wchat\\.freshchat\\.com/js/widget\\.js",
"website": "https://www.freshworks.com/live-chat-software/"
},
"Freshop": {
"cats": [
6
],
"description": "Freshop is an online platform for grocers.",
"icon": "Freshop.png",
"js": {
"freshop": "",
"freshopInitialized": ""
},
"meta": {
"author": "^Freshop, Inc\\.$"
},
"pricing": [
"payg"
],
"saas": true,
"scripts": "asset(?:cdn)?\\.freshop\\.com/",
"website": "https://www.freshop.com"
},
"Freshworks CRM": {
"cats": [
53,
32,
74
],
"description": "Freshworks CRM is a cloud-based customer relationship management (CRM) solution. Key features include one-click phone, sales lead tracking, sales management, event tracking and more.",
"icon": "Freshworks CRM.svg",
"js": {
"ZargetForm": "",
"zarget": "",
"zargetAPI": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": [
"cdn\\.freshmarketer\\.com",
"cdn\\.zarget\\.com"
],
"website": "https://www.freshworks.com/crm"
},
"Froala Editor": {
"cats": [
24
],
"description": "Froala Editor is a WYSIWYG HTML Editor written in Javascript that enables rich text editing capabilities for applications.",
"html": "<[^>]+class=\"[^\"]*(?:fr-view|fr-box)",
"icon": "Froala.svg",
"implies": [
"jQuery",
"Font Awesome"
],
"website": "http://froala.com/wysiwyg-editor"
},
"FrontPage": {
"cats": [
20
],
"cpe": "cpe:/a:microsoft:frontpage",
"description": "FrontPage is a program for developing and maintaining websites.",
"icon": "FrontPage.png",
"meta": {
"ProgId": "^FrontPage\\.",
"generator": "Microsoft FrontPage(?:\\s((?:Express )?[\\d.]+))?\\;version:\\1"
},
"website": "http://office.microsoft.com/frontpage"
},
"Frontastic": {
"cats": [
51
],
"description": "Frontastic is a Commerce Frontend Platform that unites business and development teams to build commerce sites on headless.",
"headers": {
"frontastic-request-id": ""
},
"icon": "Frontastic.png",
"saas": true,
"website": "https://www.frontastic.cloud/"
},
"Frontity": {
"cats": [
12,
18
],
"description": "Frontity is a React open-source framework focused on WordPress.",
"icon": "frontity.png",
"implies": [
"React",
"webpack",
"WordPress"
],
"meta": {
"generator": "^Frontity"
},
"website": "https://frontity.org"
},
"Frosmo": {
"cats": [
32,
74
],
"description": "Frosmo is a SaaS company which provides AI-driven personalisation products.",
"icon": "Frosmo.png",
"js": {
"_frosmo": "",
"frosmo": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "frosmo\\.easy\\.js",
"website": "https://frosmo.com"
},
"FullStory": {
"cats": [
10
],
"description": "FullStory is a web-based digital intelligence system that helps optimize the client experience.",
"icon": "FullStory.svg",
"js": {
"FS.clearUserCookie": ""
},
"pricing": [
"freemium",
"mid",
"recurring"
],
"saas": true,
"scripts": "\\.fullstory\\.com/",
"website": "https://www.fullstory.com"
},
"Fusion Ads": {
"cats": [
36
],
"icon": "Fusion Ads.png",
"js": {
"_fusion": ""
},
"scripts": "^[^\\/]*//[ac]dn\\.fusionads\\.net/(?:api/([\\d.]+)/)?\\;version:\\1",
"website": "http://fusionads.net"
},
"Future Shop": {
"cats": [
6
],
"icon": "futureshop.png",
"scripts": "future-shop.*\\.js",
"website": "https://www.future-shop.jp"
}
}

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/"
}
}

@ -0,0 +1,922 @@
{
"LEPTON": {
"cats": [
1
],
"cpe": "cpe:/a:lepton-cms:lepton",
"icon": "LEPTON.png",
"implies": "PHP",
"meta": {
"generator": "LEPTON"
},
"website": "http://www.lepton-cms.org"
},
"LKQD": {
"cats": [
36
],
"description": "LKQD is a video advertising platform that enables publishers to serve video ads across multiple devices and formats.",
"dom": "iframe[src*='.lkqd.net']",
"icon": "LKQD.svg",
"js": {
"lkqdCall": "",
"lkqdErrorCount": "",
"lkqdSettings": "",
"lkqd_http_response": ""
},
"scripts": "\\.lkqd\\.net",
"website": "https://wiki.lkqd.com",
"xhr": "\\.lkqd\\.net"
},
"LOU": {
"cats": [
58
],
"description": "LOU is a Digital Adoption Platform that streamlines user onboarding and training.",
"icon": "LOU.png",
"scripts": "cdn\\.louassist\\.com*",
"website": "https://www.louassist.com"
},
"Lagoon": {
"cats": [
62
],
"headers": {
"X-LAGOON": "",
"x-lagoon": ""
},
"icon": "Lagoon.png",
"website": "https://www.amazee.io/hosting"
},
"Laravel": {
"cats": [
18
],
"cookies": {
"laravel_session": ""
},
"cpe": "cpe:/a:laravel:laravel",
"description": "Laravel is a free, open-source PHP web framework.",
"icon": "Laravel.svg",
"implies": "PHP",
"js": {
"Laravel": ""
},
"website": "https://laravel.com"
},
"Laterpay": {
"cats": [
41,
91
],
"description": "Laterpay is a service that simplifies payments on the Internet. In addition to the classic immediate purchase option, Laterpay also allows you to buy digital content such as articles or videos now and pay later.",
"icon": "laterpay.png",
"meta": {
"laterpay:connector:callbacks:on_user_has_access": "deobfuscateText"
},
"scripts": "https?://connectormwi\\.laterpay\\.net/([0-9.]+)[a-zA-z-]*/live/[\\w-]+\\.js\\;version:\\1",
"website": "https://www.laterpay.net/"
},
"LaunchDarkly": {
"cats": [
85
],
"description": "LaunchDarkly is a continuous delivery and feature flags as a service platform that integrates into a company's current development cycle.",
"dom": "link[href*='.launchdarkly.com']",
"icon": "LaunchDarkly.svg",
"js": {
"DDC.WS.state": "",
"launchDarkly": ""
},
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scripts": "(?:\\.|\\-)launchdarkly(?:\\.com/|\\-sdk\\.)",
"website": "https://launchdarkly.com"
},
"Launchrock": {
"cats": [
74,
51
],
"description": "Launchrock is an online tool designed to help capture email addresses and create online product launching events.",
"icon": "Launchrock.svg",
"js": {
"lrIgnition": "\\;confidence:25",
"lrLoadedJs": "\\;confidence:25",
"lrSiteSettingAsBoolean": "\\;confidence:25",
"lrignition": "\\;confidence:25"
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"scripts": "js/ignition-current\\.min\\.js\\;confidence:50",
"website": "https://www.launchrock.com"
},
"Leadinfo": {
"cats": [
10
],
"description": "Leadinfo is a lead generation software that enables you to recognise B2B website visitors.",
"icon": "Leadinfo.svg",
"js": {
"GlobalLeadinfoNamespace": "\\;confidence:50",
"leadinfo": "\\;confidence:50"
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "cdn\\.leadinfo\\.net",
"website": "https://www.leadinfo.com"
},
"Leaflet": {
"cats": [
35
],
"description": "Leaflet is the open-source JavaScript library for mobile-friendly interactive maps.",
"icon": "Leaflet.png",
"js": {
"L.DistanceGrid": "",
"L.PosAnimation": "",
"L.version": "^(.+)$\\;version:\\1\\;confidence:0"
},
"scripts": "leaflet.{0,32}\\.js",
"website": "http://leafletjs.com"
},
"Leanplum": {
"cats": [
32,
74
],
"description": "Leanplum is a multi-channel messaging and campaign orchestration platform.",
"icon": "Leanplum.svg",
"js": {
"Leanplum": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "npm/leanplum-sdk\\@([\\d.]+)\\;version:\\1",
"website": "https://www.leanplum.com"
},
"Lede": {
"cats": [
1
],
"description": "Lede is a publishing platform and growth program designed to support journalism startups and news media.",
"html": [
"<a [^>]*href=\"[^\"]+joinlede.com"
],
"icon": "lede.png",
"implies": [
"WordPress",
"WordPress VIP"
],
"js": {
"ledeChartbeatViews": "",
"ledeEngagement": "",
"ledeEngagementReset": ""
},
"meta": {
"og:image": "https?\\:\\/\\/lede-admin"
},
"saas": true,
"website": "https://joinlede.com/"
},
"Legal Monster": {
"cats": [
67
],
"description": "Legal Monster is a consent and privacy management solution, which helps businesses maintain compliance with ePrivacy, marketing requirements and General Data Protection Regulation (GDPR).",
"icon": "Legal Monster.svg",
"js": {
"legal.__VERSION__": "([\\d.]+)\\;version:\\1"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "\\.legalmonster\\.com/",
"website": "https://www.legalmonster.com"
},
"Less": {
"cats": [
19
],
"html": "<link[^>]+ rel=\"stylesheet/less\"",
"icon": "Less.png",
"website": "http://lesscss.org"
},
"Let's Encrypt": {
"cats": [
70
],
"certIssuer": "Let's Encrypt",
"description": "Let's Encrypt is a free, automated, and open certificate authority.",
"icon": "Lets Encrypt.svg",
"website": "https://letsencrypt.org/"
},
"Liferay": {
"cats": [
1
],
"cpe": "cpe:/a:liferay:liferay_portal",
"description": "Liferay is an open-source company that provides free documentation and paid professional service to users of its software.",
"headers": {
"Liferay-Portal": "[a-z\\s]+([\\d.]+)\\;version:\\1"
},
"icon": "Liferay.svg",
"js": {
"Liferay": ""
},
"oss": true,
"pricing": [
"poa"
],
"website": "https://www.liferay.com"
},
"Lift": {
"cats": [
18
],
"cpe": "cpe:/a:liftweb:lift",
"headers": {
"X-Lift-Version": "(.+)\\;version:\\1"
},
"icon": "Lift.png",
"implies": "Scala",
"website": "http://liftweb.net"
},
"LightMon Engine": {
"cats": [
1
],
"cookies": {
"lm_online": ""
},
"html": "<!-- Lightmon Engine Copyright Lightmon",
"icon": "LightMon Engine.png",
"implies": "PHP",
"meta": {
"generator": "LightMon Engine"
},
"website": "http://lightmon.ru"
},
"Lightbox": {
"cats": [
59
],
"cpe": "cpe:/a:lightbox_photo_gallery_project:lightbox_photo_gallery",
"html": "<link [^>]*href=\"[^\"]+lightbox(?:\\.min)?\\.css",
"icon": "Lightbox.png",
"scripts": "lightbox(?:-plus-jquery)?.{0,32}\\.js",
"website": "http://lokeshdhakar.com/projects/lightbox2/"
},
"Lightspeed eCom": {
"cats": [
6
],
"html": "<!-- \\[START\\] 'blocks/head\\.rain' -->",
"icon": "Lightspeed.svg",
"pricing": [
"low"
],
"saas": true,
"scripts": "http://assets\\.webshopapp\\.com",
"url": "seoshop.webshopapp.com",
"website": "http://www.lightspeedhq.com/products/ecommerce/"
},
"LinkSmart": {
"cats": [
36
],
"icon": "LinkSmart.png",
"js": {
"LS_JSON": "",
"LinkSmart": "",
"_mb_site_guid": ""
},
"scripts": "^https?://cdn\\.linksmart\\.com/linksmart_([\\d.]+?)(?:\\.min)?\\.js\\;version:\\1",
"website": "http://linksmart.com"
},
"Linkedin Insight Tag": {
"cats": [
10
],
"dom": "noscript > img[src*='dc.ads.linkedin.com']",
"icon": "Linkedin.svg",
"js": {
"_linkedin_data_partner_id": ""
},
"scripts": "snap\\.licdn\\.com/li\\.lms-analytics/insight\\.min\\.js",
"website": "https://business.linkedin.com/marketing-solutions/insight-tag"
},
"Linkedin Sign-in": {
"cats": [
69
],
"description": "Linkedin Sign-In is an authentication system that reduces the burden of login for users, by enabling them to sign in with their Linkedin account.",
"icon": "Linkedin.svg",
"js": {
"OnLinkedInAuth": "",
"onLinkedInLoad": ""
},
"scripts": "platform\\.linkedin\\.com/(?:.*)?in\\.js(?:\\?version)?([\\d.]+)?\\;version:\\1",
"website": "https://www.linkedin.com/developers"
},
"Liquid Web": {
"cats": [
62
],
"headers": {
"x-lw-cache": ""
},
"icon": "liquidweb.svg",
"website": "https://www.liquidweb.com"
},
"List.js": {
"cats": [
59
],
"icon": "List.js.png",
"js": {
"List": "\\;confidence:50"
},
"scripts": [
"list\\.js/\\;confidence:50",
"@([\\d.]+)/(?:/dist)?list\\.(?:min\\.)?js\\;version:\\1"
],
"website": "http://listjs.com"
},
"Listrak": {
"cats": [
32
],
"description": "Listrak is a AI-based marketing automation and CRM solutions that unify, interpret and personalise data to engage customer across channels and devices.",
"icon": "Listrak.png",
"js": {
"_LTKSignup": "",
"_LTKSubscriber": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": [
"(?:cdn|s1)\\.listrakbi\\.com",
"services\\.listrak\\.com"
],
"website": "https://www.listrak.com"
},
"LiteSpeed": {
"cats": [
22
],
"cpe": "cpe:/a:litespeedtech:litespeed_web_server",
"description": "LiteSpeed is a high-scalability web server.",
"headers": {
"Server": "^LiteSpeed$"
},
"icon": "LiteSpeed.svg",
"website": "http://litespeedtech.com"
},
"Litespeed Cache": {
"cats": [
23,
87
],
"description": "LiteSpeed Cache is an all-in-one site acceleration plugin for WordPress.",
"headers": {
"x-litespeed-cache": ""
},
"icon": "litespeed-cache.png",
"requires": "LiteSpeed",
"website": "https://wordpress.org/plugins/litespeed-cache/"
},
"Lithium": {
"cats": [
1
],
"cookies": {
"LithiumVisitor": ""
},
"html": " <a [^>]+Powered by Lithium",
"icon": "Lithium.png",
"implies": "PHP",
"js": {
"LITHIUM": ""
},
"website": "https://www.lithium.com"
},
"Live Story": {
"cats": [
1
],
"icon": "LiveStory.png",
"js": {
"LSHelpers": "",
"LiveStory": ""
},
"website": "https://www.livestory.nyc/"
},
"LiveAgent": {
"cats": [
52
],
"description": "LiveAgent is an online live chat platform. The software provides a ticket management system.",
"icon": "LiveAgent.png",
"js": {
"LiveAgent": ""
},
"pricing": [
"payg"
],
"saas": true,
"website": "https://www.liveagent.com"
},
"LiveChat": {
"cats": [
52
],
"description": "LiveChat is an online customer service software with online chat, help desk software, and web analytics capabilities.",
"icon": "LiveChat.png",
"pricing": [
"payg"
],
"saas": true,
"scripts": "cdn\\.livechatinc\\.com/.*tracking\\.js",
"website": "http://livechatinc.com"
},
"LiveHelp": {
"cats": [
52,
53
],
"description": "LiveHelp is an online chat tool.",
"icon": "LiveHelp.png",
"js": {
"LHready": ""
},
"pricing": [
"low"
],
"saas": true,
"website": "http://www.livehelp.it"
},
"LiveIntent": {
"cats": [
75,
36
],
"description": "LiveIntent is an email ad monetization platform.",
"icon": "LiveIntent.svg",
"js": {
"LI.advertiserId": "\\d+"
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.liadm\\.com",
"website": "https://www.liveintent.com",
"xhr": "\\.liadm\\.com"
},
"LiveJournal": {
"cats": [
11
],
"description": "LiveJournal is a social networking service where users can keep a blog, journal or diary.",
"icon": "LiveJournal.png",
"url": "\\.livejournal\\.com",
"website": "http://www.livejournal.com"
},
"LivePerson": {
"cats": [
52
],
"description": "LivePerson is a tool for conversational chatbots and messaging.",
"icon": "LivePerson.png",
"pricing": [
"poa"
],
"saas": true,
"scripts": "^https?://lptag\\.liveperson\\.net/tag/tag\\.js",
"website": "https://www.liveperson.com/"
},
"LiveRamp PCM": {
"cats": [
67
],
"description": "LiveRamp PCM is a preference and consent management platform that enables comply with the ePrivacy Directive, GDPR, CCPA, and other data protection and privacy laws and regulations.",
"dom": "iframe[src*='gdpr-consent-tool\\.privacymanager\\.io']",
"icon": "LiveRamp.svg",
"js": {
"wpJsonpLiverampGdprCmp": ""
},
"scripts": "gdpr\\.privacymanager\\.io",
"website": "https://liveramp.com/our-platform/preference-consent-management"
},
"LiveStreet CMS": {
"cats": [
1
],
"headers": {
"X-Powered-By": "LiveStreet CMS"
},
"icon": "LiveStreet CMS.png",
"implies": "PHP",
"js": {
"LIVESTREET_SECURITY_KEY": ""
},
"website": "http://livestreetcms.com"
},
"LiveZilla": {
"cats": [
52
],
"description": "LiveZilla is a web-based live support platform.",
"dom": "#lz_overlay_chat",
"icon": "LiveZilla.png",
"js": {
"lz_chat_execute": "",
"lz_code_id": "(?:[\\w\\d]+)",
"lz_tracking_set_widget_visibility": ""
},
"pricing": [
"onetime",
"mid"
],
"saas": false,
"website": "https://www.livezilla.net"
},
"Livefyre": {
"cats": [
15
],
"description": "Livefyre is a platform that integrates with the social web to boost social interaction.",
"html": "<[^>]+(?:id|class)=\"livefyre",
"icon": "Livefyre.png",
"js": {
"FyreLoader": "",
"L.version": "^(.+)$\\;confidence:0\\;version:\\1",
"LF.CommentCount": "",
"fyre": ""
},
"scripts": "livefyre_init\\.js",
"website": "http://livefyre.com"
},
"Liveinternet": {
"cats": [
10
],
"html": [
"<script [^>]*>[\\s\\S]*//counter\\.yadro\\.ru/hit",
"<!--LiveInternet counter-->",
"<!--/LiveInternet-->",
"<a href=\"http://www\\.liveinternet\\.ru/click\""
],
"icon": "Liveinternet.png",
"website": "http://liveinternet.ru/rating/"
},
"Livewire": {
"cats": [
18,
19
],
"html": "<[^>]{1,512}\\bwire:",
"icon": "Livewire.png",
"implies": "Laravel",
"js": {
"livewire": ""
},
"scripts": "livewire(?:\\.min)?\\.js",
"website": "https://laravel-livewire.com"
},
"LocalFocus": {
"cats": [
25
],
"html": "<iframe[^>]+\\blocalfocus\\b",
"icon": "LocalFocus.png",
"implies": [
"Angular",
"D3"
],
"website": "https://www.localfocus.nl/en/"
},
"Localised": {
"cats": [
6
],
"description": "Localised is local-first ecommerce platform.",
"dom": {
"img[src='.localised.com']": {
"attributes": {
"src": ""
}
},
"span": {
"attributes": {
"text": ".+Localised Inc\\..+"
}
}
},
"icon": "Localised.png",
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.localised.com",
"xhr": "api\\.localised\\.com"
},
"LocomotiveCMS": {
"cats": [
1
],
"html": "<link[^>]*/sites/[a-z\\d]{24}/theme/stylesheets",
"icon": "LocomotiveCMS.png",
"implies": [
"Ruby on Rails",
"MongoDB"
],
"website": "https://www.locomotivecms.com"
},
"Lodash": {
"cats": [
59
],
"cpe": "cpe:/a:lodash:lodash",
"description": "Lodash is a JavaScript library which provides utility functions for common programming tasks using the functional programming paradigm.",
"excludes": "Underscore.js",
"icon": "Lo-dash.png",
"js": {
"_.VERSION": "^(.+)$\\;confidence:0\\;version:\\1",
"_.differenceBy": "",
"_.templateSettings.imports._.templateSettings.imports._.VERSION": "^(.+)$\\;version:\\1"
},
"scripts": "lodash.*\\.js",
"website": "http://www.lodash.com"
},
"LogRocket": {
"cats": [
10
],
"description": "LogRocket records videos of user sessions with logs and network data.",
"icon": "LogRocket.svg",
"scripts": [
"cdn\\.logrocket\\.(com|io)",
"cdn\\.lr-ingest\\.io"
],
"website": "https://logrocket.com/"
},
"Loggly": {
"cats": [
10
],
"description": "Loggly is a cloud-based log management service provider.",
"dom": "link[href*='.loggly.com']",
"icon": "Loggly.svg",
"js": {
"LogglyTracker": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "\\.loggly\\.com/",
"website": "https://www.loggly.com"
},
"Login with Amazon": {
"cats": [
69
],
"description": "Login with Amazon allows you use your Amazon user name and password to sign into and share information with participating third-party websites or apps.",
"icon": "Amazon.svg",
"js": {
"onAmazonLoginReady": ""
},
"website": "https://developer.amazon.com/apps-and-games/login-with-amazon"
},
"LoginRadius": {
"cats": [
5,
69
],
"description": "LoginRadius is a cloud based SaaS Customer Identity Access Management platform based in Canada.",
"icon": "LoginRadius.svg",
"js": {
"LoginRadius": "",
"LoginRadiusDefaults": "",
"LoginRadiusSDK": "",
"LoginRadiusUtility": ""
},
"pricing": [
"low",
"freemium",
"recurring"
],
"saas": true,
"scripts": [
"\\.loginradius\\.com",
"\\.lrcontent\\.com"
],
"website": "https://www.loginradius.com"
},
"Loja Integrada": {
"cats": [
6
],
"headers": {
"X-Powered-By": "vtex-integrated-store"
},
"icon": "Loja Integrada.png",
"js": {
"LOJA_ID": ""
},
"website": "https://lojaintegrada.com.br/"
},
"Loja Mestre": {
"cats": [
6
],
"description": "Loja Mestre is an all-in-one ecommerce platform from Brazil.",
"icon": "Loja Mestre.svg",
"meta": {
"webmaster": "www\\.lojamestre\\.\\w+\\.br"
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "lojamestre\\.\\w+\\.br",
"website": "https://www.lojamestre.com.br/"
},
"Loja Virtual": {
"cats": [
6
],
"description": "Loja Virtual is an all-in-one ecommerce platform from Brazil.",
"icon": "Loja Virtual.svg",
"js": {
"id_loja_virtual": "",
"link_loja_virtual": "",
"loja_sem_dominio": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": [
"/js/ljvt_v(\\d+)/\\;version:\\1\\;confidence:20",
"cdn1\\.solojavirtual\\.com"
],
"website": "https://www.lojavirtual.com.br"
},
"Loja2": {
"cats": [
6
],
"description": "Loja2 is an all-in-one ecommerce platform from Brazil.",
"icon": "Loja2.svg",
"pricing": [
"low",
"freemium",
"recurring"
],
"saas": true,
"scripts": "loja2\\.com\\.br",
"website": "https://www.loja2.com.br"
},
"Lootly": {
"cats": [
84,
32
],
"description": "Lootly is a loyalty and referral marketing automation software suite for ecommerce businesses.",
"dom": "iframe[src*='lootly.io/']",
"icon": "Lootly.png",
"js": {
"Lootly.config": "",
"lootlyWidgetInit": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "lootly\\.io/",
"website": "https://lootly.io"
},
"Loox": {
"cats": [
90
],
"description": "Loox is a reviews app for Shopify that helps you gather reviews and user-generated photos from your customers.",
"icon": "Loox.svg",
"js": {
"loox_global_hash": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "loox\\.io/widget",
"website": "https://loox.app"
},
"Lotus Domino": {
"cats": [
22
],
"cpe": "cpe:/a:ibm:lotus_domino",
"headers": {
"Server": "Lotus-Domino"
},
"icon": "Lotus Domino.png",
"implies": "Java",
"website": "http://www-01.ibm.com/software/lotus/products/domino"
},
"LoyaltyLion": {
"cats": [
84
],
"description": "LoyaltyLion is a data-driven ecommerce loyalty and engagement platform.",
"icon": "LoyaltyLion.svg",
"js": {
"loyaltylion.version": "([\\d\\-]+)\\;version:\\1"
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "sdk\\.loyaltylion\\.net/",
"website": "https://loyaltylion.com"
},
"Lua": {
"cats": [
27
],
"cpe": "cpe:/a:lua:lua",
"description": "Lua is a multi-paradigm programming language designed primarily for embedded use in applications.",
"headers": {
"X-Powered-By": "\\bLua(?: ([\\d.]+))?\\;version:\\1"
},
"icon": "Lua.png",
"website": "http://www.lua.org"
},
"Lucene": {
"cats": [
34
],
"cpe": "cpe:/a:apache:lucene",
"description": "Lucene is a free and open-source search engine software library.",
"icon": "Lucene.png",
"implies": "Java",
"website": "http://lucene.apache.org/core/"
},
"Luigis Box": {
"cats": [
10,
29
],
"icon": "Luigisbox.svg",
"js": {
"Luigis": ""
},
"website": "https://www.luigisbox.com"
},
"libwww-perl-daemon": {
"cats": [
22
],
"headers": {
"Server": "libwww-perl-daemon(?:/([\\d\\.]+))?\\;version:\\1"
},
"icon": "libwww-perl-daemon.png",
"implies": "Perl",
"website": "http://metacpan.org/pod/HTTP::Daemon"
},
"lighttpd": {
"cats": [
22
],
"headers": {
"Server": "lighttpd(?:/([\\d.]+))?\\;version:\\1"
},
"icon": "lighttpd.png",
"website": "http://www.lighttpd.net"
}
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,502 @@
{
"NEO - Omnichannel Commerce Platform": {
"cats": [
6
],
"description": "NEO is an ecommerce software that manages multiple online stores.",
"dom": "#svr[value^=\"NEOWEBV\"]",
"headers": {
"powered": "jet-neo"
},
"icon": "Plataforma NEO.svg",
"url": "\\.plataformaneo\\.com",
"website": "https://www.jetecommerce.com.br"
},
"NSW Design System": {
"cats": [
66
],
"dom": ".nsw-container, .nsw-header, .nsw-icon, link[href*='nsw-design-system']",
"icon": "NSW Design System.svg",
"js": {
"NSW.initSite": ""
},
"website": "https://www.digital.nsw.gov.au/digital-design-system"
},
"NTLM": {
"cats": [
16
],
"description": "NTLM is an authentication method commonly used by Windows servers",
"headers": {
"WWW-Authenticate": "^NTLM"
},
"website": "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-ntht/"
},
"NVD3": {
"cats": [
25
],
"description": "NVD3 is a JavaScript visualisation library that is a free open-source tool.",
"html": "<link[^>]* href=[^>]+nv\\.d3(?:\\.min)?\\.css",
"icon": "NVD3.png",
"implies": "D3",
"js": {
"nv.addGraph": "",
"nv.version": "^(.+)$\\;confidence:0\\;version:\\1"
},
"scripts": "nv\\.d3(?:\\.min)?\\.js",
"website": "http://nvd3.org"
},
"Nacelle": {
"cats": [
6
],
"description": "Nacelle is a headless commerce platform",
"icon": "Nacelle.svg",
"js": {
"nacelleEventData": ""
},
"website": "https://nacelle.com/"
},
"Nagich": {
"cats": [
68
],
"description": "Nagich is a website accessibility overlay provider from Israel.",
"icon": "Nagich.svg",
"js": {
"interdeal.version": "([\\d.]+)\\;version:\\1"
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.nagich\\.co(?:m|\\.il)/core/([\\d.]+)/accessibility\\.js\\;version:\\1",
"website": "https://www.nagich.co.il"
},
"Najva": {
"cats": [
32
],
"description": "Najva is a retention marketing solution that offers push notification and email marketing.",
"icon": "Najva.png",
"js": {
"Najva.identifyEmailSubscriber": ""
},
"pricing": [
"low",
"freemium"
],
"saas": true,
"scripts": "app\\.najva\\.com/",
"website": "https://www.najva.com"
},
"Narrativ": {
"cats": [
71
],
"description": "Narrativ is a subscription technology platform for brands to acquire new customers through trusted creators.",
"icon": "Narrativ.png",
"scripts": "static\\.narrativ\\.com/",
"website": "https://narrativ.com/"
},
"Navegg": {
"cats": [
10
],
"icon": "Navegg.png",
"scripts": "tag\\.navdmp\\.com",
"website": "https://www.navegg.com/"
},
"Neos CMS": {
"cats": [
1
],
"excludes": "TYPO3 CMS",
"headers": {
"X-Flow-Powered": "Neos/?(.+)?$\\;version:\\1"
},
"icon": "Neos.svg",
"implies": "Neos Flow",
"url": "/neos/",
"website": "https://neos.io"
},
"Neos Flow": {
"cats": [
18
],
"excludes": "TYPO3 CMS",
"headers": {
"X-Flow-Powered": "Flow/?(.+)?$\\;version:\\1"
},
"icon": "Neos.svg",
"implies": "PHP",
"website": "https://flow.neos.io"
},
"Nepso": {
"cats": [
1
],
"headers": {
"X-Powered-CMS": "Nepso"
},
"icon": "nepso.svg",
"website": "https://www.nepso.com"
},
"NetSuite": {
"cats": [
6
],
"cookies": {
"NS_VER": ""
},
"icon": "NetSuite.png",
"website": "http://netsuite.com"
},
"Netlify": {
"cats": [
62,
31
],
"description": "Netlify providers hosting and server-less backend services for web applications and static websites.",
"headers": {
"Server": "^Netlify",
"X-NF-Request-ID": ""
},
"icon": "Netlify.svg",
"url": "^https?://[^/]+\\.netlify\\.(?:com|app)/",
"website": "https://www.netlify.com/",
"xhr": "cdn\\.netlify\\.com"
},
"Neto": {
"cats": [
6
],
"description": "Neto is the only Australian B2B and multi-channel ecommerce platform that provides an all-in-one solution for ecommerce, POS, inventory management, order management, and shipping labelling.",
"icon": "Neto.svg",
"js": {
"NETO": ""
},
"scripts": "jquery\\.neto.*\\.js",
"website": "https://www.neto.com.au"
},
"Nette Framework": {
"cats": [
18
],
"cookies": {
"nette-browser": ""
},
"headers": {
"X-Powered-By": "^Nette Framework"
},
"html": [
"<input[^>]+data-nette-rules",
"<div[^>]+id=\"snippet-",
"<input[^>]+id=\"frm-"
],
"icon": "Nette Framework.png",
"implies": "PHP",
"js": {
"Nette": "",
"Nette.version": "^(.+)$\\;version:\\1"
},
"website": "https://nette.org"
},
"Neve": {
"cats": [
80
],
"description": "Neve is a super-fast, easily customizable, multi-purpose theme that works perfectly with Gutenberg and the most popular page builders as well as WooCommerce",
"dom": {
"body[class*='neve-theme']": {
"text": ""
},
"link[id*='neve-style']": {
"attributes": {
"href": "neve\\S*\\.css(?:\\?ver=([0-9.]+))?\\;version:\\1"
}
}
},
"icon": "themeisle.png",
"requires": "WordPress",
"scripts": "themes/neve\\S*\\.js(?:\\?ver=([0-9.]+))?\\;version:\\1",
"website": "https://themeisle.com/themes/neve/"
},
"New Relic": {
"cats": [
10
],
"description": "New Relic is a SaaS offering that focuses on performance and availability monitoring.",
"dom": "link[href*='.newrelic.com']",
"icon": "New Relic.svg",
"js": {
"NREUM": "",
"newrelic": ""
},
"pricing": [
"freemium",
"payg",
"low",
"mid",
"recurring"
],
"saas": true,
"website": "https://newrelic.com"
},
"Newspack": {
"cats": [
87
],
"description": "Newspack is an open-source publishing platform built on WordPress for small to medium sized news organizations. It is an “opinionated” platform that stakes out clear, best-practice positions on technology, design, and business practice for news publishers.",
"dom": "a.imprint[href*='newspack.pub']",
"icon": "NewspackLogo.png",
"oss": true,
"website": "https://github.com/Automattic/newspack-plugin"
},
"Newspack by Automattic": {
"cats": [
88
],
"description": "Automattic's Newspack service is an all-in-one platform designed for small and medium-sized news organizations that simplifies publishing and drives audience and revenue right out of the box.",
"headers": {
"host-header": "Newspack"
},
"icon": "NewspackLogo.png",
"implies": "Newspack",
"pricing": [
"mid",
"recurring"
],
"website": "https://newspack.pub/"
},
"Next.js": {
"cats": [
18,
22
],
"cpe": "cpe:/a:zeit:next.js",
"description": "Next.js is a React framework for developing single page Javascript applications.",
"headers": {
"x-powered-by": "^Next\\.js ?([0-9.]+)?\\;version:\\1"
},
"icon": "vercel.svg",
"implies": [
"React",
"webpack",
"Node.js"
],
"js": {
"__NEXT_DATA__": ""
},
"website": "https://nextjs.org"
},
"NextGEN Gallery": {
"cats": [
7,
87
],
"cpe": "cpe:/a:imagely:nextgen_gallery",
"description": "NextGEN Gallery is a free open-source image management plugin for the WordPress content management system.",
"html": [
"<!-- <meta name=\"NextGEN\" version=\"([\\d.]+)\" /> -->\\;version:\\1"
],
"icon": "NextGEN Gallery.png",
"requires": "WordPress",
"scripts": "/nextgen-gallery/js/",
"website": "https://www.imagely.com/wordpress-gallery-plugin"
},
"Nextsale": {
"cats": [
5,
32
],
"description": "Nextsale is a conversion optimisation platform that provides social proof and urgency tools for ecommerce websites.",
"icon": "Nextsale.svg",
"js": {
"NextsaleObject": ""
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"scripts": "(?:api|sdk)\\.nextsale\\.io/",
"website": "https://nextsale.io"
},
"Nginx": {
"cats": [
22,
64
],
"cpe": "cpe:/a:nginx:nginx",
"description": "Nginx is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache.",
"headers": {
"Server": "nginx(?:/([\\d.]+))?\\;version:\\1",
"X-Fastcgi-Cache": ""
},
"icon": "Nginx.svg",
"website": "http://nginx.org/en"
},
"NitroPack": {
"cats": [
23
],
"description": "NitroPack creates optimised HTML cache for fast page loading experience.",
"icon": "NitroPack.svg",
"meta": {
"generator": "NitroPack"
},
"website": "https://nitropack.io/"
},
"Node.js": {
"cats": [
27
],
"cpe": "cpe:/a:nodejs:node.js",
"description": "Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside a web browser.",
"icon": "node.js.png",
"website": "http://nodejs.org"
},
"NodeBB": {
"cats": [
2
],
"cpe": "cpe:/a:nodebb:nodebb",
"headers": {
"X-Powered-By": "^NodeBB$"
},
"icon": "NodeBB.png",
"implies": "Node.js",
"scripts": "^/nodebb\\.min\\.js\\?",
"website": "https://nodebb.org"
},
"Nosto": {
"cats": [
76,
74
],
"description": "Nosto is an ecommerce platform providing product recommendations based on individual behavioral data.",
"icon": "Nosto.svg",
"js": {
"nosto": "\\;confidence:50",
"nostojs": "\\;confidence:50"
},
"meta": {
"nosto-version": "([\\d.]+)\\;version:\\1"
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "connect\\.nosto\\.\\w+/",
"website": "https://www.nosto.com"
},
"Nukeviet CMS": {
"cats": [
1
],
"description": "NukeViet CMS is a Vietnamese content management system.",
"icon": "Nukeviet CMS.png",
"js": {
"nv_DigitalClock": "\\;confidence:50",
"nv_is_change_act_confirm": "\\;confidence:50"
},
"meta": {
"generator": "NukeViet v([\\d.]+)\\;version:\\1"
},
"oss": true,
"pricing": [
"freemium"
],
"website": "https://nukeviet.vn/en/"
},
"Nuqlium": {
"cats": [
76,
29
],
"description": "Nuqlium is an integrated cloud-based online merchandising platform.",
"icon": "Nuqlium.png",
"js": {
"nuqliumObject": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.nuqlium\\.com/api",
"website": "https://www.nuqlium.com"
},
"Nuvemshop": {
"cats": [
6
],
"description": "Nuvemshop is a website builder with customizable layouts, product, shipping and payment management, marketing tools and a mobile app.",
"dom": "a[href*='www.nuvemshop.com.br'][title*='Nuvemshop'][target='_blank']",
"icon": "Nuvemshop.svg",
"js": {
"LS.store.url": "^.+nuvem.com.br$",
"nuvemShopIdProduct": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://www.nuvemshop.com.br"
},
"Nuxt.js": {
"cats": [
12,
18,
22,
57
],
"description": "Nuxt is a Vue framework for developing modern web applications.",
"html": [
"<div [^>]*id=\"__nuxt\"",
"<script [^>]*>window\\.__NUXT__"
],
"icon": "Nuxt.js.svg",
"implies": [
"Vue.js",
"Node.js"
],
"js": {
"$nuxt": ""
},
"scripts": [
"/_nuxt/"
],
"website": "https://nuxtjs.org"
},
"nghttpx - HTTP/2 proxy": {
"cats": [
22
],
"headers": {
"Server": "nghttpx nghttp2/?([\\d.]+)?\\;version:\\1"
},
"website": "https://nghttp2.org"
},
"nopCommerce": {
"cats": [
6
],
"cookies": {
"Nop.customer": ""
},
"description": "nopCommerce is an open-source ecommerce solution based on Microsoft's ASP.NET Core framework and MS SQL Server 2012 (or higher) backend database.",
"html": "(?:<!--Powered by nopCommerce|Powered by: <a[^>]+nopcommerce)",
"icon": "nopCommerce.png",
"implies": "Microsoft ASP.NET",
"meta": {
"generator": "^nopCommerce$"
},
"oss": true,
"website": "http://www.nopcommerce.com"
}
}

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,387 @@
{
"UIKit": {
"cats": [
66
],
"description": "UIKit is the framework used for developing iOS applications.",
"html": "<[^>]+class=\"[^\"]*(?:uk-container|uk-section)",
"icon": "UIKit.png",
"scripts": "uikit.*\\.js",
"website": "https://getuikit.com"
},
"UMI.CMS": {
"cats": [
1
],
"headers": {
"X-Generated-By": "UMI\\.CMS"
},
"icon": "UMI.CMS.png",
"implies": "PHP",
"website": "https://www.umi-cms.ru"
},
"UNIX": {
"cats": [
28
],
"description": "Unix is a family of multitasking, multiuser computer operating systems.",
"headers": {
"Server": "Unix"
},
"icon": "UNIX.png",
"website": "http://unix.org"
},
"Ubercart": {
"cats": [
6
],
"icon": "Ubercart.png",
"implies": "Drupal",
"scripts": "uc_cart/uc_cart_block\\.js",
"website": "http://www.ubercart.org"
},
"Ubuntu": {
"cats": [
28
],
"description": "Ubuntu is a free and open-source operating system on Linux for the enterprise server, desktop, cloud, and IoT.",
"headers": {
"Server": "Ubuntu",
"X-Powered-By": "Ubuntu"
},
"icon": "Ubuntu.png",
"website": "http://www.ubuntu.com/server"
},
"Ueeshop": {
"cats": [
6
],
"description": "Ueeshop is a ecommerce platform from China.",
"icon": "Ueeshop.png",
"js": {
"ueeshop_config": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://www.ueeshop.com"
},
"UltraCart": {
"cats": [
6
],
"html": "<form [^>]*action=\"[^\"]*\\/cgi-bin\\/UCEditor\\?(?:[^\"]*&)?merchantId=[^\"]",
"icon": "UltraCart.png",
"js": {
"ucCatalog": ""
},
"scripts": "cgi-bin\\/UCJavaScript\\?",
"url": "/cgi-bin/UCEditor\\?",
"website": "http://ultracart.com"
},
"Umbraco": {
"cats": [
1
],
"headers": {
"X-Umbraco-Version": "^(.+)$\\;version:\\1"
},
"html": "powered by <a href=[^>]+umbraco",
"icon": "Umbraco.png",
"implies": "Microsoft ASP.NET",
"js": {
"UC_IMAGE_SERVICE|ITEM_INFO_SERVICE": "",
"UC_ITEM_INFO_SERVICE": "",
"UC_SETTINGS": "",
"Umbraco": ""
},
"meta": {
"generator": "umbraco"
},
"url": "/umbraco/login\\.aspx(?:$|\\?)",
"website": "http://umbraco.com"
},
"Unbounce": {
"cats": [
20,
51
],
"description": "Unbounce is a tool to build landing pages.",
"headers": {
"X-Unbounce-PageId": ""
},
"icon": "Unbounce.png",
"scripts": "ubembed\\.com",
"website": "http://unbounce.com"
},
"Underscore.js": {
"cats": [
59
],
"description": "Underscore.js is a JavaScript library which provides utility functions for common programming tasks. It is comparable to features provided by Prototype.js and the Ruby language, but opts for a functional programming design instead of extending object prototypes.",
"excludes": "Lodash",
"icon": "Underscore.js.png",
"js": {
"_.VERSION": "^(.+)$\\;confidence:0\\;version:\\1",
"_.restArguments": ""
},
"scripts": "underscore.*\\.js(?:\\?ver=([\\d.]+))?\\;version:\\1",
"website": "http://underscorejs.org"
},
"Uniconsent": {
"cats": [
67
],
"icon": "Uniconsent.png",
"scripts": "cmp\\.uniconsent\\.mgr\\.consensu\\.org/dfp\\.js",
"website": "https://www.uniconsent.com/"
},
"Unpkg": {
"cats": [
31
],
"description": "Unpkg is a content delivery network for everything on npm.",
"dom": "link[href*='unpkg.com']",
"icon": "Unpkg.png",
"oss": true,
"scripts": "unpkg\\.com/",
"website": "https://unpkg.com"
},
"UpSellit": {
"cats": [
76,
6
],
"description": "UpSellit is a performance based lead and cart abandonment recovery solutions.",
"icon": "UpSellit.png",
"js": {
"usi_analytics": "\\;confidence:25",
"usi_app": "\\;confidence:25",
"usi_commons": "\\;confidence:25",
"usi_cookies": "\\;confidence:25"
},
"pricing": [
"poa",
"mid"
],
"saas": true,
"scripts": "www\\.upsellit\\.com/",
"website": "https://us.upsellit.com"
},
"Upvoty": {
"cats": [
47
],
"dom": {
"div.upvotyContainer": {
"text": ""
}
},
"icon": "upvoty.png",
"implies": "PHP",
"js": {
"upvoty": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://upvoty.com"
},
"UsableNet": {
"cats": [
68
],
"description": "UsableNet is a technology for web accessibility and digital transformation, providing end-to-end services.",
"html": "<iframe[ˆ>]*\\.usablenet\\.com/pt/",
"icon": "UsableNet.png",
"scripts": "\\.usablenet\\.com/pt/",
"website": "https://usablenet.com/"
},
"Uscreen": {
"cats": [
1
],
"description": "Uscreen is a CMS to monetize VOD and live content. They provide site hosting, video hosting, and a payment gateway for selling video based content.",
"dom": {
".powered-by-uscreen": {
"text": ""
}
},
"icon": "Uscreen.svg",
"js": {
"analyticsHost": "stats\\.uscreen\\.io"
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"website": "https://uscreen.tv/"
},
"UserLike": {
"cats": [
52
],
"description": "Userlike is a cloud-based live chat solution that can be integrated with existing websites.",
"icon": "UserLike.svg",
"js": {
"userlike": "",
"userlikeInit": ""
},
"pricing": [
"freemium",
"payg"
],
"saas": true,
"scripts": [
"userlike\\.min\\.js",
"userlikelib\\.min\\.js",
"//userlike-cdn-widgets\\.",
"api\\.userlike\\.com"
],
"website": "http://userlike.com"
},
"UserRules": {
"cats": [
13
],
"icon": "UserRules.png",
"js": {
"_usrp": ""
},
"website": "http://www.userrules.com"
},
"UserVoice": {
"cats": [
13
],
"description": "UserVoice is a management to collect and analyse feedback from customers.",
"icon": "UserVoice.png",
"js": {
"UserVoice": ""
},
"website": "http://uservoice.com"
},
"UserWay": {
"cats": [
68
],
"description": "UserWay is a web accessibility overlay for websites that claims to improve compliance with accessibility standards.",
"icon": "UserWay.png",
"scripts": "cdn\\.userway\\.org/widget.*\\.js",
"website": "https://userway.org/"
},
"UserZoom": {
"cats": [
74,
10
],
"description": "UserZoom is a cloud-based user experience solution.",
"icon": "UserZoom.png",
"pricing": [
"poa",
"high",
"recurring"
],
"saas": true,
"scripts": "\\.userzoom\\.com/",
"website": "https://www.userzoom.com"
},
"Usercentrics": {
"cats": [
67
],
"description": "Usercentrics is a SaaS enterprise solution for Consent Management (CMP) that helps enterprise customers to obtain, manage and document the user consent.",
"icon": "Usercentrics.svg",
"js": {
"usercentrics.appVersion": "([\\d.]+)\\;version:\\1"
},
"pricing": [
"freemium",
"low",
"recurring"
],
"saas": true,
"scripts": "\\.usercentrics\\.eu/.+\\.js",
"website": "https://usercentrics.com"
},
"Ushahidi": {
"cats": [
1,
35
],
"cookies": {
"ushahidi": ""
},
"description": "Ushahidi is a tool that collects crowdsourced data and targeted survey responses from multiple data sources.",
"icon": "Ushahidi.png",
"implies": [
"PHP",
"MySQL",
"OpenLayers"
],
"js": {
"Ushahidi": ""
},
"scripts": "/js/ushahidi\\.js$",
"website": "http://www.ushahidi.com"
},
"uKnowva": {
"cats": [
1,
2,
50
],
"headers": {
"X-Content-Encoded-By": "uKnowva ([\\d.]+)\\;version:\\1"
},
"html": "<a[^>]+>Powered by uKnowva</a>",
"icon": "uKnowva.png",
"implies": "PHP",
"meta": {
"generator": "uKnowva (?: ([\\d.]+))?\\;version:\\1"
},
"scripts": "/media/conv/js/jquery\\.js",
"website": "https://uknowva.com"
},
"uPortal": {
"cats": [
21
],
"description": "uPortal is an open source enterprise portal framework built by and for higher education institutions.",
"icon": "uPortal.png",
"implies": "Java",
"js": {
"uportal": ""
},
"meta": {
"description": " uPortal "
},
"oss": true,
"website": "https://www.apereo.org/projects/uportal"
},
"uRemediate": {
"cats": [
68
],
"description": "uRemediate provides web accessibility testing tools and accessibility overlays.",
"icon": "User1st.png",
"scripts": "fecdn\\.user1st\\.info/Loader/head",
"website": "https://www.user1st.com/uremediate/"
},
"user.com": {
"cats": [
10
],
"html": "<div[^>]+/id=\"ue_widget\"",
"icon": "user.com.svg",
"js": {
"UserEngage": ""
},
"website": "https://user.com"
}
}

@ -0,0 +1,571 @@
{
"VIVVO": {
"cats": [
1
],
"cookies": {
"VivvoSessionId": ""
},
"icon": "VIVVO.png",
"js": {
"vivvo": ""
},
"website": "http://vivvo.net"
},
"VP-ASP": {
"cats": [
6
],
"html": "<a[^>]+>Powered By VP-ASP Shopping Cart</a>",
"icon": "VP-ASP.png",
"implies": "Microsoft ASP.NET",
"scripts": "vs350\\.js",
"website": "http://www.vpasp.com"
},
"VTEX": {
"cats": [
6
],
"cookies": {
"VtexFingerPrint": "",
"VtexStoreVersion": "",
"VtexWorkspace": "",
"vtex_session": ""
},
"description": "VTEX is an ecommerce software that manages multiple online stores.",
"headers": {
"Server": "^VTEX IO$",
"powered": "vtex"
},
"icon": "VTEX.svg",
"js": {
"vtex": ""
},
"pricing": [
"payg"
],
"saas": true,
"scripts": "io\\.vtex\\.com\\.br",
"website": "https://vtex.com/"
},
"VWO": {
"cats": [
10,
74
],
"description": "VWO is a website testing and conversion optimisation platform.",
"icon": "VWO.svg",
"js": {
"VWO": "",
"__vwo": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": [
"dev\\.visualwebsiteoptimizer\\.com/?([\\d.]+)\\;version:\\1"
],
"website": "https://vwo.com/"
},
"VWO Engage": {
"cats": [
32
],
"description": "VWO Engage is a part of the VWO Platform, which is a web-based push notification platform used by SaaS and B2B marketers, online content publishers, and ecommerce store owners.",
"icon": "VWO.svg",
"js": {
"_pushcrewDebuggingQueue": ""
},
"pricing": [
"mid",
"recurring"
],
"saas": true,
"scripts": "cdn\\.pushcrew\\.\\w+",
"website": "https://vwo.com/engage"
},
"Vaadin": {
"cats": [
18
],
"icon": "Vaadin.svg",
"implies": "Java",
"js": {
"vaadin": ""
},
"scripts": "vaadinBootstrap\\.js(?:\\?v=([\\d.]+))?\\;version:\\1",
"website": "https://vaadin.com"
},
"ValueCommerce": {
"cats": [
71
],
"description": "ValueCommerce is a pay-per-performance advertising affiliate marketing network.",
"dom": {
"a[href*='ap.valuecommerce.com']": {
"attributes": {
"href": ""
}
},
"img[src*='ap.valuecommerce.com'],img[data-src*='ap.valuecommerce.com']": {
"attributes": {
"src": ""
}
}
},
"icon": "ValueCommerce.png",
"scripts": "\\.valuecommerce\\.com",
"website": "https://www.valuecommerce.co.jp"
},
"Vanilla": {
"cats": [
2
],
"description": "Vanilla is a both a cloud-based (SaaS) open-source community forum software.",
"headers": {
"X-Powered-By": "Vanilla"
},
"html": "<body id=\"(?:DiscussionsPage|vanilla)",
"icon": "Vanilla.png",
"implies": "PHP",
"website": "http://vanillaforums.org"
},
"Varbase": {
"cats": [
1
],
"cpe": "cpe:/a:vardot:varbase",
"dom": "meta[content='Varbase'],div[class*='varbase_'],div[class*='_varbase'],div[class*='varbase-'],div[class*='block-varbase'],div[class*='blockvarbase']",
"icon": "varbase.png",
"implies": "Drupal",
"js": {
"drupalSettings.ajaxPageState.libraries": ".+varbase_.+"
},
"oss": true,
"website": "https://www.vardot.com/solutions/varbase"
},
"Varnish": {
"cats": [
23
],
"description": "Varnish is a reverse caching proxy.",
"headers": {
"Via": "varnish(?: \\(Varnish/([\\d.]+)\\))?\\;version:\\1",
"X-Varnish": "",
"X-Varnish-Action": "",
"X-Varnish-Age": "",
"X-Varnish-Cache": "",
"X-Varnish-Hostname": ""
},
"icon": "Varnish.svg",
"website": "http://www.varnish-cache.org"
},
"Venmo": {
"cats": [
41
],
"description": "Venmo is a mobile payment service owned by PayPal. Venmo account holders can transfer funds to others via a mobile phone app.",
"dom": "[aria-labelledby='pi-venmo']",
"icon": "Venmo.svg",
"website": "https://venmo.com"
},
"Veoxa": {
"cats": [
36
],
"html": "<img [^>]*src=\"[^\"]+tracking\\.veoxa\\.com",
"icon": "Veoxa.png",
"js": {
"VuVeoxaContent": ""
},
"scripts": "tracking\\.veoxa\\.com",
"website": "http://veoxa.com"
},
"Vercel": {
"cats": [
22
],
"headers": {
"server": "^now$",
"x-now-trace": "",
"x-vercel-cache": "",
"x-vercel-id": ""
},
"icon": "vercel.svg",
"website": "https://vercel.com"
},
"VerifyPass": {
"cats": [
5,
76
],
"description": "VerifyPass is a company which provide secure identity proofing, authentication, and group affiliation verification for teachers and students.",
"icon": "VerifyPass.png",
"js": {
"verifypass_api_instantiator": "",
"verifypass_is_loaded": "",
"verifypass_popup": ""
},
"pricing": [
"payg",
"recurring"
],
"saas": true,
"scripts": [
"cdn\\.id\\.services",
"cdn\\.verifypass\\.com"
],
"website": "https://verifypass.com"
},
"Verizon Media": {
"cats": [
36
],
"description": "Verizon Media is a tech and media company with global assets for advertisers, consumers and media companies.",
"dom": {
"img[src*='pixel.advertising.com']": {
"attributes": {
"src": ""
}
}
},
"icon": "Verizon Media.svg",
"scripts": "\\.advertising\\.com",
"website": "https://www.verizonmedia.com"
},
"Verloop": {
"cats": [
52
],
"description": "Verloop is provider of conversational AI platform for customer support automation.",
"icon": "Verloop.png",
"js": {
"Verloop": ""
},
"saas": true,
"website": "https://verloop.io/"
},
"Vidazoo": {
"cats": [
36
],
"description": "Vidazoo is a video content and yield management platform.",
"icon": "Vidazoo.svg",
"js": {
"__vidazooPlayer__": "",
"vidazoo": "",
"vidazoo.version": "(.+)\\;version:\\1"
},
"pricing": [
"high",
"recurring"
],
"saas": true,
"scripts": "\\.vidazoo\\.com",
"website": "https://www.vidazoo.com"
},
"VideoJS": {
"cats": [
14
],
"description": "Video.js is a JavaScript and CSS library that makes it easier to work with and build on HTML5 video.",
"html": "<div[^>]+class=\"video-js+\">",
"icon": "VideoJS.svg",
"js": {
"VideoJS": "",
"videojs": "",
"videojs.VERSION": "^(.+)$\\;version:\\1"
},
"scripts": [
"zencdn\\.net/c/video\\.js",
"cdnjs\\.cloudflare\\.com\\/ajax\\/libs\\/video\\.js\\/([\\d\\.]+)\\/\\;version:\\1"
],
"website": "http://videojs.com"
},
"Vigbo": {
"cats": [
1
],
"cookies": {
"_gphw_mode": ""
},
"html": "<link[^>]* href=[^>]+(?:\\.vigbo\\.com|\\.gophotoweb\\.com)",
"icon": "vigbo.png",
"scripts": "(?:\\.vigbo\\.com|\\.gophotoweb\\.com)",
"website": "https://vigbo.com"
},
"Vignette": {
"cats": [
1
],
"html": "<[^>]+=\"vgn-?ext",
"icon": "Vignette.png",
"website": "http://www.vignette.com"
},
"Vimeo": {
"cats": [
14
],
"description": "Vimeo is a video hosting, sharing and services platform. Vimeo operation an ad-free basis by providing subscription plans.",
"html": "(?:<(?:param|embed)[^>]+vimeo\\.com/moogaloop|<iframe[^>]player\\.vimeo\\.com)",
"icon": "Vimeo.svg",
"js": {
"Vimeo.Player": "",
"VimeoPlayer": ""
},
"website": "http://vimeo.com"
},
"Virgool": {
"cats": [
11
],
"headers": {
"X-Powered-By": "^Virgool$"
},
"icon": "Virgool.svg",
"url": "^https?://(?:www\\.)?virgool\\.io",
"website": "https://virgool.io"
},
"VirtueMart": {
"cats": [
6
],
"html": "<div id=\"vmMainPage",
"icon": "VirtueMart.png",
"implies": "Joomla",
"website": "http://virtuemart.net"
},
"Virtuoso": {
"cats": [
34
],
"headers": {
"Server": "Virtuoso/?([0-9.]+)?\\;version:\\1"
},
"meta": {
"Copyright": "^Copyright &copy; \\d{4} OpenLink Software",
"Keywords": "^OpenLink Virtuoso Sparql"
},
"url": "/sparql",
"website": "https://virtuoso.openlinksw.com/"
},
"Visa": {
"cats": [
41
],
"dom": "[aria-labelledby='pi-visa']",
"icon": "Visa.svg",
"js": {
"visaApi": "",
"visaImage": "",
"visaSrc": ""
},
"website": "https://www.visa.com"
},
"Visa Checkout": {
"cats": [
41
],
"description": "Visa facilitates electronic funds transfers throughout the world, most commonly through Visa-branded credit cards, debit cards and prepaid cards.",
"icon": "visa.png",
"scripts": "secure\\.checkout\\.visa\\.com",
"website": "https://checkout.visa.com"
},
"Visual Composer": {
"cats": [
51
],
"description": "Visual Composer is an all-in-one web design tool for anyone who uses WordPress.",
"icon": "visualcomposer.svg",
"implies": [
"WordPress",
"PHP"
],
"meta": {
"generator": "Powered by Visual Composer Website Builder"
},
"pricing": [
"low",
"recurring"
],
"website": "https://visualcomposer.com"
},
"Visualsoft": {
"cats": [
6
],
"cookies": {
"vscommerce": ""
},
"description": "Visualsoft is an ecommerce agency that delivers web design, development and marketing services to online retailers.",
"icon": "Visualsoft.svg",
"meta": {
"vs_status_checker_version": "\\d+",
"vsvatprices": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"website": "https://www.visualsoft.co.uk/"
},
"Vizury": {
"cats": [
32
],
"description": "Vizury is a commerce marketing platform.",
"icon": "Vizury.png",
"js": {
"safariVizury": "",
"vizury_data": ""
},
"pricing": [
"poa"
],
"saas": true,
"scripts": "\\.vizury\\.com",
"website": "https://www.vizury.com"
},
"Volusion": {
"cats": [
6
],
"description": "Volusion is a cloud-based, hosted ecommerce solution.",
"html": [
"<link [^>]*href=\"[^\"]*/vspfiles/\\;version:1",
"<body [^>]*data-vn-page-name\\;version:2"
],
"icon": "Volusion.svg",
"js": {
"volusion": ""
},
"pricing": [
"low",
"recurring"
],
"saas": true,
"scripts": "/volusion\\.js(?:\\?([\\d.]*))?\\;version:\\1",
"website": "https://www.volusion.com"
},
"Voog.com Website Builder": {
"cats": [
1,
6
],
"html": "<script [^>]*src=\"[^\"]*voog\\.com/tracker\\.js",
"icon": "Voog.png",
"scripts": "voog\\.com/tracker\\.js",
"website": "https://www.voog.com/"
},
"Voracio": {
"cats": [
6
],
"cookies": {
"voracio_csrf_token": "",
"voracio_sessionid": ""
},
"description": "Voracio is a cloud SaaS ecommerce platform powered by Microsoft .NET and built on the Microsoft Azure cloud framework.",
"icon": "Voracio.svg",
"js": {
"voracio": ""
},
"pricing": [
"poa"
],
"saas": true,
"website": "https://www.voracio.co.uk"
},
"Vue-Storefront": {
"cats": [
6,
12
],
"description": "Vue Storefront is a frontend platform for headless commerce.",
"icon": "vue-storefront.svg",
"implies": "Vue.js",
"meta": {
"generator": "^Vue Storefront\\ [0-9.]+?$;version=2"
},
"scripts": [
"(?:\\/([\\d.]+))?\\/vsf-layout;version=1"
],
"website": "https://www.vuestorefront.io/"
},
"Vue.js": {
"cats": [
12
],
"description": "Vue.js is an open-source modelviewviewmodel JavaScript framework for building user interfaces and single-page applications.",
"html": "<[^>]+\\sdata-v(?:ue)?-",
"icon": "vue.svg",
"js": {
"Vue.version": "^(.+)$\\;version:\\1"
},
"scripts": [
"vue[.-]([\\d.]*\\d)[^/]*\\.js\\;version:\\1",
"(?:/([\\d.]+))?/vue(?:\\.min)?\\.js\\;version:\\1"
],
"website": "https://vuejs.org"
},
"VuePress": {
"cats": [
57
],
"description": "VuePress is a static site generator with a Vue-powered theming system, and a default theme for writing technical documentation.",
"icon": "VuePress.svg",
"implies": "Vue.js",
"meta": {
"generator": "^VuePress(?: ([0-9.]+))?$\\;version:\\1"
},
"website": "https://vuepress.vuejs.org/"
},
"Vuetify": {
"cats": [
66
],
"css": "\\.v-application \\.d-block ",
"html": "<div data-app[^>]+class=\"v-application",
"icon": "Vuetify.svg",
"implies": "Vue.js",
"website": "https://vuetifyjs.com"
},
"vBulletin": {
"cats": [
2
],
"cookies": {
"bblastactivity": "",
"bblastvisit": "",
"bbsessionhash": ""
},
"cpe": "cpe:/a:vbulletin:vbulletin",
"description": "vBulletin is tool that is used to create and manage online forums or discussion boards. It is written in PHP and uses a MySQL database server.",
"html": "<div id=\"copyright\">Powered by vBulletin",
"icon": "vBulletin.png",
"implies": "PHP",
"js": {
"vBulletin": ""
},
"meta": {
"generator": "vBulletin ?([\\d.]+)?\\;version:\\1"
},
"website": "https://www.vbulletin.com"
},
"vibecommerce": {
"cats": [
6
],
"excludes": "PrestaShop",
"icon": "vibecommerce.png",
"implies": "PHP",
"meta": {
"designer": "vibecommerce",
"generator": "vibecommerce"
},
"website": "http://vibecommerce.com.br"
}
}

@ -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"
}
}
Loading…
Cancel
Save