A cyber threat intelligence platform for collecting intelligence, authoring finished intelligence products, and disseminating them to stakeholders.
Analysts work in topic notebooks — gathering sources, notes and uploaded attachments (reference files), and applying structured analytic techniques (the Diamond Model of Intrusion Analysis and Analysis of Competing Hypotheses (ACH)) — and author reports (intelligence products) in markdown. Reports carry an intelligence level (Strategic / Tactical / Operational) and a TLP marking, cite sources and attachments, carry Admiralty/NATO-style source reliability grading, embed Diamond Model diagrams, ACH matrices and figures (images) inline, are classified with taxonomy tags (threat actor / campaign / malware / ATT&CK technique / sector / topic), move through a review workflow, and can be rendered to branded PDF products. Everything is searchable — full-text + faceted across the report library — and the ATT&CK techniques tagged across reports drive a coverage heatmap and downloadable ATT&CK Navigator layers (per report and per actor/malware/campaign entity). A writer-only program maturity dashboard rolls the same data up into CTI-CMM-style program-health indicators. Security-relevant events are captured to a structured-JSON audit log (OWASP application-logging shape) and can be forwarded to a SIEM (stdout/file, syslog, or HTTP event collector) — configurable in the admin console.
Status: Milestones 1–4 are implemented — the full vision plus a knowledge layer: the analyst authoring loop, stakeholder requirement intake + tasking board + traceability, dissemination (on publish, reports are matched to stakeholders by preferred intel level + TLP into a personalized feed, with email notifications) closed by a stakeholder feedback / RFI-satisfaction loop, and an admin-curated tag taxonomy with full-text + faceted search. The current branch adds governed AI-assist APIs, STIX/TAXII export, audience-group need-to-know, tag-subscription/webhook dissemination, RSS/Atom ingestion, related-report indexing, render retention and deployment scaffolding. See CLAUDE.md.
The portal is a server-rendered "command-center" design system (Archivo / JetBrains Mono / Spectral) — a persistent role-aware left rail + topbar + scrolling canvas, a ⌘K command palette, and a full-height 3-pane report editor. The views below use realistic sample data.
Notebooks in collection, reports in flight, and the most recent products — all in one place.
Every intelligence product with its status, intelligence level, TLP marking and taxonomy chips.
The report editor: markdown with a side-by-side live preview, source/attachment citations,
requirement traceability, and taxonomy tagging — all on one screen.
A published report — TLP and intelligence-level markings, taxonomy chips, numbered sources,
cited attachments, and on-demand PDF products.
The same report rendered to PDF via Typst — classification markings, masthead and the
taxonomy stamp carried through. Download the full sample »
Stakeholder requirements — typed as PIR (priority, decision-tied, time-bound), GIR (standing)
or RFI (ad-hoc) — aggregated into a tasking board grouped by status. Ordering blends urgency and
kind: a PIR is floored to at least High priority so it leads standing/ad-hoc work, but a genuine
Critical item still tops its column. A PIR coverage panel flags PIRs with no linked report/notebook
(collection gaps) or past their review-by date (overdue).
On publish, a report is matched to stakeholders by preferred intel level + TLP and delivered
to their personal feed (with an email notification).
On a product delivered to them, a stakeholder leaves feedback — a usefulness rating, an optional RFI-satisfaction verdict against one of their own requirements the report addressed, and a comment. A Met verdict from the owning stakeholder auto-advances that requirement to Satisfied, closing the cycle. Feedback surfaces on the report (for authors) and the requirement detail (for analysts), and its response / satisfaction / useful rates roll up into the maturity dashboard.
An admin configures external RSS/Atom feeds; their articles are polled into a writer-only
feed reader where an analyst can run a local, advisory IOC-shaped-value scan, review exact
evidence and warnings, then accept selected candidates into a notebook. Acceptance captures the
article as a provenance source and creates an ordinary light-touch IOC; nothing is published or
sent to MISP automatically. Analysts can also send an article to a notebook (existing or new) — capturing it
as an auto-graded source. The fetcher is opt-in, timeout-bounded and failure-isolated, fetched
content is sanitised, and feed URLs are admin-only (the SSRF-containment boundary). Article bodies
are retained as the source for deterministic candidate extraction + future summarisation.
Admins manage the feed list at /admin/feeds — add/enable feeds, see last-fetch status, and
trigger an on-demand fetch.
Iceberg is not an IOC store — the authoritative store stays external (MISP). An analyst
stages indicators of compromise as notebook entities (manual entry, or AI-suggested from a
source's text when the governed AI backend is enabled — see Governed AI assist), cites a subset
into a report's Indicators appendix (web view + PDF), and a
writer pushes the cited indicators to MISP as one event from the report. The push is
lifecycle-gated (only approved or published reports can egress; a published report pushes from
its frozen publication snapshot), idempotent
(re-push updates the same event), failure-isolated, proxy-aware, and authenticated with an
env-only API key (ICEBERG_MISP_API_KEY). Admins configure the connection at /admin/misp.
Sources and IOCs carry their own TLP marking (manual sources default to AMBER, RSS-ingested
sources to CLEAR, IOCs inherit their source's TLP); each indicator's TLP rides to MISP as a
per-attribute tag. Cited indicators above ICEBERG_MISP_MAX_TLP (default AMBER) don't block the
push — MISP honours the markings — but the writer is prompted to confirm before they leave the
org. The same source TLP gates AI egress of a source's content against ICEBERG_AI_MAX_TLP.
All outbound HTTP (RSS fetching, the SIEM HTTP sink, and the MISP push) can be routed through a global proxy
configured at /admin/proxy — honour the system proxy (env vars), connect directly, or use
an explicit proxy with a no-proxy exclusion list (local domains / IP CIDR ranges). Proxy
credentials stay in the environment, never the DB.
Full-text search over the report library (SQLite FTS5, bm25), narrowed by tag / kind /
intel-level / TLP / status facets — access-scoped so stakeholders only ever match published reports.
Alias-aware: a search for "Fancy Bear" surfaces reports tagged APT28 even when the body never names the alias.
The controlled vocabulary — threat actor / campaign / malware / ATT&CK technique / sector /
topic — that analysts classify reports against. Named-threat entities (actor / malware / campaign)
carry structured aliases so APT28 / Fancy Bear / Sofacy resolve to one entity, plus structured
attribution (suspected sponsor/country, motivation, first/last seen) — /tags/{id} is a proper
entity profile page for those kinds (attribution + aliases + ATT&CK coverage + the reports
tagged with it).
- Python ≥ 3.14, FastAPI (single app: JSON API
/api/*+ server-rendered portal/*) - SQLModel on SQLite (dev/test default) or PostgreSQL (production option) — see Production datastore
- Jinja2 + Alpine.js portal with a "command-center" design system (left rail + ⌘K palette)
(
static/css/iceberg.css; Archivo / JetBrains Mono / Spectral; a compiled Tailwind v4 utility build) — Tailwind, Alpine and the fonts are self-hosted, version-pinned and SRI-protected (no CDN); regenerate withpython scripts/vendor_assets.py(Tailwind's theme/sources live infrontend/input.css) - markdown-it-py + nh3 for the live markdown preview
- Full-text report search: SQLite FTS5 (bm25) or PostgreSQL
tsvector(GIN +ts_rank), chosen by dialect - feedparser + httpx for inbound RSS/Atom feed ingestion (opt-in poller)
- Typst for PDF rendering
- PyTest for tests
- Auth: OIDC (Microsoft Entra ID) with a dev-login bypass for local use; role-based access (notebook collection material is writer-only, stakeholders consume finished products) with a same-origin CSRF guard on the cookie-authenticated portal
- Security response headers on every response — a strict Content-Security-Policy
(
script-src 'self', nounsafe-inline/unsafe-eval), HSTS (prod),X-Frame-Options,Referrer-Policy,Permissions-Policy, etc. The portal carries no inline JavaScript: Alpine runs from its CSP build with all components registered instatic/js/tags.js - Rate limiting on abuse-prone routes (auth, AI assist, PDF renders, outbound tests/pushes, search) — token-bucket per user/IP, in-memory or Redis-backed for multi-worker deployments, on by default in production
- Durable job outbox for external work — dissemination emails, publication webhooks and RSS
polls are queued in the database (same transaction as the state that caused them) and delivered
by an in-process pass or the
iceberg-workercommand, surviving process restarts
uv sync --extra dev
cp .env.example .env # tweak settings if you like
uv run uvicorn iceberg.main:app --reloadOpen http://localhost:8000. With ICEBERG_DEV_AUTH=true (the default) you'll see a
dev login on the sign-in page — pick a role (e.g. ANALYST) and continue. The schema is
created automatically on first boot (ICEBERG_AUTO_MIGRATE=true runs migrations for you).
Health probes. Two unauthenticated endpoints back container liveness/readiness probes:
GET /healthz (liveness — process up, no DB touch, always 200) and GET /readyz (readiness —
a cheap query against a core table, 200 when the database is reachable and migrated, else
503). In a prod deploy that runs migrations separately (ICEBERG_AUTO_MIGRATE=false),
/readyz only reports ready once the schema is in place.
Get oriented: open Help in the nav (/help) for a guide to your role's workflow,
a browsable look at what the other roles do, and a glossary of the intelligence concepts
(TLP, intel levels, source grading, the Diamond Model, ACH, ICD 203 judgements, dissemination).
Open Guided demo from the dashboard. An analyst starts a workspace and shares the one-time code with an ordinary stakeholder; a reviewer opens the shared workspace link. The checklist then drives all three roles through the existing requirement, notebook, review, immutable publication, feed, and feedback screens. Every demo record is visibly synthetic, external notifications are suppressed, operational metrics exclude it, and the owner can reset only that isolated workspace.
The isolation and reproducible browser/accessibility acceptance contract is documented in docs/demo-workspace.md.
- Create a notebook from the dashboard.
- Add a couple of sources, a note, and upload an attachment (e.g. a PDF). Sources are auto-graded when Iceberg can infer enough signal; analysts can override or clear the Admiralty/NATO reliability + credibility chip.
- Create an intelligence product, write markdown in the editor and watch the live preview; tick sources and attachments to cite them.
- Fill the analytic scaffolding (ICD 203) — Key Judgements (the BLUF), Key Assumptions and Intelligence Gaps. They render as discrete sections on the report page. Optionally set the analytic confidence (LOW/MODERATE/HIGH), stamped on the masthead; phrase event likelihood in prose using the editor's probability yardstick.
- Submit for review, then sign in again as a
REVIEWERto Approve and Publish. Publishing atomically freezes an immutable snapshot of the finished product (the web view, PDF input and MISP payload all serve from it), so later edits or deletions in the notebook can never rewrite a published report. - Render a PDF and download it: FULL (judgements + body + caveats + appendix) or EXEC_BRIEF / ONE_PAGER (Key-Judgements-only briefs).
- In a notebook, open the Diamond models section and add one — adversary, capability, infrastructure, victim and an analytic confidence. The Edit page shows a live SVG preview of the diagram as you type.
- In a report editor, click Insert next to the model (or type its
[[diamond:ID]]token) to embed the diagram inline at that point in the body. - The diagram renders in the live preview, the published report page, and the Typst PDF — all from one server-generated SVG.
- In a notebook, open the ACH analyses section and add one. On the Edit page, pose the key intelligence question, add the competing hypotheses (columns) and the evidence (rows), and rate each cell for consistency. A live SVG preview of the matrix — with the least-inconsistent (most tenable) hypothesis flagged — updates as you go.
- In a report editor, click Insert at cursor next to the analysis (or type its
[[ach:ID]]token) to embed the matrix inline at that point in the body. - The matrix renders in the live preview, the published report page, and the Typst PDF — all from one server-generated SVG.
- In a notebook, open the Figures section and upload an image (PNG/JPEG/GIF).
- In a report editor, click Insert at cursor next to the figure (or type its
[[figure:ID]]token) to embed the image inline at that point in the body. - The image renders in the live preview, the published report page (as an inline
data:URI), and the Typst PDF — all from the one upload.
- Tag the report with ATT&CK technique taxonomy terms (the report's coverage is derived from its own tags).
- In a report editor, open Insert ▾ → ATT&CK coverage matrix (or type the bare
[[attack]]token) to embed the technique-coverage heatmap inline at that point in the body. Unlike the diamond/figure/ach tokens it takes no ID. - The matrix renders as a server-generated SVG in the live preview, the published report page, and the Typst PDF; a report with no technique tags shows an "unavailable" notice.
- Sign in as a
STAKEHOLDER→ My Requirements → submit an intelligence requirement (title, kind — PIR / GIR / RFI, priority, intel level). Choosing PIR reveals a decision-context note and a review-by date. - Sign in as an
ANALYST→ Tasking to see the aggregated board; PIRs lead standing/ad-hoc work (but a Critical item of any kind still tops its column), and the PIR coverage panel flags uncovered or overdue PIRs. Open a requirement and move its status (OPEN → IN_PROGRESS → SATISFIED). - In a report editor, tick the Requirements satisfied; the link shows up on the requirement's detail page (traceability) and clears the PIR's collection gap. Notebooks can be linked the same way.
- As a
STAKEHOLDER, set your Preferences (preferred intel level, or "All levels"). - As an
ANALYST/REVIEWER, author and publish a report at that level (TLP AMBER or below). - Back as the stakeholder, your Feed shows the new report (with an unread badge on the
dashboard); a notification email is recorded by the
consolebackend (in-memory outbox). Reports marked TLP:RED or AMBER+STRICT are withheld from broadcast. Feed entries are written synchronously in the publish transaction; the email/webhook notifications are queued as durable jobs in that same transaction and delivered right after commit (withiceberg-workeras the retry path if the process dies first), so a crash never loses a notification silently. - Stakeholders can subscribe to taxonomy tags from Preferences; if they have any
subscriptions, publish-time matching requires at least one shared report tag. A publication
webhook (report metadata only) can be enabled/edited by an
ADMINat Publication webhook (/admin/webhook) — with a "Send test event" check — or seeded viaICEBERG_WEBHOOK_URL. Its stable generic JSON envelope is the default; Slack Block Kit and Microsoft Teams MessageCard wrappers are opt-in. The bearer token stays env-only (ICEBERG_WEBHOOK_TOKEN).
ADMINs can use Audience (/admin/audience) to create named groups, assign stakeholder
members, and scope reports to one or more groups from the report editor's Audience tab.
Stakeholders outside a scoped report's groups cannot see it in search, feeds, direct report
reads, or dissemination. Unscoped published reports remain visible to authenticated stakeholders.
Repeated routing decisions can be captured as a reviewed, versioned dissemination policy
(ADMINs, at /admin/dissemination-policy). A policy version holds JSON rules of the form
{"effect": "LIMIT_TO" | "EXCLUDE", "when": {…which products…}, "audience": {…which stakeholders…}},
has an optional effective window, and becomes immutable once approved — editing means drafting
the next version, because a publication records the exact version that decided its recipients.
Rules can only narrow: resolution starts from what the product's own marking and audience scope already allow, and every rule (and every publisher exception) removes recipients from there. No rule set can widen access to a product or release one above the TLP ceiling.
Before publishing, a REVIEWER/ADMIN opens Review audience & publish on an approved report
(/reports/{id}/audience) and sees exactly who receives it, who does not and which rule withheld
them, and can tick individual stakeholders to withhold. Publishing carries a fingerprint of that
resolution: if group membership, the policy or the report changes in between, the send is refused
with a 409 and the audience must be reviewed again. The resolved audience — policy versions,
exceptions and per-recipient decisions — is frozen into the publication snapshot, and the page then
shows the delivery receipts (feed delivery and read state) for the published product.
AI assist is off by default (ICEBERG_AI_BACKEND=none). The provider is admin-editable at
/admin/ai (the ICEBERG_AI_* env values seed the AISettings row on first read, then the row is
the source of truth). Selectable backends: openai and gemini (first-party APIs on pinned
base URLs, key in ICEBERG_AI_API_KEY), ollama (a local server, base URL validated against the
operator-approved ICEBERG_AI_OLLAMA_BASE_URL), openai-compatible (a generic chat endpoint —
ICEBERG_AI_BASE_URL + ICEBERG_AI_API_KEY, with the base URL pinned the same way against
ICEBERG_AI_OPENAI_COMPATIBLE_BASE_URL; leave that env value blank and the backend is refused),
claude (Anthropic's first-party API —
pip install '.[anthropic]', key in ICEBERG_AI_API_KEY, default model claude-opus-4-8), and
bedrock (Amazon Bedrock — pip install '.[bedrock]', ICEBERG_AI_AWS_REGION plus the standard AWS
credential chain, no API key). The API key stays env-only (the admin page shows a set/not-set pill,
never the value); base-URL pinning ensures a DB edit can't redirect a real key. When configured,
writer-only API endpoints can draft judgement text, source summaries, tag suggestions, Diamond/ACH
starts, analytic challenge notes, and candidate indicators extracted from a source (the notebook
Indicators section shows a "Suggest indicators" review list — candidates are refanged and constrained
to the MISP-pushable IOCType set, and the analyst accepts, edits, or discards each before it
becomes a real IOC). Suggestions are advisory only; Iceberg records an audit event with metadata,
never prompt/response bodies, every backend honours the global outbound proxy, and report content is
blocked when its TLP exceeds ICEBERG_AI_MAX_TLP. In an editable report, the AI review dock
lets an analyst request judgement drafts, controlled-tag suggestions and analytic challenge notes;
they remain local until edited and explicitly applied through the normal report/tag save paths.
Admins configure RSS/Atom sources at /admin/feeds; writers browse the resulting
articles at /feeds and send selected items into an existing or new notebook as
Source rows. Feed URLs are admin-only, downloads are size/time bounded and
failure-isolated, article HTML is sanitised, and promotion uses the existing
source grading path.
Writers can also stage structured external material straight into a notebook:
POST /api/notebooks/{id}/imports/taxii pulls a public TAXII/STIX JSON URL
(through the same bounded, SSRF-guarded fetcher) and files each STIX object as a
reviewable source, and POST /api/notebooks/{id}/imports/misp pulls one event by
UUID from the configured MISP instance, staging it as a source plus one IOC
per attribute that maps into Iceberg's supported indicator types.
Published reports can be exported as STIX 2.1 bundles with GET /api/reports/{id}/stix.
The export maps the report plus controlled taxonomy tags into STIX report, threat-actor,
malware, campaign, attack-pattern and sector identity objects, and adds:
- relationship objects —
attributed-to, from an entity to the sponsor recorded on its profile. Entities merely classified on the same product are not related to each other by the export: co-occurrence is not a recorded claim, so it travels as the report'sobject_refsand a warning says no relationship was inferred; - external references — a resolvable link back to the report and to each entity profile,
and the MITRE technique page (plus
kill_chain_phases) for ATT&CK terms; - markings — the product's TLP as the well-known STIX marking definition, carried in
object_marking_refson every object the product derives. TLP 2.0'sCLEARandAMBER+STRICThave no STIX equivalent, so they export as the nearest marking that is never less restrictive (AMBER+STRICTas TLP:RED, since STIXamberwould permit onward sharing), with the exact label preserved as a statement marking.
Nothing Iceberg models more precisely than STIX is dropped silently. Every approximation
produces a warning that is both machine-readable and readable by a person:
GET /api/reports/{id}/stix/conformance lists them (with the object counts and the fields
declared round-trip safe), and the bundle response points at it via an
X-Iceberg-Stix-Warning-Count header and a Link: …; rel="describedby".
The same published-report objects are available through a read-only TAXII-shaped collection
rooted at GET /api/taxii2/ (published-reports: collections, manifest, objects and
objects/{id}/versions/), access-scoped like report reads and supporting incremental pull
filters (added_after, limit, next, match[type], match[id], match[version],
match[spec_version]). Published products are immutable, so each served object has exactly
one version: first, last and all all select it, and an explicit timestamp selects it
only when it is that version. GET /api/reports/{id}/related
returns access-scoped related products from a rebuildable local index. Access is filtered in SQL
before anything is ranked, so a product a reader cannot see never changes their result count,
ranking or scores, and a permission change takes effect on their next request without a reindex.
Each index entry records the provider, model, model version, the report revision and a digest of the
indexed text, so an edited product or a model change reads as stale and is skipped rather than
served from a superseded revision. Maintain it with iceberg-rebuild-related (--batch N for a
bounded, repeatable pass — it is resumable because staleness lives on the row; --status for index
health, also available to admins at GET /api/reports/index-health/related and on the /admin hub).
Set ICEBERG_RELATED_BACKEND=none to switch the vector index off entirely: related products are then
served by deterministic lexical overlap over the same permission-filtered candidates. The report view exposes both the STIX download and related-product
panel when related products exist.
Example TAXII pulls using curl for quick smoke tests; production integrations can use
any TAXII/HTTP client with a Bearer JWT:
# Pull visible published STIX objects.
curl -H "Authorization: Bearer $ICEBERG_TOKEN" \
"http://localhost:8000/api/taxii2/collections/published-reports/objects/"
# Incrementally pull report SDOs added after a timestamp.
curl -G -H "Authorization: Bearer $ICEBERG_TOKEN" \
--data-urlencode "added_after=2026-06-01T00:00:00Z" \
--data-urlencode "limit=100" \
--data-urlencode "match[type]=report" \
"http://localhost:8000/api/taxii2/collections/published-reports/objects/"- Before publishing, have the
ANALYSTtick the Requirements satisfied so the report addresses one of the stakeholder's requirements; then publish so it disseminates to that stakeholder. - As the
STAKEHOLDER, open the report from your Feed → the Your feedback card: rate its usefulness, pick the requirement it satisfied, mark it Met, and send. The requirement jumps straight to Satisfied — the cycle is closed. - As the
ANALYST/REVIEWER, the report view shows a Product feedback panel and the requirement detail shows the verdict; Maturity picks up the new response / satisfaction rates.
- Sign in as an
ADMIN→ RSS feeds (/admin/feeds) and add a feed URL (e.g. a vendor or CISA advisories RSS), then click Fetch all now. (For a real schedule, setICEBERG_RSS_POLL_ENABLED=true.) - Sign in as an
ANALYST→ Feed reader (/feeds) to browse the fetched articles; filter by feed or "not yet sent". - On an article, open Send to notebook, pick an existing notebook (or create a new one), and send — it's captured as an auto-graded source in that notebook.
- Sign in as an
ADMIN→ Taxonomy (/admin/tags). A starter taxonomy (~94 tags: CISA sectors, intel topics, MITRE ATT&CK techniques, and example threat actors + malware) is seeded on first run; add or retire entries, or add a campaign. For actor / malware / campaign terms, list aliases (comma-separated) so alternate names resolve to one entity, and record attribution (suspected sponsor/country, motivation, first/last seen). - As an
ANALYST, open a report editor → Tags panel → tick tags to classify the product. (Tags stay editable even after the report is published.) - Use Search (left rail, or ⌘K) — full-text query over title/body, narrowed by tag / kind / intel level / TLP / status facets. Search is alias-aware — querying an alias (e.g. "Fancy Bear") surfaces reports tagged with the canonical entity. Click a named-threat tag chip to open its entity profile (attribution + aliases + ATT&CK coverage + the reports tagged with it). Stakeholders' searches only ever return published reports.
- Tag reports with TECHNIQUE taxonomy terms (they carry MITRE ATT&CK T-codes).
- Open Matrix (left rail,
/matrix) for a technique-coverage heatmap across all visible reports, grouped by ATT&CK tactic and shaded by how many reports exhibit each technique. An entity profile shows the same heatmap scoped to that actor/malware/campaign. - Download an ATT&CK Navigator layer (
.json) — per report (from the report's Downloads) or aggregated per entity (from the entity profile) — and open it in ATT&CK Navigator. Stakeholders' coverage and exports only ever count published reports. - Embed a report's own coverage matrix inline with the bare
[[attack]]token (see Embed the report's ATT&CK coverage matrix above) so the heatmap appears in the finished product itself. - Need more than the starter technique set? Import the full MITRE Enterprise ATT&CK
catalogue with
iceberg-import-attack --file enterprise-attack.json(optionally--sha256 <pinned-hash>to verify the reviewed bundle and--updateto refresh existing tags). The importer is deliberately file-only — obtain the STIX bundle through your normal supply-chain process; the server never downloads it for you.
A release is a git tag; the automation does the rest. Before tagging, rehearse the exact commit
(Actions → Release rehearsal, or scripts/release_rehearsal.sh with docker and a throwaway
PostgreSQL): it proves a clean install, an upgrade of a database that already holds data, a backup
and verified restore, and prints the rollback boundary. After tagging, scripts/verify_release.sh v0.1.0-beta.1 checks the published digest, cosign signature, SLSA provenance and source revision
all agree. Compatibility, support and rollback policy: docs/RELEASING.md.
Sibling products (IcebergOSINT, ASM, CM) hand over an evidence item as a small versioned
envelope instead of sharing a database — the contract is published at
docs/contracts/evidence-envelope-v1.json:
curl -X POST -H "Authorization: Bearer $ICEBERG_TOKEN" -H "Content-Type: application/json" \
--data @docs/contracts/evidence-envelope-v1.json \
"http://localhost:8000/api/notebooks/1/evidence"- Intake is authenticated as an ordinary Iceberg writer (no producer credentials are stored here),
schema-versioned and size-bounded.
(source_system, external_id, revision)is the identity: re-posting the same revision is idempotent, the same identity with different content is refused, and a new revision supersedes its predecessor rather than editing history. - The envelope's marking is honoured but only ever strengthened — never below
ICEBERG_EVIDENCE_MIN_TLP(defaultAMBER) — and nothing it claims about permissions is trusted. - Nothing becomes collection material until an analyst accepts it. Open the notebook's External evidence section to see origin, revision, marking and whether a digest was declared, then accept it as a source (which keeps the deep link, digest and provenance) or reject it.
- If the producing system withdraws an item, record the revocation: the record and any citation built on it are kept — a published product may already rely on it — and the report view shows an "evidence withdrawn at source" notice. The accepted evidence manifest is frozen into the publication snapshot, so a finished product always records where its material came from.
- As an
ADMIN, open Taxonomy (/admin/tags), type the new name next to a term and press Preview rename. Nothing changes yet: you get the impact — how many draft and published reports carry the term, how many published snapshots froze the old name, how many stakeholder subscriptions and dissemination rules reference it — or the conflict that blocks it (a term of that kind already exists, or the name is already another entity's alias). - Press Rename to "…" to execute. The old name is kept as an alias, so alias-aware search still
finds the entity by its former name and an old link keeps working via
/tags/by-name/{old-slug}. Published snapshots keep the name they froze — a finished product is never rewritten. Nothing else is: every reference is by id, so there is no background migration. - Undo rename reverses it (and removes the alias it added) while nobody has come to rely on the new name. Both steps are audited with the old and new names.
- As a
REVIEWER, open a report and use the Editorial review section: pick the section your comment is about, quote the exact passage, and optionally propose a suggested replacement. Tick Blocking for something that must be settled before publication, and mention a colleague with@name(their address's local part) to notify them. - Each thread records the revision it was written against, so after an edit it says whether it is still current, still quotable, or pointing at text that has gone — it never silently drifts.
- The report's author accepts a suggestion (reviewers propose, the analyst decides). Accepting applies it only if the report is still at the revision shown and the quoted passage is still uniquely present; otherwise you get a 409 rather than a silent overwrite. Resolve or reject settles a thread without changing the text.
- Publication refuses while a blocking thread is open (set
ICEBERG_PUBLISH_REQUIRES_RESOLVED_THREADS=falseto treat threads as advisory). Threads are internal: a stakeholder never sees them.
- Open Maturity (left rail,
/maturity) — a writer-only, leadership-facing dashboard that derives program-health indicators purely from existing data: production (publish velocity, time-to-publish, reviewer engagement), requirement coverage across all kinds (PIR/GIR/RFI), dissemination reach (stakeholders reached, feed read-rate, TLP-withheld, plus feedback-loop response / satisfaction / useful rates), and tradecraft adoption (share of published reports using source grading, structured judgements, analytic confidence, embedded analytic models and ATT&CK tags). - The page tops it with an indicative CTI-CMM maturity rollup — four capability dimensions scored CTI0 (Pre-foundational) → CTI3 (Leading) by thresholds. It is evidence to inform a self-assessment, not a substitute for a formal one.
- Open Measures (left rail,
/measures) — a writer-only view of how the programme is operating: requirement age and status, tasked/sourced coverage, the neglected requirements nothing is collecting against or producing for, declared collection gaps, product linkage, audience reach, and stakeholder usefulness over time. It is aggregate by design — there is no per-analyst breakdown anywhere in it. - Filter by window (30/90/365 days or all time) and requirement kind, and take the same numbers away with Export CSV.
- Every figure has a published definition and the records it comes from, listed at the foot of the
page. Two rules are worth knowing: a delivery that drew no response is never counted as a
poor rating (the response rate is reported separately), and any breakdown or rate resting on
fewer than
ICEBERG_MEASURES_MIN_GROUPresponding stakeholders (default 5) is suppressed — in the export too — so an aggregate cannot identify one person's answer. A rate counts as identifying just as a breakdown does: over a single respondent, "satisfaction: 100%" is that stakeholder's verdict. Set it to0on a single-team deployment.
- Sign in as ADMIN and open Audit log (left rail,
/admin/audit). Security-relevant events — logins/logouts, authorization denials and CSRF blocks, report lifecycle transitions, admin taxonomy edits, and sensitive-file access — are recorded to a local trail and emitted as structured JSON (OWASP application-logging shape). - Choose one or more emit methods —
stdout/file (for a sidecar shipper), syslog (RFC 5424 over UDP/TCP), or an HTTP event collector (Splunk HEC / Elastic / webhook) — set the endpoints and a minimum severity, and Save. The HTTP/HEC token is read fromICEBERG_AUDIT_HTTP_TOKENand is never stored in the database. - Click Send test event to verify connectivity end-to-end, then watch the filterable event trail on the same page. A failing/unreachable SIEM never blocks a request — events still persist locally and forward off the response path.
General application logs are configured separately from the security-audit emit path:
ICEBERG_LOG_FORMAT=auto keeps local/dev output human-readable and switches production
(ICEBERG_ENVIRONMENT=prod) to JSON app logs with the request correlation_id. Set
ICEBERG_LOG_FORMAT=text|json to force either format and ICEBERG_LOG_LEVEL to tune verbosity.
The SIEM stdout method remains a raw OWASP-shaped JSON event line for compatibility with log
shippers.
The starter taxonomy is bundled as data (src/iceberg/data/starter_tags.json) and imported
automatically on first boot. To (re-)import explicitly — e.g. after enriching the catalog or
to load your own vocabulary — run the idempotent import step:
python -m iceberg.seed # or: iceberg-seed
python -m iceberg.seed --list # preview the catalog without writing
python -m iceberg.seed --file my_tags.json --updateAll settings use the ICEBERG_ env prefix and can live in .env (see
.env.example). An admin can review the resolved runtime config
at /admin/config — every value the process is using, where it came from
(database / environment / built-in default), prod-guard validation, and feature
tiles; secrets show only a set/not-set status, never their value. Highlights:
| Variable | Purpose |
|---|---|
ICEBERG_SECRET_KEY |
JWT + session signing key (use a random 32+ byte value in prod) |
ICEBERG_DATABASE_URL |
Datastore URL — SQLite (sqlite:///./iceberg.db, default) or PostgreSQL (postgresql+psycopg://user:pass@host:5432/iceberg); see Production datastore |
ICEBERG_LOG_LEVEL / ICEBERG_LOG_FORMAT |
App log level and format; auto uses text outside prod and JSON in prod |
ICEBERG_DEV_AUTH |
Enable the dev-login bypass (auto-off when ICEBERG_ENVIRONMENT=prod) |
ICEBERG_OIDC_ENABLED + ICEBERG_OIDC_* |
Entra OIDC settings — seed the Entra provider on the OIDCSettings row; edit all providers live at /admin/oidc |
ICEBERG_OIDC_CLIENT_SECRET / ICEBERG_OIDC_AUTHENTIK_CLIENT_SECRET / ICEBERG_OIDC_AUTH0_CLIENT_SECRET / ICEBERG_OIDC_OKTA_CLIENT_SECRET |
Secret per-provider OIDC client secrets (env-only — never stored in the DB) |
ICEBERG_OIDC_DEPARTMENT_CLAIM / ICEBERG_OIDC_TITLE_CLAIM / ICEBERG_OIDC_COMPANY_CLAIM / ICEBERG_OIDC_OFFICE_CLAIM |
Optional Entra profile claims persisted on users |
ICEBERG_TYPST_BIN / ICEBERG_RENDER_OUTPUT_DIR |
Typst binary + PDF output dir |
ICEBERG_RENDER_RETENTION_KEEP / ICEBERG_RENDER_RETENTION_DAYS |
Rendered-PDF retention policy; prune manually with iceberg-prune-renders |
ICEBERG_AUDIT_RETENTION_DAYS |
Local AuditEvent trail retention (default 365; 0 = keep forever). SIEM is the long-term store; prune with iceberg-prune-audit |
ICEBERG_FEED_ITEM_RETENTION_DAYS |
Un-ingested FeedItem retention (default 90; 0 = keep forever). Items captured into a notebook are kept; prune with iceberg-prune-audit |
ICEBERG_ATTACHMENTS_DIR / ICEBERG_ATTACHMENT_MAX_MB |
Notebook attachment storage dir + size cap (default 25 MB) |
ICEBERG_ATTACHMENT_ALLOWED_TYPES |
Comma-separated MIME whitelist for uploads (override the default set) |
ICEBERG_FIGURES_DIR / ICEBERG_FIGURE_MAX_MB |
Notebook figure (embeddable image) storage dir + size cap (default 10 MB) |
ICEBERG_STORAGE_BACKEND |
Persistent blob backend: local for development/single-node use (default) or s3 for shared production storage |
ICEBERG_STORAGE_S3_BUCKET / ICEBERG_STORAGE_S3_PREFIX / ICEBERG_STORAGE_S3_REGION |
Private S3 bucket, deployment-owned immutable key prefix, and region |
ICEBERG_STORAGE_S3_ENDPOINT_URL / ICEBERG_STORAGE_S3_FORCE_PATH_STYLE |
Optional operator-pinned S3-compatible endpoint and addressing mode; custom endpoints are env-only trust anchors |
ICEBERG_STORAGE_S3_ACCESS_KEY_ID / ICEBERG_STORAGE_S3_SECRET_ACCESS_KEY / ICEBERG_STORAGE_S3_SESSION_TOKEN |
Secret credentials for a custom endpoint (env-only). Native AWS deployments use the standard workload-identity credential chain |
ICEBERG_STORAGE_ORPHAN_GRACE_SECONDS / ICEBERG_STORAGE_DELETION_GRACE_SECONDS |
Independent safety windows for unreferenced-object reconciliation and durable physical deletion |
ICEBERG_METRICS_ENABLED / ICEBERG_METRICS_TOKEN |
Opt-in Prometheus-compatible /metrics; bearer token is env-only and required in production |
ICEBERG_DISSEMINATION_MAX_TLP |
Broadcast ceiling (default AMBER; RED/AMBER_STRICT withheld) |
ICEBERG_EMAIL_BACKEND + ICEBERG_SMTP_* |
console (dev) or smtp; SMTP server settings |
ICEBERG_WEBHOOK_URL / ICEBERG_WEBHOOK_TOKEN / ICEBERG_WEBHOOK_FORMAT |
Optional report-publication webhook (seeds the row; URL/enabled/timeout/format editable live at /admin/webhook). Generic JSON is the compatibility default; Slack/Teams envelopes are opt-in. Token is env-only |
ICEBERG_PORTAL_BASE_URL |
Base URL used in notification email links |
ICEBERG_JOBS_* |
Durable outbox tuning (lease seconds, max attempts, retry backoff base, worker poll interval) for email/webhook/RSS jobs processed by iceberg-worker |
ICEBERG_RATE_LIMIT_ENABLED / ICEBERG_RATE_LIMIT_STORE / ICEBERG_RATE_LIMIT_REDIS_URL |
Abuse protection for auth, AI, render, outbound tests/pushes, and search; enabled by default in prod, Redis-backed for shared worker state |
ICEBERG_RATE_LIMIT_* |
Per-surface rate-limit tunables (auth/dev-login, OIDC, AI, render, outbound actions, search) |
ICEBERG_AI_BACKEND + ICEBERG_AI_* |
Governed AI assist backend (none/openai/openai-compatible/ollama/gemini/claude/bedrock), model, key/ICEBERG_AI_AWS_REGION, TLP egress ceiling and timeout — seeds the AISettings row, then edit live at /admin/ai (off by default) |
ICEBERG_AI_OLLAMA_BASE_URL |
Operator-approved Ollama base URL; the DB-editable base URL for the ollama provider must match it exactly (anti-SSRF base-URL pinning) |
ICEBERG_AI_OPENAI_COMPATIBLE_BASE_URL |
Operator-approved base URL for the generic openai-compatible backend, enforced identically. Blank (the default) refuses that backend — without an env trust anchor a DB edit could ship the API key and TLP-gated content to any host |
ICEBERG_EVIDENCE_MIN_TLP |
Floor marking for evidence offered by an adjacent system (default AMBER) — an envelope's marking is honoured but never allowed below this |
ICEBERG_PUBLISH_REQUIRES_RESOLVED_THREADS |
Refuse to publish while a blocking editorial review thread is open (default true) |
ICEBERG_MEASURES_MIN_GROUP |
Minimum distinct responding stakeholders behind a /measures breakdown before it is shown (default 5; 0 disables suppression) |
ICEBERG_RELATED_BACKEND |
Related-product index provider: local (default — deterministic, non-egress hash embedding) or none (no vector index; related products are served by the lexical fallback) |
ICEBERG_RSS_POLL_ENABLED / ICEBERG_RSS_POLL_INTERVAL_MINUTES |
Opt-in RSS poller switch and interval |
ICEBERG_RSS_FETCH_TIMEOUT / ICEBERG_RSS_MAX_RESPONSE_BYTES / ICEBERG_RSS_MAX_ITEMS_PER_FEED |
RSS/Atom fetch timeout, response byte cap, and per-feed item cap |
ICEBERG_RSS_ALLOW_PRIVATE_HOSTS |
Allow private/internal feed hosts for trusted deployments |
ICEBERG_AUDIT_ENABLED + ICEBERG_AUDIT_METHODS |
Master switch + default SIEM emit methods (stdout/syslog/http); editable live at /admin/audit |
ICEBERG_AUDIT_SYSLOG_* / ICEBERG_AUDIT_HTTP_ENDPOINT |
syslog (RFC 5424) host/port/protocol + HTTP event-collector endpoint defaults |
ICEBERG_AUDIT_HTTP_TOKEN |
Secret HEC/bearer token for the HTTP SIEM method (env-only — never stored in the DB) |
SQLite is the zero-dependency default for local dev/test only. Every container/production
deployment runs on PostgreSQL — the app refuses to boot on a SQLite URL when
ICEBERG_ENVIRONMENT=prod (see config._guard_production), and the Docker image carries no
SQLite fallback. Point Iceberg at PostgreSQL (managed instance recommended):
- Install the driver:
pip install "iceberg[postgres]"(oruv sync --extra postgres) — pullspsycopgv3. - Set
ICEBERG_DATABASE_URL=postgresql+psycopg://user:pass@host:5432/iceberg. - Run migrations as a deploy step (keep
ICEBERG_AUTO_MIGRATE=false):iceberg-migrate(the in-code Alembic runner; the k8s migrate Job uses the same command). The same migrations cover both backends — the SQLite FTS5 objects and the Postgressearch_vector(tsvector+ GIN) index are each dialect-guarded.
Full-text search adapts automatically: SQLite uses FTS5 (bm25); PostgreSQL uses a generated
tsvector column queried with websearch_to_tsquery + ts_rank. Production replicas share
attachments, figures and retained PDFs through a private S3/S3-compatible bucket. The local
backend remains available for development and deliberate single-node deployments. Container +
Kubernetes manifests (including an optional self-hosted Postgres StatefulSet) are under
deploy/k8s/ and docker-compose.yml. Compose runs a
single app service always paired with its postgres database container. The default
Compose path also includes Redis for rate-limit buckets shared across uvicorn workers
(ICEBERG_RATE_LIMIT_REDIS_URL=redis://redis:6379/0) and a Caddy TLS front end on
:80/:443 (same shape as the sibling IcebergTTX/EBS stacks); the app's plain-HTTP :8000
stays published on loopback only, as a local/debug side door:
docker compose up # https://localhost via Caddy + PostgreSQL (no .env needed)
cp .env.example .env # optional: customise settings, then re-runTo exercise shared storage locally, set the S3 variables in .env to the documented
development values and start the optional authenticated SeaweedFS service and storage worker:
export ICEBERG_STORAGE_BACKEND=s3
export ICEBERG_STORAGE_S3_BUCKET=iceberg-dev
export ICEBERG_STORAGE_S3_ENDPOINT_URL=http://object-storage:8333
export ICEBERG_STORAGE_S3_ACCESS_KEY_ID=iceberg-dev-access
export ICEBERG_STORAGE_S3_SECRET_ACCESS_KEY=iceberg-dev-secret
export ICEBERG_STORAGE_S3_FORCE_PATH_STYLE=true
export ICEBERG_STORAGE_S3_VERIFY_TLS=false
docker compose --profile object-storage upYou may put those values in .env instead. They are fixed local-development credentials only;
production endpoints require TLS and unique managed secrets.
For the default localhost Caddy issues a certificate from its own local CA, so the browser
shows a one-time trust warning (or import Caddy's root CA); plain http://localhost:8000
also still works locally.
A fresh clone needs no pre-step — .env is optional (env_file is required: false) and is
merged in automatically when present. For production-style Compose, set
ICEBERG_ENVIRONMENT=prod, a real ICEBERG_SECRET_KEY, ICEBERG_AUTO_MIGRATE=false, and
non-default POSTGRES_* credentials.
Iceberg always runs behind a TLS-terminating reverse proxy — a Kubernetes ingress, a cloud load balancer, or (for a single-host Docker deployment) the bundled Caddy front end, which Compose starts by default:
ICEBERG_DOMAIN=intel.example.com docker compose up # auto Let's Encrypt TLS (needs public :80/:443 + DNS)Caddy (deploy/Caddyfile) terminates TLS and proxies to the app; pair it with
ICEBERG_ENVIRONMENT=prod for Secure cookies + HSTS. Caddy publishes
:80/:443 (the only public ports; it runs non-root with all capabilities dropped except
NET_BIND_SERVICE, on a read-only rootfs), while the app's plain-HTTP :8000 publish remains loopback-only. The container starts uvicorn with
--proxy-headers and trusts X-Forwarded-* only from FORWARDED_ALLOW_IPS (Compose scopes this
to its dedicated proxy network; Kubernetes requires the ingress pod CIDR) so the request scheme is correct and the audit log records
the real client IP rather than the proxy's. On Kubernetes, terminate TLS at an Ingress
instead — deploy/k8s/ingress.yaml is a commented ingress-nginx example
with a cert-manager note (edit the host + TLS secret and apply). An nginx sidecar isn't bundled —
the ingress / Caddy covers TLS, and the app sets its own security headers.
Persistent state spans PostgreSQL and the configured blob store. Back them up as one consistency set: quiesce application and background writers, wait for leases to expire or finish, dump PostgreSQL, snapshot/copy the deployment's object prefix, and record both artifacts in the same dated manifest. Use bucket versioning and retention appropriate to your recovery objectives; never expose the bucket or issue public/presigned object URLs.
Restore into a fresh database and fresh object prefix. Apply migrations, then run
iceberg-verify-files, iceberg-storage-check, and a reconciliation dry-run before starting
workers or application replicas. Treat any missing object, digest mismatch, or active-check
failure as a failed restore. The full quiesce, backup, restore, verification, migration and
rollback runbook is in deploy/k8s/README.md.
Notebook sources carry Admiralty/NATO-style grades: source reliability (A-F) plus
information credibility (1-6), displayed as chips such as B2 or B6. Grading is a
fully offline local heuristic applied inline when a source is added: reliability is
inferred from the source identity (recognised publisher domain or named authority) and
credibility from the analyst's summary and pasted source content. If only the source identity can be judged,
credibility is marked 6 ("cannot be judged"). There is no outbound network fetch and no
external LLM provider — analysts can always manually override, clear, or regrade a source.
Iceberg supports Microsoft Entra, Authentik, Auth0 and Okta simultaneously, configured at
/admin/oidc (admin-only). Each provider's client secret is env-only
(ICEBERG_OIDC_<PROVIDER>_CLIENT_SECRET); everything else (client id, locator, scopes, role
claim + map) is edited on the page. Redirect URI is <base>/auth/oidc/<provider>/callback.
Back-compat (Entra). An existing single-Entra deployment keeps working unchanged: the legacy
ICEBERG_OIDC_ENABLED / ICEBERG_OIDC_TENANT_ID / ICEBERG_OIDC_CLIENT_ID /
ICEBERG_OIDC_CLIENT_SECRET / ICEBERG_OIDC_REDIRECT_URI env values seed the Entra provider
on first boot, and the legacy /auth/entra/login + /auth/callback paths still resolve. To add
other providers, enable and fill them in at /admin/oidc.
Each provider maps its group/role claim (per-provider role_claim + a role_map of
group=ROLE,…) to a role (ADMIN/ANALYST/REVIEWER/STAKEHOLDER), defaulting unmapped users
to read-only STAKEHOLDER. A callback with no email — or an explicitly unverified email — is
rejected. Users are keyed on (auth_provider, issuer, sub); the same email may exist under two
providers, and a cross-provider identity collision is refused. Logout increments the user's token
version, invalidating existing Iceberg JWTs.
Install the typst binary and ensure it's on
PATH (or set ICEBERG_TYPST_BIN). The template src/iceberg/typst/product.typ
uses the cmarker package, fetched from the Typst registry on first render
(needs network once). If the pinned version is unavailable for your Typst
install, change it at the top of that file. Render endpoints return 503 when
Typst is not installed. A rendered example ships at
docs/sample-report-volt-typhoon.pdf.
Schema is managed by Alembic (src/iceberg/migrations/); SQLModel models are the source
of truth. By default init_db() runs alembic upgrade head on boot — set
ICEBERG_AUTO_MIGRATE=false in production and migrate explicitly in the deploy step.
alembic upgrade head # apply migrations to ICEBERG_DATABASE_URL
alembic revision --autogenerate -m "add x" # create a migration after changing a model
alembic downgrade -1 # roll back one revision
iceberg-prune-renders # apply rendered-PDF retention immediately
iceberg-prune-audit # apply AuditEvent + un-ingested FeedItem retention (cron/CronJob)
iceberg-rebuild-related # rebuild related-report vectors
iceberg-worker # process durable email/webhook/RSS jobs (one pass; --forever / --inspect)
iceberg-verify-files # check DB file references exist on disk (restore verification)
iceberg-import-attack --file bundle.json # import the full Enterprise ATT&CK technique setThe baseline migration also owns the SQLite FTS5 search objects (the report_fts virtual
table + sync triggers). A database created by an older create_all build has the right tables
but no version row — run alembic stamp head once to mark it current before upgrading.
uv run pytest # run the suite (parallel by default via pytest-xdist)
uv run pytest --cov=iceberg --cov-report=term-missing # with coverage (CI gates on a floor)
uv run pytest -n0 tests/test_foo.py # disable parallelism (for pdb / -s output)The suite runs in parallel by default (-n auto, set in addopts): it's per-test
setup-bound — each test rebuilds the app (migrations + taxonomy seed + FTS rebuild) — so it
scales near-linearly across cores (~107s → ~40s on 8). Tests run against in-memory SQLite using
the dev-login bypass; tests/test_migrations.py
additionally applies the real migrations to a temp database and checks the models haven't
drifted from them. The Typst render test skips automatically when the binary isn't present.
CI runs on every push to main and on pull requests through uv
using the committed uv.lock: a test job (pytest + coverage, with Typst installed so
the PDF-render path is exercised; coverage is gated by fail_under in pyproject.toml) and
a static job — ruff check (lint),
bandit -r src/iceberg (security), vulture (dead code; configured under [tool.vulture]
with vulture_whitelist.py for framework false positives), pip-audit --skip-editable
(fails on a known CVE in any installed dependency), plus frontend lint:
djlint src/iceberg/templates --lint (Jinja/HTML
structure, configured under [tool.djlint]) and biome lint src/iceberg/static (the
hand-authored CSS + Alpine component JS, vendored assets excluded; configured in biome.jsonc).
A third assets job re-runs scripts/vendor_assets.py and fails on any drift, so the
self-hosted, SRI-protected Tailwind/Alpine/font assets always match their pinned versions.
Third-party actions are pinned to commit SHAs (with a tracking version comment), and
Dependabot keeps the Python dependencies and those action pins current.
Reproduce the local gates with uv sync --extra dev then the commands above through uv run.
The repo includes a production-oriented Dockerfile, docker-compose.yml, and starter
Kubernetes manifests under deploy/k8s/. Deployments run on PostgreSQL (SQLite is local
dev/test only — the prod app refuses to boot on it). Production deployments should set
ICEBERG_AUTO_MIGRATE=false, run alembic upgrade head as a separate job, configure private
shared object storage, and provide a unique 32+ byte ICEBERG_SECRET_KEY. Outbound work
(dissemination emails, publication webhooks, RSS polls) lands in a durable database outbox and
is normally delivered by an in-process pass right after commit; schedule iceberg-worker
(a bounded single pass suitable for cron/a Kubernetes CronJob, or --forever under a process
manager) to retry anything a crashed process left behind, and use iceberg-worker --inspect
to review job state.
The image is built from fully pinned inputs so the same commit produces the same bytes: base
images and the uv binary by digest, the Typst tarball by SHA-256, and the Debian package set by
the APT_SNAPSHOT timestamp at the top of the Dockerfile. The runtime stage still runs
apt-get upgrade — the base digest freezes packages until docker-library rebuilds it, and the
release scan fails on fixable HIGH/CRITICAL findings — but it reads from
snapshot.debian.org at that timestamp rather than a live mirror, so the upgrade is a function
of a pinned input rather than of the build date. The archive is fetched over HTTPS deliberately:
APT's signatures prove Debian published a package set but not which one, and a snapshot has to
disable APT's staleness check, so the transport is what binds the answer to the timestamp that was
asked for. Moving to a newer package set is a commit that
bumps APT_SNAPSHOT; docker build --build-arg APT_SNAPSHOT=<timestamp> tries one without
editing the file.
A FastAPI process serves both the JSON API and the server-rendered portal; the same service layer fronts the datastore, local-or-S3 blob storage and proxy-aware outbound integrations.
flowchart TB
Client["Browser / API client"]
Client --> MW
subgraph app["FastAPI app — single process (uvicorn --proxy-headers)"]
direction TB
MW["Middleware (outer → inner)<br/>SecurityHeaders · Audit · RateLimit · Session · CSRF"]
Routers["Routers<br/>/api/* (JSON) · /* (Jinja portal) · /healthz /readyz"]
Services["Services<br/>notebooks · reports · dissemination · search · audit/siem · misp · feeds · ai"]
Render["Rendering<br/>markdown → HTML (nh3) · Typst → PDF · SVG diagrams"]
ORM["SQLModel ORM + Alembic migrations"]
MW --> Routers --> Services --> ORM
Services --> Render
end
Routers --> Static["Static assets<br/>self-hosted Tailwind / Alpine / fonts (SRI)"]
ORM --> DB[("Datastore<br/>SQLite (dev) / PostgreSQL (prod)")]
Render --> Blob["Blob store<br/>local (dev) / S3-compatible (prod)<br/>attachments · figures · rendered PDFs"]
Services -. "outbound via proxy.resolve" .-> Ext["External<br/>Entra OIDC · SMTP · RSS · SIEM · MISP · webhook · AI"]
Three supported shapes, from a zero-dependency local run to Kubernetes. Cylinders are persistent storage; dashed links are config/credential injection.
1. Local development — uvicorn with the SQLite default and on-disk working dirs. No external dependencies; intended for dev/test only.
flowchart LR
Dev["Developer browser<br/>http://localhost:8000"] --> App["uvicorn --reload<br/>FastAPI app · :8000<br/>ICEBERG_ENVIRONMENT=dev"]
App --> DB[("SQLite<br/>./iceberg.db")]
App --> FS["Local dirs<br/>./attachments · ./figures · ./rendered"]
2. Docker Compose — a Caddy reverse proxy terminates TLS (Let's Encrypt for a real
ICEBERG_DOMAIN, a local-CA cert for the default localhost) and forwards X-Forwarded-*; the
app trusts those headers (--proxy-headers) so the scheme and client IP are correct. Caddy
publishes :80/:443 — the only public ports; the app service pairs with its own PostgreSQL
container on the compose network and keeps a loopback-only plain-HTTP publish
(localhost:8000) as a local/debug side door. Local blob storage is the default; the
object-storage profile adds authenticated SeaweedFS and the durable storage-deletion worker.
flowchart TB
Client["Browser / API client"] -->|"https :443 · http→https :80"| Caddy
Client -.->|"localhost:8000 (loopback debug)"| App
subgraph net["docker compose — iceberg-internal network"]
Caddy["caddy service<br/>TLS termination (Let's Encrypt / local CA)<br/>:80 · :443 · non-root, read-only"]
App["iceberg service<br/>FastAPI + uvicorn --proxy-headers · :8000<br/>prod → Secure cookies + HSTS"]
PG["postgres service<br/>postgres:18 · :5432 (network-internal)"]
Caddy -->|"reverse proxy + X-Forwarded-*"| App
App -->|"postgresql+psycopg://iceberg@postgres:5432"| PG
end
Caddy --- CV[("caddy-data · caddy-config<br/>certificates")]
App -->|"optional S3 profile"| S3[("SeaweedFS S3-compatible store<br/>private object prefix")]
App --- V1[("iceberg-data volume<br/>local-backend development only")]
PG --- V2[("iceberg-pg-data volume<br/>/var/lib/postgresql")]
3. Kubernetes — an Ingress terminates TLS to a ClusterIP Service and a two-replica rolling
Deployment (non-root, read-only rootfs, PDB and topology spread). A migrate Job runs
alembic upgrade head out of band; config comes from a ConfigMap and secrets from a Secret.
PostgreSQL and the private S3-compatible store are managed services or operator-provided
equivalents. Two leased storage workers process durable physical deletions; reconciliation is a
bounded CronJob. A separate active-check Job proves PUT → HEAD → GET/digest → DELETE before rollout.
flowchart TB
Client["Browser"] -->|"https"| Ingress["Ingress<br/>TLS termination"]
subgraph ns["Kubernetes namespace"]
Ingress --> Svc["Service (ClusterIP)<br/>iceberg · :8000"]
Svc --> Pod["Deployment (replicas: 2 · RollingUpdate)<br/>one uvicorn worker/pod · non-root · read-only rootfs"]
Worker["Storage workers (replicas: 2)<br/>leased durable deletes"]
Reconcile["Reconcile CronJob<br/>bounded + cursor-backed"]
Check["Storage check Job<br/>PUT · HEAD · GET/hash · DELETE"]
Job["migrate Job<br/>iceberg-migrate → alembic upgrade head"]
CM["ConfigMap<br/>iceberg-config (non-secret env)"]
Sec["Secret<br/>iceberg-secrets<br/>ICEBERG_DATABASE_URL · SECRET_KEY · tokens"]
PG[("PostgreSQL<br/>managed service or StatefulSet")]
S3[("Private S3-compatible store<br/>versioned deployment prefix")]
Pod -->|"psycopg"| PG
Pod -->|"SigV4 + TLS"| S3
Worker --> PG
Worker --> S3
Reconcile --> PG
Reconcile --> S3
Check --> S3
Job -->|"psycopg"| PG
CM -. "envFrom" .-> Pod
Sec -. "envFrom" .-> Pod
CM -. "envFrom" .-> Job
Sec -. "envFrom" .-> Job
end
The static gates also run automatically on every commit via
pre-commit — repo: local hooks that invoke the same pinned dev
tools, so local and CI results match. Activate them once per clone:
uv sync --extra dev
pre-commit install # wire the git pre-commit hook
pre-commit run --all-files # optional: run them on demandBiome is the one gate not in the pip dev extra — it ships as a standalone
binary (no Node toolchain). CI installs it via biomejs/setup-biome; for the local hook, drop the
binary on your PATH (the pre-commit hook no-ops if it's absent):
curl -fsSL -o ~/.local/bin/biome \
https://github.com/biomejs/biome/releases/download/@biomejs/biome@2.5.0/biome-linux-x64
chmod +x ~/.local/bin/biomeSee the structure diagram in CLAUDE.md.
Contributions are welcome — see CONTRIBUTING.md for local setup, the test/lint gates, and PR expectations. All participants are expected to follow the Code of Conduct.
Found a vulnerability? Please report it privately — do not open a public issue. See SECURITY.md for the disclosure process.
Iceberg is licensed under the Apache License 2.0. See NOTICE for attribution.