Updated Jul 14, 2026

Discovery

Fingerprint CMS and frameworks across host lists

Go Wappalyzer port for bulk technology fingerprinting.

Agent

overview

What webanalyze does

webanalyze matches response headers, cookies, HTML, and scripts against an -apps definition file (technologies.json by default). Feed -host or -hosts; raise -worker for concurrent passes; emit stdout, csv, or json with -output.

Reach for it after subdomain discovery and liveness probing, when you need a technology map across many hosts rather than a deep single-site crawl. Use -crawl to follow a few links past the root when signatures only load on inner pages.

Trickest provides webanalyze as a managed Discovery node: host list in, folder and file out. Prefer httpx when liveness and light tech detection should share one probe. Prefer upstream Wappalyzer for deeper recursive analysis of one site.

source github.com/rverton/webanalyze

use cases

Where webanalyze fits

Fingerprint a large host list fast

Feed a file of hosts and let webanalyze fingerprint each one concurrently, raising the worker count to build a technology inventory for the whole estate in a single pass.

Identify the CMS behind each host

Report which sites run WordPress, Drupal, Adobe Experience Manager, or another platform, so you can group targets by stack and prioritize the ones that matter.

Emit structured results for the pipeline

Choose CSV or JSON output so the detected technologies feed a database node or a routing step instead of scrolling past in a console.

Crawl a few links per host

Set a small crawl depth so detection catches libraries and frameworks that only load on pages past the root.

reference

webanalyze inputs and flags

7 inputs
NameTypeFlagDescription
hostSTRING-hostSingle host to test.
hostsFILE-hostsFilename with hosts, one host per line.
output-formatSTRING-outputOutput format: stdout, csv, or json (default stdout).
workersSTRING-workerNumber of workers to run in parallel (default 4).
crawlSTRING-crawlLinks to follow from the root page (default 0).
app-definition-fileFILE-appsApp definition file with technology signatures (default technologies.json).

Showing key inputs. webanalyze exposes 7 inputs in total.

Full flag reference (7 inputs)
NameTypeFlagDescription
hostSTRING-hostSingle host to test.
crawlSTRING-crawlLinks to follow from the root page (default 0).
hostsFILE-hostsFilename with hosts, one host per line.
workersSTRING-workerNumber of workers to run in parallel (default 4).
output-formatSTRING-outputOutput format: stdout, csv, or json (default stdout).
search-all-urlsBOOLEAN-searchSearch all URLs on the same base domain, e.g. example.com and sub.example.com (default true).
app-definition-fileFILE-appsApp definition file with technology signatures (default technologies.json).

example

Run webanalyze

webanalyze · command
# fingerprint a host list as JSON, crawling one link deepwebanalyze -hosts hosts.txt -worker 8 -output json -crawl 1
sample output
http://example.com (0.38s):    Cloudflare,  (CDN)    Nginx,  (Web servers)    Adobe Experience Manager,  (CMS)    jQuery, 3.7.1 (JavaScript libraries)    Java,  (Programming languages)http://shop.example.com (0.52s):    Nginx,  (Web servers)    React, 18.2.0 (JavaScript frameworks)    Webpack,  (Miscellaneous)

guidance

Choosing webanalyze

Use webanalyze when you need Wappalyzer-style fingerprinting across many hosts. For deep recursive analysis of a single site, prefer Wappalyzer. For liveness plus inline tech detection, use httpx.

wappalyzer

Original Node tool. Deeper recursive analysis of one site; webanalyze favors bulk host lists.

whatweb

Plugin-based identifier with aggression levels. Broader recon framing, similar detection goal.

httpx

Probes liveness and runs tech detection inline, so one node both filters and fingerprints.

faq

webanalyze questions

webanalyze reimplements Wappalyzer signature matching in Go for concurrent host-list runs. It reads the same technologies.json catalog via -apps. Wappalyzer stays stronger for deep recursive analysis of one site.

Run webanalyze yourself

A host list is probed live by httpx, then webanalyze fingerprints each one and writes the technology map as a queryable output.

Facts on this page come from the live Trickest tool library.