Skip to content

Commit

Permalink
feat: Adding uris to indicator of compromise (IOC) field (#367)
Browse files Browse the repository at this point in the history
* feat: Adding uris to indicator of compromise (IOC) field

PiperOrigin-RevId: 468598080

Source-Link: googleapis/googleapis@07c3f50

Source-Link: googleapis/googleapis-gen@dd0b32a
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZGQwYjMyYTE4OWE5YjE1YTc5NDYwMmVlNWY3YzdjNDg2MDBmNmU0YSJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
3 people authored Aug 22, 2022
1 parent 9cf7f3c commit bfe14f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class Indicator(proto.Message):
The list of matched signatures indicating
that the given process is present in the
environment.
uris (Sequence[str]):
The list of URIs associated to the Findings.
"""

class ProcessSignature(proto.Message):
Expand Down Expand Up @@ -147,6 +149,10 @@ class YaraRuleSignature(proto.Message):
number=3,
message=ProcessSignature,
)
uris = proto.RepeatedField(
proto.STRING,
number=4,
)


__all__ = tuple(sorted(__protobuf__.manifest))
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ class Technique(proto.Enum):
DOMAIN_POLICY_MODIFICATION = 30
IMPAIR_DEFENSES = 31
NETWORK_SERVICE_DISCOVERY = 32
ACCESS_TOKEN_MANIPULATION = 33
ABUSE_ELEVATION_CONTROL_MECHANISM = 34

primary_tactic = proto.Field(
proto.ENUM,
Expand Down

0 comments on commit bfe14f9

Please sign in to comment.