Skip to content

Commit

Permalink
Incident update (ocsf#1320)
Browse files Browse the repository at this point in the history
#### Related Issue: 1319

#### Description of changes:
Updated descriptions for the `impact` related attributes, in particular
`impact_id` and added the references and source to NIST.
Added the `impact` related attributes to the `incident` profile (they
should have been added at the outset).

---------

Signed-off-by: Paul Agbabian <[email protected]>
Co-authored-by: Jonathan Rau <[email protected]>
  • Loading branch information
pagbabian-splunk and jonrau-at-queryai authored Jan 17, 2025
1 parent f5399f2 commit 71b0c14
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 14 deletions.
23 changes: 15 additions & 8 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -2499,25 +2499,32 @@
},
"impact_id": {
"caption": "Impact ID",
"description": "The normalized impact of the finding.",
"description": "The normalized impact of the incident or finding. Per NIST, this is the magnitude of harm that can be expected to result from the consequences of unauthorized disclosure, modification, destruction, or loss of information or information system availability.",
"sibling": "impact",
"type": "integer_t",
"source": "impact value; impact level",
"references": [{"description": "NIST SP 800-172 from FIPS 199", "url": "https://doi.org/10.6028/NIST.FIPS.199"},
{"description": "NIST Computer Security Resource Center", "url": "https://doi.org/10.6028/NIST.FIPS.199"}],
"enum": {
"0": {
"caption": "Unknown",
"description": "The normalized impact is unknown."
},
"1": {
"caption": "Low"
"caption": "Low",
"description": "The magnitude of harm is low."
},
"2": {
"caption": "Medium"
"caption": "Medium",
"description": "The magnitude of harm is moderate."
},
"3": {
"caption": "High"
"caption": "High",
"description": "The magnitude of harm is high."
},
"4": {
"caption": "Critical"
"caption": "Critical",
"description": "The magnitude of harm is high and the scope is widespread."
},
"99": {
"caption": "Other",
Expand All @@ -2526,8 +2533,8 @@
}
},
"impact_score": {
"caption": "Impact",
"description": "The impact of the finding, valid range 0-100.",
"caption": "Impact Score",
"description": "The impact as an integer value of the finding, valid range 0-100.",
"type": "integer_t"
},
"injection_type": {
Expand Down Expand Up @@ -3768,7 +3775,7 @@
},
"priority_id": {
"caption": "Priority ID",
"description": "The normalized priority. Priority identifies the relative importance of the finding. It is a measurement of urgency.",
"description": "The normalized priority. Priority identifies the relative importance of the incident or finding. It is a measurement of urgency.",
"sibling": "priority",
"type": "integer_t",
"enum": {
Expand Down
9 changes: 6 additions & 3 deletions events/findings/data_security_finding.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,18 @@
},
"impact": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"impact_id": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"impact_score": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"is_alert": {
"profile": null,
Expand Down
9 changes: 6 additions & 3 deletions events/findings/detection_finding.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,18 @@
},
"impact": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"impact_id": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"impact_score": {
"group": "context",
"requirement": "optional"
"requirement": "optional",
"profile": null
},
"is_alert": {
"profile": null,
Expand Down
12 changes: 12 additions & 0 deletions profiles/incident.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@
"group": "context",
"requirement": "optional"
},
"impact": {
"group": "primary",
"requirement": "recommended"
},
"impact_id": {
"group": "primary",
"requirement": "recommended"
},
"impact_score": {
"group": "primary",
"requirement": "recommended"
},
"is_suspected_breach": {
"group": "context",
"requirement": "optional"
Expand Down

0 comments on commit 71b0c14

Please sign in to comment.