wappalyzer-core
Advanced tools
Comparing version 6.3.0 to 6.3.2
@@ -15,4 +15,4 @@ { | ||
], | ||
"homepage": "https://www.wappalyzer.com", | ||
"version": "6.3.0", | ||
"homepage": "https://www.wappalyzer.com/", | ||
"version": "6.3.2", | ||
"author": "Wappalyzer", | ||
@@ -24,5 +24,10 @@ "license": "MIT", | ||
}, | ||
"funding": { | ||
"url": "https://github.com/sponsors/aliasio" | ||
}, | ||
"funding": [ | ||
{ | ||
"url": "https://github.com/sponsors/aliasio" | ||
}, | ||
{ | ||
"url": "https://paypal.me/aliasio" | ||
} | ||
], | ||
"main": "wappalyzer.js", | ||
@@ -32,2 +37,2 @@ "files": [ | ||
] | ||
} | ||
} |
@@ -20,5 +20,5 @@ # Wappalyzer core | ||
// See https://www.wappalyzer.com/docs/dev/specification or use | ||
// https://raw.githubusercontent.com/AliasIO/wappalyzer/master/src/apps.json | ||
const { apps: technologies, categories } = JSON.parse( | ||
fs.readFileSync('./apps.json') | ||
// https://raw.githubusercontent.com/AliasIO/wappalyzer/master/src/technologies.json | ||
const { technologies, categories } = JSON.parse( | ||
fs.readFileSync('./technologies.json') | ||
) | ||
@@ -25,0 +25,0 @@ |
@@ -183,3 +183,13 @@ 'use strict' | ||
*/ | ||
analyze({ url, html, robots, meta, headers, cookies, scripts }) { | ||
analyze({ | ||
url, | ||
html, | ||
css, | ||
robots, | ||
meta, | ||
headers, | ||
certIssuer, | ||
cookies, | ||
scripts, | ||
}) { | ||
const oo = Wappalyzer.analyzeOneToOne | ||
@@ -197,3 +207,5 @@ const om = Wappalyzer.analyzeOneToMany | ||
oo(technology, 'html', html), | ||
oo(technology, 'css', css), | ||
oo(technology, 'robots', robots), | ||
oo(technology, 'certIssuer', certIssuer), | ||
om(technology, 'scripts', scripts), | ||
@@ -225,7 +237,9 @@ mm(technology, 'cookies', cookies), | ||
html, | ||
css, | ||
robots, | ||
meta, | ||
headers, | ||
certIssuer, | ||
cookies, | ||
script, | ||
scripts, | ||
js, | ||
@@ -247,5 +261,7 @@ implies, | ||
html: transform(html), | ||
css: transform(css), | ||
certIssuer: transform(certIssuer), | ||
robots: transform(robots), | ||
meta: transform(meta), | ||
scripts: transform(script), | ||
scripts: transform(scripts), | ||
js: transform(js, true), | ||
@@ -252,0 +268,0 @@ implies: transform(implies).map(({ value, confidence }) => ({ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11984
370