Know where any website really lives.

CloudTracer is a command-line tool that scans a domain and reveals the full cloud stack behind it — registrar, DNS, CDN, hosting, SSL, email, and third-party services — in one tree.

npx cloudtracer example.com

Example output

Eight scanners, one tree

Every scan runs these layers in parallel and stitches the results into a single readable view.

Usage

Quick start

$ npx cloudtracer example.com

Install globally

$ npm install -g cloudtracer
$ cloudtracer example.com

Options

Flag Description
--json Output as JSON
--yaml Output as YAML
--markdown Output as Markdown with a Mermaid diagram
--verbose Print debug information while scanning
--timeout <ms> Per-scanner timeout in milliseconds (default 10000)

Pipe it anywhere

$ cloudtracer example.com --json | jq '.hosting'
$ cloudtracer example.com --markdown > report.md