Exports

The Exports view is the place to take data out of Hugin in a portable format. Different export targets live behind different MCP tools and REST endpoints — they’re brought together in the Exports view for convenience.

🔗Targets

🔗Flows

The exports MCP tool’s flows action exports captured flows in:

  • json — full structured payload (count + flows array)
  • csv — flat tabular
  • har — HAR 1.2; usable in Chrome DevTools, Burp, ZAP

Apply standard flow filters (host, method, status, time range) before exporting to scope the result set.

🔗Project Bundle

The exports MCP tool’s project action exports the active project (scope, flows, findings, repeater, intruder configs, organiser entries, project settings) as a portable bundle. Re-import via the project import flow on another machine.

REST equivalent: GET /api/projects/{id}/export.

🔗Findings & Reports

Findings export is handled by the reporting MCP tool, not exports. Available formats include sarif (SARIF 2.1.0 for CI/CD ingestion), summary (executive summary with risk scoring), html, markdown, csv, executive_summary, generate (custom template), plus saved-template management. See Findings for the workflow.

🔗Sitemap

Sitemap export uses the site_map MCP tool’s export action with format json or csv. REST: GET /api/sitemap/export.

🔗Scope

Scope export uses the scope MCP tool’s export action.

🔗Sequencer

Per-session sequencer captures + analyses export via the sequencer MCP tool’s export action and GET /api/sequencer/capture/{id}/export.

🔗Crawler

Crawler URL list export via the crawler MCP tool’s export action and GET /api/crawler/export.

🔗Saved Export Profiles & Scheduled Exports

Hugin doesn’t currently ship a “saved export profile” UI feature. To run periodic exports unattended, schedule a small workflow or shell command via the Scheduler that calls the relevant API endpoint and pipes the result to your destination.

🔗Import

Project bundles re-import through the project lifecycle (REST: POST /api/projects/import). Format-specific flow import (e.g. HAR / ZAP session) is not currently exposed through the exports MCP tool — for those workflows, replay through the proxy to capture equivalent flows.