Skip to content

Commit

Permalink
feat: Add next_steps field to finding's list of attributes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 440383959
  • Loading branch information
Google APIs authored and Copybara-Service committed Apr 8, 2022
1 parent 23a2d29 commit 6a276f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions google/cloud/securitycenter/v1/finding.proto
Expand Up @@ -272,4 +272,7 @@ message Finding {

// Represents IAM bindings associated with the Finding.
repeated IamBinding iam_bindings = 39;

// Next steps associate to the finding.
string next_steps = 40;
}
5 changes: 4 additions & 1 deletion google/cloud/securitycenter/v1/mitre_attack.proto
Expand Up @@ -78,7 +78,7 @@ message MitreAttack {

// MITRE ATT&CK techniques that can be referenced by SCC findings.
// See: https://attack.mitre.org/techniques/enterprise/
// Next ID: 30
// Next ID: 31
enum Technique {
// Unspecified value.
TECHNIQUE_UNSPECIFIED = 0;
Expand Down Expand Up @@ -169,6 +169,9 @@ message MitreAttack {

// T1485
DATA_DESTRUCTION = 29;

// T1484
DOMAIN_POLICY_MODIFICATION = 30;
}

// The MITRE ATT&CK tactic most closely represented by this finding, if any.
Expand Down

0 comments on commit 6a276f6

Please sign in to comment.