Fixable Severity at least Important
No violationsstackroxhighbuilddeployAlert on deployments with fixable vulnerabilities with a Severity Rating at least Important
- Rationale
- Known vulnerabilities make it easier for adversaries to exploit your application. You can fix these high-severity vulnerabilities by updating to a newer version of the affected component(s).
- Remediation
- Use your package manager to update to a fixed version in future builds or speak with your security team to mitigate the vulnerabilities.
CategoriesVulnerability Management
Compliance mappingsView coverage →
- DORA EU 2022/2554
- Art. 9.4(c)
- ISO/IEC 27001 2022
- A.8.8
- NIST SP 800-53 rev. 5
- RA-5SI-2
- PCI DSS 4.0
- 6.3.16.3.3
- SOC 2 2017 TSC
- CC7.1
Generated artifacts
1 of 5 targets supportedfixable-severity-at-least-important.rego
# Fixable Severity at least Important (trivy)
# severity: high
# source: stackrox/a919ccaf-6b43-4160-ac5d-a405e1440a41
package trivy.fixable_severity_at_least_important
deny[msg] {
# rule 1
some v
v := input.Vulnerabilities[_]
v.FixedVersion != ""
some v
v := input.Vulnerabilities[_]
v.Severity == {">= IMPORTANT"}[_]
msg := "[high] Fixable Severity at least Important: Alert on deployments with fixable vulnerabilities with a Severity Rating at least Important"
}
IR (canonical)
{
"id": "a919ccaf-6b43-4160-ac5d-a405e1440a41",
"name": "Fixable Severity at least Important",
"description": "Alert on deployments with fixable vulnerabilities with a Severity Rating at least Important",
"rationale": "Known vulnerabilities make it easier for adversaries to exploit your application. You can fix these high-severity vulnerabilities by updating to a newer version of the affected component(s).",
"remediation": "Use your package manager to update to a fixed version in future builds or speak with your security team to mitigate the vulnerabilities.",
"severity": "high",
"categories": [
"Vulnerability Management"
],
"lifecycle": [
"build",
"deploy"
],
"eventSource": "none",
"scope": [],
"exclusions": [],
"enforcement": {
"failBuild": true
},
"expression": {
"op": "and",
"children": [
{
"op": "criterion",
"field": "fixed-by",
"values": [
".*"
],
"valuesOp": "or",
"negate": false
},
{
"op": "criterion",
"field": "severity",
"values": [
">= IMPORTANT"
],
"valuesOp": "or",
"negate": false
}
]
},
"disabled": false
}Original StackRox JSON
{
"id": "a919ccaf-6b43-4160-ac5d-a405e1440a41",
"name": "Fixable Severity at least Important",
"description": "Alert on deployments with fixable vulnerabilities with a Severity Rating at least Important",
"rationale": "Known vulnerabilities make it easier for adversaries to exploit your application. You can fix these high-severity vulnerabilities by updating to a newer version of the affected component(s).",
"remediation": "Use your package manager to update to a fixed version in future builds or speak with your security team to mitigate the vulnerabilities.",
"disabled": false,
"categories": [
"Vulnerability Management"
],
"lifecycleStages": [
"BUILD",
"DEPLOY"
],
"eventSource": "NOT_APPLICABLE",
"exclusions": [],
"scope": [],
"severity": "HIGH_SEVERITY",
"enforcementActions": [
"FAIL_BUILD_ENFORCEMENT"
],
"policySections": [
{
"sectionName": "",
"policyGroups": [
{
"fieldName": "Fixed By",
"booleanOperator": "OR",
"negate": false,
"values": [
{
"value": ".*"
}
]
},
{
"fieldName": "Severity",
"booleanOperator": "OR",
"negate": false,
"values": [
{
"value": ">= IMPORTANT"
}
]
}
]
}
],
"notifiers": [],
"lastUpdated": null,
"SORTName": "",
"SORTLifecycleStage": "",
"SORTEnforcement": false,
"policyVersion": "1.1",
"mitreAttackVectors": [],
"criteriaLocked": true,
"mitreVectorsLocked": true,
"isDefault": true,
"source": "IMPERATIVE"
}