Expand description
The Check trait and the run_audit orchestrator.
In the TS tool each audit category (auditGateway, auditCredentials, …)
is one async function returning AuditFinding[]. Here that becomes one
Check impl per category (PRODUCT.md A.4: “one Check impl per audit* fn”),
living in the secureops-checks crate.
Structs§
- Audit
Options - Options for running an audit (port of
AuditOptions, minuscontextwhich is passed explicitly).
Traits§
- Check
- One audit category. Implementors live in
secureops-checks.
Functions§
- run_
audit - Run every check against
ctx, append the MAESTRO cross-layer compound-risk finding, then score and summarize - the faithful port ofrunAudit.