Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wappalyzer-core

Package Overview
Dependencies
Maintainers
1
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wappalyzer-core - npm Package Compare versions

Comparing version 6.3.0 to 6.3.2

17

package.json

@@ -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 }) => ({

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc