parent
4f96ae4a0e
commit
94a4ee5306
@ -0,0 +1,39 @@
|
|||||||
|
# Wappalyzer core
|
||||||
|
|
||||||
|
[Wappalyzer](https://www.wappalyzer.com/) indentifies technologies on websites.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ npm i wappalyzer-core
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
const fs = require('fs')
|
||||||
|
const Wappalyzer = require('./wappalyzer')
|
||||||
|
|
||||||
|
// See https://www.wappalyzer.com/docs/dev/specification
|
||||||
|
const { apps: technologies, categories } = JSON.parse(
|
||||||
|
fs.readFileSync('./apps.json')
|
||||||
|
)
|
||||||
|
|
||||||
|
Wappalyzer.setTechnologies(technologies)
|
||||||
|
Wappalyzer.setCategories(categories)
|
||||||
|
|
||||||
|
const detections = Wappalyzer.analyze({
|
||||||
|
url: 'https://example.github.io/',
|
||||||
|
meta: { generator: ['WordPress'] },
|
||||||
|
headers: { server: ['Nginx'] },
|
||||||
|
scripts: ['jquery-3.0.0.js'],
|
||||||
|
cookies: { awselb: [''] },
|
||||||
|
html: '<div ng-app="">'
|
||||||
|
})
|
||||||
|
|
||||||
|
const results = Wappalyzer.resolve(detections)
|
||||||
|
|
||||||
|
console.log(results)
|
||||||
|
```
|
@ -0,0 +1,25 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
const fs = require('fs')
|
||||||
|
const Wappalyzer = require('./wappalyzer')
|
||||||
|
|
||||||
|
// See https://www.wappalyzer.com/docs/dev/specification
|
||||||
|
const { apps: technologies, categories } = JSON.parse(
|
||||||
|
fs.readFileSync('./apps.json')
|
||||||
|
)
|
||||||
|
|
||||||
|
Wappalyzer.setTechnologies(technologies)
|
||||||
|
Wappalyzer.setCategories(categories)
|
||||||
|
|
||||||
|
const detections = Wappalyzer.analyze({
|
||||||
|
url: 'https://example.github.io/',
|
||||||
|
meta: { generator: ['WordPress'] },
|
||||||
|
headers: { server: ['Nginx'] },
|
||||||
|
scripts: ['jquery-3.0.0.js'],
|
||||||
|
cookies: { awselb: [''] },
|
||||||
|
html: '<div ng-app="">'
|
||||||
|
})
|
||||||
|
|
||||||
|
const results = Wappalyzer.resolve(detections)
|
||||||
|
|
||||||
|
console.log(results)
|
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "wappalyzer-core",
|
||||||
|
"description": "Identify technology on websites",
|
||||||
|
"keywords": [
|
||||||
|
"analyze",
|
||||||
|
"identify",
|
||||||
|
"detect",
|
||||||
|
"detector",
|
||||||
|
"technology",
|
||||||
|
"cms",
|
||||||
|
"framework",
|
||||||
|
"library",
|
||||||
|
"software"
|
||||||
|
],
|
||||||
|
"homepage": "https://www.wappalyzer.com",
|
||||||
|
"version": "6.0.7",
|
||||||
|
"author": "Wappalyzer",
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/aliasio/wappalyzer"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/aliasio"
|
||||||
|
},
|
||||||
|
"main": "wappalyzer.js",
|
||||||
|
"files": [
|
||||||
|
"wappalyzer.js"
|
||||||
|
]
|
||||||
|
}
|
Reference in new issue