Skip to content

Commit

Permalink
Add case and incident tactics (Azure#8288)
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
  • Loading branch information
dosiso authored and tasharm-0412 committed Mar 4, 2020
1 parent 0a8f358 commit f79dbcc
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4434,6 +4434,14 @@
"readOnly": true,
"type": "array"
},
"tactics": {
"description": "The tactics associated with case",
"items": {
"$ref": "#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
},
"severity": {
"description": "The severity of the case",
"enum": [
Expand Down Expand Up @@ -5793,6 +5801,14 @@
},
"readOnly": true,
"type": "array"
},
"tactics": {
"description": "The tactics associated with incident",
"items": {
"$ref": "#/definitions/AttackTactic"
},
"readOnly": true,
"type": "array"
}
},
"type": "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"relatedAlertIds": [
"cf441808-2d50-4c10-81af-cdd0b908c121"
],
"tactics": [],
"caseNumber": 3177
}
}
Expand Down Expand Up @@ -87,6 +88,7 @@
"relatedAlertIds": [
"cf441808-2d50-4c10-81af-cdd0b908c121"
],
"tactics": [],
"caseNumber": 3177
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
"relatedAlertIds": [
"cf441808-2d50-4c10-81af-cdd0b908c121"
],
"tactics": [
"InitialAccess",
"Persistence"
],
"caseNumber": 3177,
"lastComment": "This is a demo case",
"totalComments": 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
"relatedAlertIds": [
"cf441808-2d50-4c10-81af-cdd0b908c121"
],
"tactics": [
"InitialAccess",
"Persistence"
],
"caseNumber": 3177,
"lastComment": "This is a demo case",
"totalComments": 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"alertsCount": 0,
"bookmarksCount": 0,
"commentsCount": 3,
"alertProductNames": []
"alertProductNames": [],
"tactics": []
}
}
}
Expand Down Expand Up @@ -84,7 +85,8 @@
"alertsCount": 0,
"bookmarksCount": 0,
"commentsCount": 3,
"alertProductNames": []
"alertProductNames": [],
"tactics": []
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@
"alertsCount": 0,
"bookmarksCount": 0,
"commentsCount": 3,
"alertProductNames": []
"alertProductNames": [],
"tactics": [
"InitialAccess",
"Persistence"
]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
"alertsCount": 0,
"bookmarksCount": 0,
"commentsCount": 3,
"alertProductNames": []
"alertProductNames": [],
"tactics": [
"Persistence"
]
}
}
}
Expand Down

0 comments on commit f79dbcc

Please sign in to comment.