Skip to content

Web UI

The recon-web web UI is a single-page application that lets you scan any website, explore results in real time, and manage scan history from the browser. By default it is served at http://localhost:8080.

The home page is centred around a single URL input. Type a full URL (including https://) and press Scan to kick off an analysis. Once the scan starts, the dashboard switches to a results view where check cards appear one by one as they complete.

  1. Enter the target URL in the input field (e.g. https://example.com).
  2. Press Scan or hit Enter.
  3. The UI connects to the API via server-sent events and streams results as each handler finishes.

recon-web uses Server-Sent Events (SSE) to push results to the browser the moment each check finishes. A progress bar at the top tracks overall completion so you can tell at a glance how far along the scan is. There is no need to wait for the full scan to finish before reading results.

Every check belongs to one of six categories. Click a category pill to show only results in that group:

CategoryWhat it covers
SecurityTLS/SSL, HTTP security headers, cookies, CORS, CSP, known vulnerabilities
DNSA, AAAA, MX, TXT, CNAME, NS records, DNSSEC, CAA, mail config
NetworkOpen ports, traceroute, IP geolocation, ASN, firewall detection
ContentTech stack, CMS, linked pages, canonical tags, robots.txt, sitemap
MetaWHOIS, domain age, Tranco ranking, social tags, favicon, language
PerformanceLighthouse scores, page load timing, resource sizes, redirects, compression

Each result card has a coloured status indicator. Click a status pill to filter by outcome:

StatusMeaning
OK (green)Check passed with no issues
Issues (red)A potential problem or misconfiguration was detected
Info (grey)Informational data — useful context, nothing actionable
Skipped (dimmed)Check could not run (missing API key, target unresponsive, etc.)

The search box above the results lets you filter by keyword. It matches against check names and result content, so typing ssl narrows the list to SSL-related results instantly.

Click the A-Z toggle to sort results alphabetically by check name. This is helpful when you know the exact check you are looking for.

Each result card has two action icons in its header:

  • Info icon — opens a plain-language explanation of what the check does, why it matters, and what to do if it flagged an issue.
  • Code icon — shows the raw JSON response returned by the handler. This is the same payload you would get from the REST API, useful for automation or debugging.

Every completed scan is saved automatically. Open the History page from the sidebar to browse past scans. Each entry shows the target URL, the date and time, and a summary of the results.

Select any two scans from the history list and click Compare. The comparison view shows a side-by-side diff highlighting what changed between the two scans — for example a new open port, an expiring SSL certificate, or a DNS record change. You can compare scans of the same target over time or scans of different targets.

From the history detail view, click Download to export the scan:

  • HTML — a self-contained report you can open in any browser or email to a colleague.
  • PDF — a print-ready document (requires Chromium on the server for rendering).

The UI respects your system colour-scheme preference and includes a toggle in the top bar to switch between dark and light mode manually.