Lookups

Queries to external data sources — registry records, geographic databases, TLS handshakes, global DNS resolvers. Nothing here leaves a fingerprint on the target host; these are all side-channel lookups.

WHOIS

Queries the WHOIS ecosystem for a domain or an IP address, following the referral chain so you get the authoritative record, not just the top-level response.

Many registries redact registrant contact fields under GDPR. Expect REDACTED FOR PRIVACY on a lot of ccTLDs and .com/.net domains.

Tips

GeoIP

Turns an IP into a physical location and network identity. Uses the DR-ONLINE geo-API; works for both IPv4 and IPv6.

Accuracy varies. Cloud provider IPs, VPN exit nodes and mobile carriers often resolve to the operator's HQ, not the end user. Treat city-level data as a hint, not a fact.

Common uses

SSL / TLS certificate

Connects to a host on a TCP port, completes the TLS handshake, and lays out the certificate chain the server presented. Read-only — no bytes are written after the handshake.

The overall result is coloured: TRUSTED (green) if the chain validates against the system trust store, NOT TRUSTED (amber) if it completes but doesn't chain to a known root, FAILED (red) if the handshake didn't complete.

Self-signed and internal-CA certs will show as NOT TRUSTED. That's not a bug — it means your local system doesn't have the CA in its trust store. Install it separately if you want green.

DNS propagation

Queries the same domain against ~45 public resolvers worldwide and compares the answers. When you've just changed an A record, this tells you how far the update has travelled.

The tool times out any individual resolver at 5 seconds — stuck queries don't block the rest.

Free tier allows one full sweep per install; subsequent runs require PRO. This keeps the public resolvers from being hammered by the app.

Common uses

Previous
Scanning
Next
Wi-Fi