feat(scanner-tuning): add suppression lifecycle model and drift evidence gates (#2724)#2725
Closed
zeroknowledge0x wants to merge 1 commit into
Conversation
…nce gates Addresses review feedback from UnitOneAI#2724: - Add Suppression Risk Tiers (Safe/Moderate/Risky/Dangerous) to distinguish evidence-backed, time-bounded, owner-approved suppressions from blanket indefinite exclusions - Add Safe Suppression Requirements with mandatory fields: named owner, expiry date, scope, evidence, and auto-reopen triggers - Add Drift Evidence Gates (6 gates): suppression age, plugin update, asset exposure change, package change, compensating control status, quarterly review - Add Suppression Inventory and Drift Gate Audit to Output Format sections - Enforce critical distinction: compensated risk != confirmed false positive - Update FP Validation Workflow disposition to require lifecycle compliance - Update Prompt Injection Safety Notice with suppression lifecycle constraints - Add pitfalls UnitOneAI#6 (indefinite suppressions) and UnitOneAI#7 (compensated risk as FP) Closes UnitOneAI#2724
|
Thanks for the submission! 🙏 SecuritySkills is now issue-first: contributions need a linked issue that a maintainer has marked approved before a PR is opened. Please open an issue describing the skill, wait for the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a suppression lifecycle model and drift evidence gates to the
scanner-tuningskill. The current skill correctly warns against blind suppressions but lacks a positive model for safe suppressions and automated gates to catch when safe suppressions become dangerous after environment drift.Business impact: Without lifecycle governance, suppressions silently accumulate as blind spots. A suppression that was safe in 2024 (narrow scope, evidence-backed) becomes a hidden true positive in 2026 when the service moves to internet-facing or the scanner plugin is updated. This PR prevents that class of silent risk accumulation.
Changes
Suppression Lifecycle Model (Step 2)
Drift Evidence Gates (Step 2)
Six automated gates that force re-evaluation when the environment drifts:
Output Format additions
Updated sections
Closes #2724