Skip to content

Commit

Permalink
Added classification reason to incident (#8661)
Browse files Browse the repository at this point in the history
* Added case tactics

* Added incident tactics

* Removing redundant comma from incident additional data

* Changed tabs to spaces to better match format in file

* Rename tactics field (alertTactics=>tactics)

* Rename unknown classification to undetermined classification

* Undo last commmit

* Added classification reason to incident

* Examples updated
  • Loading branch information
dosiso authored Mar 27, 2020
1 parent 4cd7471 commit 3abe2ea
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6087,6 +6087,38 @@
]
}
},
"classificationReason": {
"description": "The classification reason the incident was closed with",
"enum": [
"SuspiciousActivity",
"SuspiciousButExpected",
"IncorrectAlertLogic",
"InaccurateData"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "IncidentClassificationReason",
"values": [
{
"description": "Classification reason was suspicious activity",
"value": "SuspiciousActivity"
},
{
"description": "Classification reason was suspicious but expected",
"value": "SuspiciousButExpected"
},
{
"description": "Classification reason was incorrect alert logic",
"value": "IncorrectAlertLogic"
},
{
"description": "Classification reason was inaccurate data",
"value": "InaccurateData"
}
]
}
},
"createdTimeUtc": {
"description": "The time the incident was created",
"format": "date-time",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"severity": "High",
"classification": "FalsePositive",
"classificationReason": "IncorrectAlertLogic",
"status": "Closed"
}
}
Expand All @@ -44,6 +45,7 @@
},
"severity": "High",
"classification": "FalsePositive",
"classificationReason": "IncorrectAlertLogic",
"status": "Closed",
"incidentNumber": 3177,
"labels": [],
Expand Down Expand Up @@ -78,6 +80,7 @@
},
"severity": "High",
"classification": "FalsePositive",
"classificationReason": "IncorrectAlertLogic",
"status": "Closed",
"incidentNumber": 3177,
"labels": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
},
"severity": "High",
"classification": "FalsePositive",
"classificationReason": "InaccurateData",
"status": "Closed",
"incidentNumber": 3177,
"labels": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
},
"severity": "High",
"classification": "FalsePositive",
"classificationReason": "IncorrectAlertLogic",
"status": "Closed",
"incidentNumber": 3177,
"labels": [],
Expand Down

0 comments on commit 3abe2ea

Please sign in to comment.