| Version | Supported |
|---|---|
| 0.0.x | ✅ (current alpha) |
Only the latest 0.0.x alpha receives security fixes during the pre-PoC
phase. Production stability tier is declared starting at 0.1.0.
If you discover a security vulnerability in SCPN-MIF-CORE, please report it responsibly:
- Preferred: GitHub Security Advisories
- Email: protoscience@anulum.li (subject:
[SECURITY] SCPN-MIF-CORE) - Do not open a public GitHub issue for security vulnerabilities.
We will acknowledge receipt within 48 hours and aim to provide a fix within 7 days for critical issues. The project lead handles disclosure coordination.
SCPN-MIF-CORE is a simulation, formal-verification, and FPGA synthesis library targeting pulsed magneto-inertial fusion control. It does not handle user authentication, financial data, or production network services in its default configuration. Security concerns are primarily:
- Malicious input files (JSON configurations, capacitor-bank specifications, AER stimulus traces, SymbiYosys property files, Vivado constraint files).
- Unsafe deserialisation (serde, pickle, NumPy
load). - Numerical overflow or denial of service via pathological inputs to the rigid-rotor BVP, Hall-MHD step, or NMPC adapter.
- Native code memory safety in the Rust crates exposed via PyO3.
- Supply-chain integrity for the multi-language acceleration chain (Cargo, pip, Julia Pkg, Go modules, Mojo via pixi).
- Post-quantum signature validation on capacitor-bank trigger commands
(FIPS 204 ML-DSA-65), once SCPN-QUANTUM-CONTROL ships
QUA-C.2.
- Input validation: Public API boundaries enforce finite-float, integer, fraction, and array-shape checks at every public entry point.
- Rust:
cargo auditand thesecurity-auditworkflow are run in CI. Supply-chain checks also includepip-auditfor Python dependencies. - Configuration safety: Inputs are validated at entry points in each public runtime surface; deterministic parameter schema tests guard JSON and TOML parsing paths.
- RNG isolation: All stochastic modules use scoped
numpy.random.Generatorinstances; no use of the global module-level RNG. - Pre-commit:
ruff,ruff-format,typos, merge-conflict detection,tools/check_sync_tags.py,tools/check_secrets.py, and repository-scoped secret scan (gitleaks) run in CI through both workflow and local hooks. - Pre-push:
tools/preflight.pyruns the full local quality gate. - Formal verification: Sub-50-nanosecond triggering surface is gated by
SymbiYosys, nuXmv, and Kind 2 proofs (see
hdl/formal/). - SBOM: CycloneDX package manifests are generated for Python and Rust and attached to GitHub releases.
- Post-quantum readiness: Capacitor-bank trigger commands are signed
with FIPS 204 ML-DSA-65 via SCPN-QUANTUM-CONTROL's
PqcTriggerSignerstarting at0.2.0.
- Pre-PoC alpha bugs that do not result in remote code execution, memory corruption, or credential exposure.
- Issues in third-party dependencies (report upstream; we will track and bump as soon as a fixed release is available).
- Hardware vulnerabilities in target FPGA SKUs (report to the silicon vendor).