Source of the MISP User Guide — the official user guide for MISP, the open source threat intelligence sharing platform.
Read it online at https://www.circl.lu/doc/misp/ (also available as PDF and EPUB).
The book is built with Quarto. Each chapter lives in its
own directory as index.qmd, in plain Markdown — you can edit any chapter and
open a pull request without installing anything.
| Path | Purpose |
|---|---|
_quarto.yml |
Book definition: metadata, chapter reading order, output formats |
index.qmd |
Book landing page (Introduction) |
<chapter>/index.qmd |
One directory per chapter (was README.md under Honkit) |
<chapter>/figures/ |
Screenshots and images for that chapter |
glossary.qmd |
Glossary (rendered as an appendix) |
assets/ |
Logo, favicon and misp.scss theme |
_freeze/ |
Committed output of executable code cells (keeps CI hermetic) |
-
Install Quarto (single self-contained binary): https://quarto.org/docs/get-started/.
-
Render everything:
quarto render # writes HTML + PDF + EPUB into _book/Or preview with hot reload while editing:
quarto preview # or ./serve.sh
PDF is produced with Quarto's bundled Typst engine — no LaTeX toolchain is required. HTML and EPUB are native.
Code-heavy chapters (e.g. PyMISP) contain live cells that run against a MISP
instance at render time. Their output is frozen into _freeze/ and
committed, so ordinary contributors and CI render the book offline without a
live instance.
To re-execute those cells against your own instance and refresh the frozen output:
export QUARTO_PYTHON=/path/to/venv/bin/python # env with jupyter + pymisp
export MISP_URL=https://your-misp
export MISP_KEY=your-api-key # never commit real keys
rm -rf _freeze/<chapter> # drop the stale freeze
quarto render <chapter>/index.qmdThen commit the updated _freeze/ directory.
quarto render produces _book/, which is rsynced to the two CIRCL servers.
Maintainers can run publish.sh locally, or let the
quarto.yml GitHub Actions workflow build and
deploy on push to main (deploy requires the CIRCL_DEPLOY_KEY and
CIRCL_KNOWN_HOSTS repository secrets).
See CONTRIBUTING.md. The MISP user guide is dual-licensed under AGPLv3 and CC-BY-SA 4.0.