| semantic-links |
|
|---|
This folder contains security analysis documents for the Torrust Tracker project.
When a security issue is detected (e.g., by Docker Scout, dependabot, manual audit, or container image vulnerability scanning), we create an analysis document here to:
- Evaluate whether the vulnerability actually affects our project.
- Document the decision so other contributors seeing the same warning can quickly determine whether it has been analyzed before.
- Track periodic review — even non-affecting vulnerabilities should be re-evaluated periodically to check if the situation has changed.
docs/security/analysis/
├── README.md # This file — index and process
├── non-affecting/ # Vulnerabilities that do NOT affect us
│ ├── CVE-{id}.md # Per-CVE files (preferred for individual CVEs)
│ └── {date}_{source}.md # Bulk scan/event files (for bulk triage)
└── affecting/ # (future) Vulnerabilities that DO affect us
We use one catalog for all vulnerability sources (Docker scans, cargo-audit, dependabot, etc.). A vulnerability is a vulnerability regardless of origin.
Individual CVEs from container scans are documented in their own file:
non-affecting/
├── CVE-2026-5435.md # glibc TSIG
├── CVE-2026-5450.md # glibc scanf
├── CVE-2026-5928.md # glibc ungetwc
├── CVE-2026-6238.md # glibc DNS response
└── CVE-2026-27171.md # zlib CRC32
Advantages:
grep -r CVE-2026-5435finds it instantly.- Fast to check "have we seen this before?" on any new scan.
- Each file carries its own
review-date,review-cadence, andrequires-recheck-whenin frontmatter.
For bulk triage (e.g. a full Docker Scout report with dozens of CVEs), a single event-based file can be used instead of creating individual CVE files. Example:
non-affecting/
└── 2026-06-10_containerfile-trixie-cves.md # Bulk triage of 100+ CVEs
-
Check the catalog:
grep -r '<CVE-ID>' docs/security/analysis/non-affecting/to see if this vulnerability has already been analyzed. If it has, verify therequires-recheck-whenconditions still hold. If they do, you're done. -
If not yet cataloged: create a new per-CVE analysis document in
non-affecting/following the template below. -
If it DOES affect us: escalate immediately. Create an issue and a fix. The analysis document should describe the impact, affected components, and remediation plan.
Non-affecting verdicts can become stale when dependencies or code change. Each per-CVE file
has a requires-recheck-when field that specifies the conditions under which the verdict
must be re-evaluated.
Triggers for recheck:
- A change to the
Containerfilebase image. - A new system dependency added (e.g., via new
FROMstage or package install). - Any change that affects the
requires-recheck-whencondition documented in the CVE file.