1.1.12 • Published 6 years ago

whatsbehind v1.1.12

Weekly downloads
20
License
GPL-3.0
Repository
github
Last release
6 years ago

WhatsBehind

NPM version Build Status A node.js 6.6.0+ app/module to scan technologies used by websites.

Forked from Wappalyzer.

WhatsBehind scans entire websites and finds technologies that Wappalyzer is unable to detect in single pages.

WhatsBehind purpose is to find all possible and sometimes hard-to-detect technologies along with their precise versions (release, RC, beta, etc.), their plugins, and their themes (for CMSs).

WhatsBehind knows what files were modified, added and deleted in each version of technologies. A smart algorithm prioritize lookup order to quickly identify these files in websites, with the smallest possible number of queries.

Building and Installing

npm install whatsbehind

Usage

var wb = require('whatsbehind');
var url = "http://www.starwars.com/";// A WordPress site wappalyzer cannot detect
wb.scan(url, function (err, data) {
    // this function is called multiple times until data.status is "complete"

    if (err) {
        console.log("Error : Scan of \"" + url + "\" failed : " + err.name + ":" + err.message + ".");
        return;
    }

    if (data.status == "complete") {
        console.log("Scan completed successfully");
        console.log(data.detected);
    } else {
        console.log("Progress : " + data.progress + "% (" + data.progressDescription + ")");
    }
});

Update CMS Data

Author

Guillaume Baudhuin

License

Licensed under the GPL3.

1.1.12

6 years ago

1.1.11

6 years ago

1.1.10

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

0.3.0

7 years ago

0.2.13

8 years ago

0.2.12

8 years ago

0.2.11

8 years ago

0.2.10

8 years ago

0.2.9

8 years ago

0.2.8

8 years ago

0.2.7

8 years ago

0.2.6

8 years ago

0.2.5

8 years ago

0.2.4

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago