-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### Related Issue: PR 1292 and Slack discussion #### Description of changes: Adds `Incident Finding` specific attributes to a profile that can be added to other non-aggregate Findings. Added the profile to all Findings that extend `finding`. Updated the descriptions of each class. --------- Signed-off-by: Paul Agbabian <[email protected]>
- Loading branch information
1 parent
d1d1dc2
commit 5e1c79d
Showing
8 changed files
with
65 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"description": "The attributes that add incident handling semantics to a Finding.", | ||
"meta": "profile", | ||
"caption": "Incident", | ||
"name": "incident", | ||
"annotations": { | ||
"group": "primary" | ||
}, | ||
"attributes": { | ||
"assignee": { | ||
"group": "context", | ||
"requirement": "optional" | ||
}, | ||
"assignee_group": { | ||
"group": "context", | ||
"requirement": "optional" | ||
}, | ||
"is_suspected_breach": { | ||
"group": "context", | ||
"requirement": "optional" | ||
}, | ||
"priority": { | ||
"group": "context", | ||
"requirement": "optional" | ||
}, | ||
"priority_id": { | ||
"group": "context", | ||
"requirement": "recommended" | ||
}, | ||
"src_url": { | ||
"description": "A Url link used to access the original incident.", | ||
"group": "primary", | ||
"requirement": "recommended" | ||
}, | ||
"ticket": { | ||
"group": "context", | ||
"requirement": "optional" | ||
}, | ||
"verdict": { | ||
"group": "primary", | ||
"requirement": "recommended" | ||
}, | ||
"verdict_id": { | ||
"group": "primary", | ||
"requirement": "recommended" | ||
} | ||
} | ||
} |