Returns the externalSystems Resource.
Close httplib2 connections.
group(parent, body=None, x__xgafv=None)
Filters an organization or source's findings and groups them by their specified properties. To group across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings, /v1/folders/{folder_id}/sources/-/findings, /v1/projects/{project_id}/sources/-/findings
Retrieves the next page of results.
Lists an organization or source's findings. To list across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings
Retrieves the next page of results.
patch(name, body=None, updateMask=None, x__xgafv=None)
Creates or updates a finding. The corresponding source must exist for a finding creation to succeed.
setMute(name, body=None, x__xgafv=None)
Updates the mute state of a finding.
setState(name, body=None, x__xgafv=None)
Updates the state of a finding.
updateSecurityMarks(name, body=None, startTime=None, updateMask=None, x__xgafv=None)
Updates security marks.
close()
Close httplib2 connections.
group(parent, body=None, x__xgafv=None)
Filters an organization or source's findings and groups them by their specified properties. To group across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings, /v1/folders/{folder_id}/sources/-/findings, /v1/projects/{project_id}/sources/-/findings Args: parent: string, Required. Name of the source to groupBy. Its format is "organizations/[organization_id]/sources/[source_id]", folders/[folder_id]/sources/[source_id], or projects/[project_id]/sources/[source_id]. To groupBy across all sources provide a source_id of `-`. For example: organizations/{organization_id}/sources/-, folders/{folder_id}/sources/-, or projects/{project_id}/sources/- (required) body: object, The request body. The object takes the form of: { # Request message for grouping by findings. "compareDuration": "A String", # When compare_duration is set, the GroupResult's "state_change" attribute is updated to indicate whether the finding had its state changed, the finding's state remained unchanged, or if the finding was added during the compare_duration period of time that precedes the read_time. This is the time between (read_time - compare_duration) and read_time. The state_change value is derived based on the presence and state of the finding at the two points in time. Intermediate state changes between the two times don't affect the result. For example, the results aren't affected if the finding is made inactive and then active again. Possible "state_change" values when compare_duration is specified: * "CHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration, but changed its state at read_time. * "UNCHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration and did not change state at read_time. * "ADDED": indicates that the finding did not match the given filter or was not present at the start of compare_duration, but was present at read_time. * "REMOVED": indicates that the finding was present and matched the filter at the start of compare_duration, but did not match the filter at read_time. If compare_duration is not specified, then the only possible state_change is "UNUSED", which will be the state_change set for all findings present at read_time. If this field is set then `state_change` must be a specified field in `group_by`. "filter": "A String", # Expression that defines the filter to apply across findings. The expression is a list of one or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. Examples include: * name * source_properties.a_property * security_marks.marks.marka The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes. The following field and operator combinations are supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=`, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<`, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time = 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` * security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `source_properties.size = 100` is a valid filter string. Use a partial match on the empty string to filter based on a property existing: `source_properties.my_property : ""` Use a negated partial match on the empty string to filter based on a property not existing: `-source_properties.my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` "groupBy": "A String", # Required. Expression that defines what assets fields to use for grouping (including `state_change`). The string value should follow SQL syntax: comma separated list of fields. For example: "parent,resource_name". The following fields are supported: * resource_name * category * state * parent * severity The following fields are supported when compare_duration is set: * state_change "pageSize": 42, # The maximum number of results to return in a single response. Default is 10, minimum is 1, maximum is 1000. "pageToken": "A String", # The value returned by the last `GroupFindingsResponse`; indicates that this is a continuation of a prior `GroupFindings` call, and that the system should return the next page of data. "readTime": "A String", # Time used as a reference point when filtering findings. The filter is limited to findings existing at the supplied time and their values are those at that specific time. Absence of this field will default to the API's version of NOW. } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response message for group by findings. "groupByResults": [ # Group results. There exists an element for each existing unique combination of property/values. The element contains a count for the number of times those specific property/values appear. { # Result containing the properties and count of a groupBy request. "count": "A String", # Total count of resources for the given properties. "properties": { # Properties matching the groupBy fields in the request. "a_key": "", }, }, ], "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results. "readTime": "A String", # Time used for executing the groupBy request. "totalSize": 42, # The total number of results matching the query. }
group_next()
Retrieves the next page of results. Args: previous_request: The request for the previous page. (required) previous_response: The response from the request for the previous page. (required) Returns: A request object that you can call 'execute()' on to request the next page. Returns None if there are no more items in the collection.
list(parent, compareDuration=None, fieldMask=None, filter=None, orderBy=None, pageSize=None, pageToken=None, readTime=None, x__xgafv=None)
Lists an organization or source's findings. To list across all sources provide a `-` as the source id. Example: /v1/organizations/{organization_id}/sources/-/findings Args: parent: string, Required. Name of the source the findings belong to. Its format is "organizations/[organization_id]/sources/[source_id], folders/[folder_id]/sources/[source_id], or projects/[project_id]/sources/[source_id]". To list across all sources provide a source_id of `-`. For example: organizations/{organization_id}/sources/-, folders/{folder_id}/sources/- or projects/{projects_id}/sources/- (required) compareDuration: string, When compare_duration is set, the ListFindingsResult's "state_change" attribute is updated to indicate whether the finding had its state changed, the finding's state remained unchanged, or if the finding was added in any state during the compare_duration period of time that precedes the read_time. This is the time between (read_time - compare_duration) and read_time. The state_change value is derived based on the presence and state of the finding at the two points in time. Intermediate state changes between the two times don't affect the result. For example, the results aren't affected if the finding is made inactive and then active again. Possible "state_change" values when compare_duration is specified: * "CHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration, but changed its state at read_time. * "UNCHANGED": indicates that the finding was present and matched the given filter at the start of compare_duration and did not change state at read_time. * "ADDED": indicates that the finding did not match the given filter or was not present at the start of compare_duration, but was present at read_time. * "REMOVED": indicates that the finding was present and matched the filter at the start of compare_duration, but did not match the filter at read_time. If compare_duration is not specified, then the only possible state_change is "UNUSED", which will be the state_change set for all findings present at read_time. fieldMask: string, A field mask to specify the Finding fields to be listed in the response. An empty field mask will list all fields. filter: string, Expression that defines the filter to apply across findings. The expression is a list of one or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. Examples include: * name * source_properties.a_property * security_marks.marks.marka The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes. The following field and operator combinations are supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=`, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<`, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339 string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time = 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` * security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `<=` For example, `source_properties.size = 100` is a valid filter string. Use a partial match on the empty string to filter based on a property existing: `source_properties.my_property : ""` Use a negated partial match on the empty string to filter based on a property not existing: `-source_properties.my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.display_name: `=`, `:` orderBy: string, Expression that defines what fields and order to use for sorting. The string value should follow SQL syntax: comma separated list of fields. For example: "name,resource_properties.a_property". The default sorting order is ascending. To specify descending order for a field, a suffix " desc" should be appended to the field name. For example: "name desc,source_properties.a_property". Redundant space characters in the syntax are insignificant. "name desc,source_properties.a_property" and " name desc , source_properties.a_property " are equivalent. The following fields are supported: name parent state category resource_name event_time source_properties security_marks.marks pageSize: integer, The maximum number of results to return in a single response. Default is 10, minimum is 1, maximum is 1000. pageToken: string, The value returned by the last `ListFindingsResponse`; indicates that this is a continuation of a prior `ListFindings` call, and that the system should return the next page of data. readTime: string, Time used as a reference point when filtering findings. The filter is limited to findings existing at the supplied time and their values are those at that specific time. Absence of this field will default to the API's version of NOW. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response message for listing findings. "listFindingsResults": [ # Findings matching the list request. { # Result containing the Finding and its StateChange. "finding": { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. # Finding matching the search request. "access": { # Represents an access event. # Access details associated to the Finding, such as more information on the caller, which method was accessed, from where, etc. "callerIp": "A String", # Caller's IP address, such as "1.1.1.1". "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from. "regionCode": "A String", # A CLDR. }, "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy". "principalEmail": "A String", # Associated email, such as "foo@google.com". "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com" "userAgentFamily": "A String", # What kind of user agent is associated, e.g. operating system shells, embedded or stand-alone applications, etc. }, "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding. "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION" "compliances": [ # Contains compliance information for security standards associated to the finding. { # Contains compliance information about a security standard indicating unmet recommendations. "ids": [ # Policies within the standard/benchmark e.g. A.12.4.1 "A String", ], "standard": "A String", # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp", etc. "version": "A String", # Version of the standard/benchmark e.g. 1.1 }, ], "connections": [ # Contains information about the IP connection associated with the finding. { # Contains information about the IP connection associated with the finding. "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected. "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected. "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17). "sourceIp": "A String", # Source IP address. "sourcePort": 42, # Source port. }, ], "contacts": { # Output only. Map containing the point of contacts for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { “security”: {contact: {email: “person1@company.com”} contact: {email: “person2@company.com”} } "a_key": { # The details pertaining to specific contacts "contacts": [ # A list of contacts { # Representa a single contact's email address "email": "A String", # An email address e.g. "person123@company.com" }, ], }, }, "createTime": "A String", # The time at which the finding was created in Security Command Center. "description": "A String", # Contains more detail about the finding. "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. "exfiltration": { # Exfiltration represents a data exfiltration attempt of one or more sources to one or more targets. Sources represent the source of data that is exfiltrated, and Targets represents the destination the data was copied to. # Represents exfiltration associated with the Finding. "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], }, "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. "a_key": { # Representation of third party SIEM/SOAR fields within SCC. "assignees": [ # References primary/secondary etc assignees in the external system. "A String", ], "externalSystemUpdateTime": "A String", # The most recent time when the corresponding finding's ticket/tracker was updated in the external system. "externalUid": "A String", # Identifier that's used to track the given finding in the external system. "name": "A String", # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/123456/externalSystems/jira` "status": "A String", # Most recent status of the corresponding finding's ticket/tracker in the external system. }, }, "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL. "findingClass": "A String", # The class of the finding. "iamBindings": [ # Represents IAM bindings associated with the Finding. { # Represents a particular IAM binding, which captures a member's role addition, removal, or state. "action": "A String", # The action that was performed on a Binding. "member": "A String", # A single identity requesting access for a Cloud Platform resource, e.g. "foo@google.com". "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner". }, ], "indicator": { # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise "domains": [ # List of domains associated to the Finding. "A String", ], "ipAddresses": [ # List of ip addresses associated to the Finding. "A String", ], }, "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any. "A String", ], "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques. "A String", ], "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any. "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`). "A String", ], "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8". }, "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteInitiator": "A String", # First known as mute_annotation. Records additional information about the mute operation e.g. mute config that muted the finding, user who muted the finding, etc. Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted. "name": "A String", # The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" "nextSteps": "A String", # Next steps associate to the finding. "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}" "processes": [ # Represents operating system processes associated with the Finding. { # Represents an operating system process. "args": [ # Process arguments as JSON encoded strings. "A String", ], "argumentsTruncated": True or False, # True if `args` is incomplete. "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, "envVariables": [ # Process environment variables. { # EnvironmentVariable is a name-value pair to store environment variables for Process. "name": "A String", # Environment variable name as a JSON encoded string. "val": "A String", # Environment variable value as a JSON encoded string. }, ], "envVariablesTruncated": True or False, # True if `env_variables` is incomplete. "libraries": [ # File information for libraries loaded by the process. { # File information about the related binary/library used by an executable, or the script used by a script interpreter "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, ], "parentPid": "A String", # The parent process id. "pid": "A String", # The process id. "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter while `script` provides information about the script file provided to the interpreter. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, }, ], "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time. "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }, "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding. "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only. "a_key": "", }, "state": "A String", # The state of the finding. "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability specific fields like cve, cvss scores etc. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cve": { # CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. "baseScore": 3.14, # The base score is a function of the base metric scores. "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability. "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. }, "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527 "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 { # Additional Links "source": "A String", # Source of the reference e.g. NVD "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. }, ], "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE. }, }, }, "resource": { # Information related to the Google Cloud resource that is associated with this finding. # Output only. Resource that is associated with this finding. "displayName": "A String", # The human readable name of the resource. "folders": [ # Contains a Folder message for each folder in the assets ancestry. The first folder is the deepest nested folder, and the last folder is the folder directly under the Organization. { # Message that contains the resource name and display name of a folder resource. "resourceFolder": "A String", # Full resource name of this folder. See: https://cloud.google.com/apis/design/resource_names#full_resource_name "resourceFolderDisplayName": "A String", # The user defined display name for this folder. }, ], "name": "A String", # The full resource name of the resource. See: https://cloud.google.com/apis/design/resource_names#full_resource_name "parentDisplayName": "A String", # The human readable name of resource's parent. "parentName": "A String", # The full resource name of resource's parent. "projectDisplayName": "A String", # The project ID that the resource belongs to. "projectName": "A String", # The full resource name of project that the resource belongs to. "type": "A String", # The full resource type of the resource. }, "stateChange": "A String", # State change of the finding between the points in time. }, ], "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results. "readTime": "A String", # Time used for executing the list request. "totalSize": 42, # The total number of findings matching the query. }
list_next()
Retrieves the next page of results. Args: previous_request: The request for the previous page. (required) previous_response: The response from the request for the previous page. (required) Returns: A request object that you can call 'execute()' on to request the next page. Returns None if there are no more items in the collection.
patch(name, body=None, updateMask=None, x__xgafv=None)
Creates or updates a finding. The corresponding source must exist for a finding creation to succeed. Args: name: string, The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" (required) body: object, The request body. The object takes the form of: { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. "access": { # Represents an access event. # Access details associated to the Finding, such as more information on the caller, which method was accessed, from where, etc. "callerIp": "A String", # Caller's IP address, such as "1.1.1.1". "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from. "regionCode": "A String", # A CLDR. }, "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy". "principalEmail": "A String", # Associated email, such as "foo@google.com". "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com" "userAgentFamily": "A String", # What kind of user agent is associated, e.g. operating system shells, embedded or stand-alone applications, etc. }, "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding. "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION" "compliances": [ # Contains compliance information for security standards associated to the finding. { # Contains compliance information about a security standard indicating unmet recommendations. "ids": [ # Policies within the standard/benchmark e.g. A.12.4.1 "A String", ], "standard": "A String", # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp", etc. "version": "A String", # Version of the standard/benchmark e.g. 1.1 }, ], "connections": [ # Contains information about the IP connection associated with the finding. { # Contains information about the IP connection associated with the finding. "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected. "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected. "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17). "sourceIp": "A String", # Source IP address. "sourcePort": 42, # Source port. }, ], "contacts": { # Output only. Map containing the point of contacts for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { “security”: {contact: {email: “person1@company.com”} contact: {email: “person2@company.com”} } "a_key": { # The details pertaining to specific contacts "contacts": [ # A list of contacts { # Representa a single contact's email address "email": "A String", # An email address e.g. "person123@company.com" }, ], }, }, "createTime": "A String", # The time at which the finding was created in Security Command Center. "description": "A String", # Contains more detail about the finding. "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. "exfiltration": { # Exfiltration represents a data exfiltration attempt of one or more sources to one or more targets. Sources represent the source of data that is exfiltrated, and Targets represents the destination the data was copied to. # Represents exfiltration associated with the Finding. "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], }, "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. "a_key": { # Representation of third party SIEM/SOAR fields within SCC. "assignees": [ # References primary/secondary etc assignees in the external system. "A String", ], "externalSystemUpdateTime": "A String", # The most recent time when the corresponding finding's ticket/tracker was updated in the external system. "externalUid": "A String", # Identifier that's used to track the given finding in the external system. "name": "A String", # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/123456/externalSystems/jira` "status": "A String", # Most recent status of the corresponding finding's ticket/tracker in the external system. }, }, "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL. "findingClass": "A String", # The class of the finding. "iamBindings": [ # Represents IAM bindings associated with the Finding. { # Represents a particular IAM binding, which captures a member's role addition, removal, or state. "action": "A String", # The action that was performed on a Binding. "member": "A String", # A single identity requesting access for a Cloud Platform resource, e.g. "foo@google.com". "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner". }, ], "indicator": { # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise "domains": [ # List of domains associated to the Finding. "A String", ], "ipAddresses": [ # List of ip addresses associated to the Finding. "A String", ], }, "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any. "A String", ], "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques. "A String", ], "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any. "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`). "A String", ], "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8". }, "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteInitiator": "A String", # First known as mute_annotation. Records additional information about the mute operation e.g. mute config that muted the finding, user who muted the finding, etc. Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted. "name": "A String", # The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" "nextSteps": "A String", # Next steps associate to the finding. "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}" "processes": [ # Represents operating system processes associated with the Finding. { # Represents an operating system process. "args": [ # Process arguments as JSON encoded strings. "A String", ], "argumentsTruncated": True or False, # True if `args` is incomplete. "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, "envVariables": [ # Process environment variables. { # EnvironmentVariable is a name-value pair to store environment variables for Process. "name": "A String", # Environment variable name as a JSON encoded string. "val": "A String", # Environment variable value as a JSON encoded string. }, ], "envVariablesTruncated": True or False, # True if `env_variables` is incomplete. "libraries": [ # File information for libraries loaded by the process. { # File information about the related binary/library used by an executable, or the script used by a script interpreter "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, ], "parentPid": "A String", # The parent process id. "pid": "A String", # The process id. "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter while `script` provides information about the script file provided to the interpreter. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, }, ], "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time. "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }, "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding. "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only. "a_key": "", }, "state": "A String", # The state of the finding. "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability specific fields like cve, cvss scores etc. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cve": { # CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. "baseScore": 3.14, # The base score is a function of the base metric scores. "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability. "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. }, "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527 "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 { # Additional Links "source": "A String", # Source of the reference e.g. NVD "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. }, ], "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE. }, }, } updateMask: string, The FieldMask to use when updating the finding resource. This field should not be specified when creating a finding. When updating a finding, an empty mask is treated as updating all mutable fields and replacing source_properties. Individual source_properties can be added/updated by using "source_properties." in the field mask. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. "access": { # Represents an access event. # Access details associated to the Finding, such as more information on the caller, which method was accessed, from where, etc. "callerIp": "A String", # Caller's IP address, such as "1.1.1.1". "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from. "regionCode": "A String", # A CLDR. }, "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy". "principalEmail": "A String", # Associated email, such as "foo@google.com". "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com" "userAgentFamily": "A String", # What kind of user agent is associated, e.g. operating system shells, embedded or stand-alone applications, etc. }, "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding. "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION" "compliances": [ # Contains compliance information for security standards associated to the finding. { # Contains compliance information about a security standard indicating unmet recommendations. "ids": [ # Policies within the standard/benchmark e.g. A.12.4.1 "A String", ], "standard": "A String", # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp", etc. "version": "A String", # Version of the standard/benchmark e.g. 1.1 }, ], "connections": [ # Contains information about the IP connection associated with the finding. { # Contains information about the IP connection associated with the finding. "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected. "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected. "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17). "sourceIp": "A String", # Source IP address. "sourcePort": 42, # Source port. }, ], "contacts": { # Output only. Map containing the point of contacts for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { “security”: {contact: {email: “person1@company.com”} contact: {email: “person2@company.com”} } "a_key": { # The details pertaining to specific contacts "contacts": [ # A list of contacts { # Representa a single contact's email address "email": "A String", # An email address e.g. "person123@company.com" }, ], }, }, "createTime": "A String", # The time at which the finding was created in Security Command Center. "description": "A String", # Contains more detail about the finding. "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. "exfiltration": { # Exfiltration represents a data exfiltration attempt of one or more sources to one or more targets. Sources represent the source of data that is exfiltrated, and Targets represents the destination the data was copied to. # Represents exfiltration associated with the Finding. "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], }, "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. "a_key": { # Representation of third party SIEM/SOAR fields within SCC. "assignees": [ # References primary/secondary etc assignees in the external system. "A String", ], "externalSystemUpdateTime": "A String", # The most recent time when the corresponding finding's ticket/tracker was updated in the external system. "externalUid": "A String", # Identifier that's used to track the given finding in the external system. "name": "A String", # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/123456/externalSystems/jira` "status": "A String", # Most recent status of the corresponding finding's ticket/tracker in the external system. }, }, "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL. "findingClass": "A String", # The class of the finding. "iamBindings": [ # Represents IAM bindings associated with the Finding. { # Represents a particular IAM binding, which captures a member's role addition, removal, or state. "action": "A String", # The action that was performed on a Binding. "member": "A String", # A single identity requesting access for a Cloud Platform resource, e.g. "foo@google.com". "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner". }, ], "indicator": { # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise "domains": [ # List of domains associated to the Finding. "A String", ], "ipAddresses": [ # List of ip addresses associated to the Finding. "A String", ], }, "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any. "A String", ], "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques. "A String", ], "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any. "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`). "A String", ], "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8". }, "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteInitiator": "A String", # First known as mute_annotation. Records additional information about the mute operation e.g. mute config that muted the finding, user who muted the finding, etc. Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted. "name": "A String", # The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" "nextSteps": "A String", # Next steps associate to the finding. "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}" "processes": [ # Represents operating system processes associated with the Finding. { # Represents an operating system process. "args": [ # Process arguments as JSON encoded strings. "A String", ], "argumentsTruncated": True or False, # True if `args` is incomplete. "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, "envVariables": [ # Process environment variables. { # EnvironmentVariable is a name-value pair to store environment variables for Process. "name": "A String", # Environment variable name as a JSON encoded string. "val": "A String", # Environment variable value as a JSON encoded string. }, ], "envVariablesTruncated": True or False, # True if `env_variables` is incomplete. "libraries": [ # File information for libraries loaded by the process. { # File information about the related binary/library used by an executable, or the script used by a script interpreter "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, ], "parentPid": "A String", # The parent process id. "pid": "A String", # The process id. "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter while `script` provides information about the script file provided to the interpreter. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, }, ], "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time. "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }, "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding. "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only. "a_key": "", }, "state": "A String", # The state of the finding. "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability specific fields like cve, cvss scores etc. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cve": { # CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. "baseScore": 3.14, # The base score is a function of the base metric scores. "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability. "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. }, "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527 "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 { # Additional Links "source": "A String", # Source of the reference e.g. NVD "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. }, ], "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE. }, }, }
setMute(name, body=None, x__xgafv=None)
Updates the mute state of a finding. Args: name: string, Required. The relative resource name of the finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/finding/{finding_id}", "folders/{folder_id}/sources/{source_id}/finding/{finding_id}", "projects/{project_id}/sources/{source_id}/finding/{finding_id}". (required) body: object, The request body. The object takes the form of: { # Request message for updating a finding's mute status. "mute": "A String", # Required. The desired state of the Mute. } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. "access": { # Represents an access event. # Access details associated to the Finding, such as more information on the caller, which method was accessed, from where, etc. "callerIp": "A String", # Caller's IP address, such as "1.1.1.1". "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from. "regionCode": "A String", # A CLDR. }, "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy". "principalEmail": "A String", # Associated email, such as "foo@google.com". "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com" "userAgentFamily": "A String", # What kind of user agent is associated, e.g. operating system shells, embedded or stand-alone applications, etc. }, "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding. "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION" "compliances": [ # Contains compliance information for security standards associated to the finding. { # Contains compliance information about a security standard indicating unmet recommendations. "ids": [ # Policies within the standard/benchmark e.g. A.12.4.1 "A String", ], "standard": "A String", # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp", etc. "version": "A String", # Version of the standard/benchmark e.g. 1.1 }, ], "connections": [ # Contains information about the IP connection associated with the finding. { # Contains information about the IP connection associated with the finding. "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected. "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected. "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17). "sourceIp": "A String", # Source IP address. "sourcePort": 42, # Source port. }, ], "contacts": { # Output only. Map containing the point of contacts for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { “security”: {contact: {email: “person1@company.com”} contact: {email: “person2@company.com”} } "a_key": { # The details pertaining to specific contacts "contacts": [ # A list of contacts { # Representa a single contact's email address "email": "A String", # An email address e.g. "person123@company.com" }, ], }, }, "createTime": "A String", # The time at which the finding was created in Security Command Center. "description": "A String", # Contains more detail about the finding. "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. "exfiltration": { # Exfiltration represents a data exfiltration attempt of one or more sources to one or more targets. Sources represent the source of data that is exfiltrated, and Targets represents the destination the data was copied to. # Represents exfiltration associated with the Finding. "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], }, "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. "a_key": { # Representation of third party SIEM/SOAR fields within SCC. "assignees": [ # References primary/secondary etc assignees in the external system. "A String", ], "externalSystemUpdateTime": "A String", # The most recent time when the corresponding finding's ticket/tracker was updated in the external system. "externalUid": "A String", # Identifier that's used to track the given finding in the external system. "name": "A String", # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/123456/externalSystems/jira` "status": "A String", # Most recent status of the corresponding finding's ticket/tracker in the external system. }, }, "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL. "findingClass": "A String", # The class of the finding. "iamBindings": [ # Represents IAM bindings associated with the Finding. { # Represents a particular IAM binding, which captures a member's role addition, removal, or state. "action": "A String", # The action that was performed on a Binding. "member": "A String", # A single identity requesting access for a Cloud Platform resource, e.g. "foo@google.com". "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner". }, ], "indicator": { # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise "domains": [ # List of domains associated to the Finding. "A String", ], "ipAddresses": [ # List of ip addresses associated to the Finding. "A String", ], }, "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any. "A String", ], "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques. "A String", ], "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any. "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`). "A String", ], "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8". }, "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteInitiator": "A String", # First known as mute_annotation. Records additional information about the mute operation e.g. mute config that muted the finding, user who muted the finding, etc. Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted. "name": "A String", # The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" "nextSteps": "A String", # Next steps associate to the finding. "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}" "processes": [ # Represents operating system processes associated with the Finding. { # Represents an operating system process. "args": [ # Process arguments as JSON encoded strings. "A String", ], "argumentsTruncated": True or False, # True if `args` is incomplete. "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, "envVariables": [ # Process environment variables. { # EnvironmentVariable is a name-value pair to store environment variables for Process. "name": "A String", # Environment variable name as a JSON encoded string. "val": "A String", # Environment variable value as a JSON encoded string. }, ], "envVariablesTruncated": True or False, # True if `env_variables` is incomplete. "libraries": [ # File information for libraries loaded by the process. { # File information about the related binary/library used by an executable, or the script used by a script interpreter "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, ], "parentPid": "A String", # The parent process id. "pid": "A String", # The process id. "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter while `script` provides information about the script file provided to the interpreter. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, }, ], "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time. "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }, "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding. "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only. "a_key": "", }, "state": "A String", # The state of the finding. "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability specific fields like cve, cvss scores etc. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cve": { # CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. "baseScore": 3.14, # The base score is a function of the base metric scores. "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability. "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. }, "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527 "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 { # Additional Links "source": "A String", # Source of the reference e.g. NVD "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. }, ], "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE. }, }, }
setState(name, body=None, x__xgafv=None)
Updates the state of a finding. Args: name: string, Required. The relative resource name of the finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/finding/{finding_id}". (required) body: object, The request body. The object takes the form of: { # Request message for updating a finding's state. "startTime": "A String", # Required. The time at which the updated state takes effect. "state": "A String", # Required. The desired State of the finding. } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Security Command Center finding. A finding is a record of assessment data like security, risk, health, or privacy, that is ingested into Security Command Center for presentation, notification, analysis, policy testing, and enforcement. For example, a cross-site scripting (XSS) vulnerability in an App Engine application is a finding. "access": { # Represents an access event. # Access details associated to the Finding, such as more information on the caller, which method was accessed, from where, etc. "callerIp": "A String", # Caller's IP address, such as "1.1.1.1". "callerIpGeo": { # Represents a geographical location for a given access. # The caller IP's geolocation, which identifies where the call came from. "regionCode": "A String", # A CLDR. }, "methodName": "A String", # The method that the service account called, e.g. "SetIamPolicy". "principalEmail": "A String", # Associated email, such as "foo@google.com". "serviceName": "A String", # This is the API service that the service account made a call to, e.g. "iam.googleapis.com" "userAgentFamily": "A String", # What kind of user agent is associated, e.g. operating system shells, embedded or stand-alone applications, etc. }, "canonicalName": "A String", # The canonical name of the finding. It's either "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}", "folders/{folder_id}/sources/{source_id}/findings/{finding_id}" or "projects/{project_number}/sources/{source_id}/findings/{finding_id}", depending on the closest CRM ancestor of the resource associated with the finding. "category": "A String", # The additional taxonomy group within findings from a given source. This field is immutable after creation time. Example: "XSS_FLASH_INJECTION" "compliances": [ # Contains compliance information for security standards associated to the finding. { # Contains compliance information about a security standard indicating unmet recommendations. "ids": [ # Policies within the standard/benchmark e.g. A.12.4.1 "A String", ], "standard": "A String", # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp", etc. "version": "A String", # Version of the standard/benchmark e.g. 1.1 }, ], "connections": [ # Contains information about the IP connection associated with the finding. { # Contains information about the IP connection associated with the finding. "destinationIp": "A String", # Destination IP address. Not present for sockets that are listening and not connected. "destinationPort": 42, # Destination port. Not present for sockets that are listening and not connected. "protocol": "A String", # IANA Internet Protocol Number such as TCP(6) and UDP(17). "sourceIp": "A String", # Source IP address. "sourcePort": 42, # Source port. }, ], "contacts": { # Output only. Map containing the point of contacts for the given finding. The key represents the type of contact, while the value contains a list of all the contacts that pertain. Please refer to: https://cloud.google.com/resource-manager/docs/managing-notification-contacts#notification-categories { “security”: {contact: {email: “person1@company.com”} contact: {email: “person2@company.com”} } "a_key": { # The details pertaining to specific contacts "contacts": [ # A list of contacts { # Representa a single contact's email address "email": "A String", # An email address e.g. "person123@company.com" }, ], }, }, "createTime": "A String", # The time at which the finding was created in Security Command Center. "description": "A String", # Contains more detail about the finding. "eventTime": "A String", # The time the finding was first detected. If an existing finding is updated, then this is the time the update occurred. For example, if the finding represents an open firewall, this property captures the time the detector believes the firewall became open. The accuracy is determined by the detector. If the finding is later resolved, then this time reflects when the finding was resolved. This must not be set to a value greater than the current timestamp. "exfiltration": { # Exfiltration represents a data exfiltration attempt of one or more sources to one or more targets. Sources represent the source of data that is exfiltrated, and Targets represents the destination the data was copied to. # Represents exfiltration associated with the Finding. "sources": [ # If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], "targets": [ # If there are multiple targets, each target would get a complete copy of the "joined" source data. { # Resource that has been exfiltrated or exfiltrated_to. "components": [ # Subcomponents of the asset that is exfiltrated - these could be URIs used during exfiltration, table names, databases, filenames, etc. For example, multiple tables may be exfiltrated from the same CloudSQL instance, or multiple files from the same Cloud Storage bucket. "A String", ], "name": "A String", # Resource's URI (https://google.aip.dev/122#full-resource-names) }, ], }, "externalSystems": { # Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. "a_key": { # Representation of third party SIEM/SOAR fields within SCC. "assignees": [ # References primary/secondary etc assignees in the external system. "A String", ], "externalSystemUpdateTime": "A String", # The most recent time when the corresponding finding's ticket/tracker was updated in the external system. "externalUid": "A String", # Identifier that's used to track the given finding in the external system. "name": "A String", # External System Name e.g. jira, demisto, etc. e.g.: `organizations/1234/sources/5678/findings/123456/externalSystems/jira` `folders/1234/sources/5678/findings/123456/externalSystems/jira` `projects/1234/sources/5678/findings/123456/externalSystems/jira` "status": "A String", # Most recent status of the corresponding finding's ticket/tracker in the external system. }, }, "externalUri": "A String", # The URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found. This field is guaranteed to be either empty or a well formed URL. "findingClass": "A String", # The class of the finding. "iamBindings": [ # Represents IAM bindings associated with the Finding. { # Represents a particular IAM binding, which captures a member's role addition, removal, or state. "action": "A String", # The action that was performed on a Binding. "member": "A String", # A single identity requesting access for a Cloud Platform resource, e.g. "foo@google.com". "role": "A String", # Role that is assigned to "members". For example, "roles/viewer", "roles/editor", or "roles/owner". }, ], "indicator": { # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise # Represents what's commonly known as an Indicator of compromise (IoC) in computer forensics. This is an artifact observed on a network or in an operating system that, with high confidence, indicates a computer intrusion. Reference: https://en.wikipedia.org/wiki/Indicator_of_compromise "domains": [ # List of domains associated to the Finding. "A String", ], "ipAddresses": [ # List of ip addresses associated to the Finding. "A String", ], }, "mitreAttack": { # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org # MITRE ATT&CK tactics and techniques related to this finding. See: https://attack.mitre.org "additionalTactics": [ # Additional MITRE ATT&CK tactics related to this finding, if any. "A String", ], "additionalTechniques": [ # Additional MITRE ATT&CK techniques related to this finding, if any, along with any of their respective parent techniques. "A String", ], "primaryTactic": "A String", # The MITRE ATT&CK tactic most closely represented by this finding, if any. "primaryTechniques": [ # The MITRE ATT&CK technique most closely represented by this finding, if any. primary_techniques is a repeated field because there are multiple levels of MITRE ATT&CK techniques. If the technique most closely represented by this finding is a sub-technique (e.g. `SCANNING_IP_BLOCKS`), both the sub-technique and its parent technique(s) will be listed (e.g. `SCANNING_IP_BLOCKS`, `ACTIVE_SCANNING`). "A String", ], "version": "A String", # The MITRE ATT&CK version referenced by the above fields. E.g. "8". }, "mute": "A String", # Indicates the mute state of a finding (either muted, unmuted or undefined). Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteInitiator": "A String", # First known as mute_annotation. Records additional information about the mute operation e.g. mute config that muted the finding, user who muted the finding, etc. Unlike other attributes of a finding, a finding provider shouldn't set the value of mute. "muteUpdateTime": "A String", # Output only. The most recent time this finding was muted or unmuted. "name": "A String", # The relative resource name of this finding. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}" "nextSteps": "A String", # Next steps associate to the finding. "parent": "A String", # The relative resource name of the source the finding belongs to. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name This field is immutable after creation time. For example: "organizations/{organization_id}/sources/{source_id}" "processes": [ # Represents operating system processes associated with the Finding. { # Represents an operating system process. "args": [ # Process arguments as JSON encoded strings. "A String", ], "argumentsTruncated": True or False, # True if `args` is incomplete. "binary": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # File information for the process executable. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, "envVariables": [ # Process environment variables. { # EnvironmentVariable is a name-value pair to store environment variables for Process. "name": "A String", # Environment variable name as a JSON encoded string. "val": "A String", # Environment variable value as a JSON encoded string. }, ], "envVariablesTruncated": True or False, # True if `env_variables` is incomplete. "libraries": [ # File information for libraries loaded by the process. { # File information about the related binary/library used by an executable, or the script used by a script interpreter "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, ], "parentPid": "A String", # The parent process id. "pid": "A String", # The process id. "script": { # File information about the related binary/library used by an executable, or the script used by a script interpreter # When the process represents the invocation of a script, `binary` provides information about the interpreter while `script` provides information about the script file provided to the interpreter. "contents": "A String", # Prefix of the file contents as a JSON encoded string. (Currently only populated for Malicious Script Executed findings.) "hashedSize": "A String", # The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file. "partiallyHashed": True or False, # True when the hash covers only a prefix of the file. "path": "A String", # Absolute path of the file as a JSON encoded string. "sha256": "A String", # SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file. "size": "A String", # Size of the file in bytes. }, }, ], "resourceName": "A String", # For findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for. See: https://cloud.google.com/apis/design/resource_names#full_resource_name When the finding is for a non-Google Cloud resource, the resourceName can be a customer or partner defined string. This field is immutable after creation time. "securityMarks": { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. # Output only. User specified security marks. These marks are entirely managed by the user and come from the SecurityMarks resource that belongs to the finding. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }, "severity": "A String", # The severity of the finding. This field is managed by the source that writes the finding. "sourceProperties": { # Source specific properties. These properties are managed by the source that writes the finding. The key names in the source_properties map must be between 1 and 255 characters, and must start with a letter and contain alphanumeric characters or underscores only. "a_key": "", }, "state": "A String", # The state of the finding. "vulnerability": { # Refers to common vulnerability fields e.g. cve, cvss, cwe etc. # Represents vulnerability specific fields like cve, cvss scores etc. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cve": { # CVE stands for Common Vulnerabilities and Exposures. More information: https://cve.mitre.org # CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) "cvssv3": { # Common Vulnerability Scoring System version 3. # Describe Common Vulnerability Scoring System specified at https://www.first.org/cvss/v3.1/specification-document "attackComplexity": "A String", # This metric describes the conditions beyond the attacker's control that must exist in order to exploit the vulnerability. "attackVector": "A String", # Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. This metric reflects the context by which vulnerability exploitation is possible. "availabilityImpact": "A String", # This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. "baseScore": 3.14, # The base score is a function of the base metric scores. "confidentialityImpact": "A String", # This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. "integrityImpact": "A String", # This metric measures the impact to integrity of a successfully exploited vulnerability. "privilegesRequired": "A String", # This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. "scope": "A String", # The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. "userInteraction": "A String", # This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. }, "id": "A String", # The unique identifier for the vulnerability. e.g. CVE-2021-34527 "references": [ # Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527 { # Additional Links "source": "A String", # Source of the reference e.g. NVD "uri": "A String", # Uri for the mentioned source e.g. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34527. }, ], "upstreamFixAvailable": True or False, # Whether upstream fix is available for the CVE. }, }, }
updateSecurityMarks(name, body=None, startTime=None, updateMask=None, x__xgafv=None)
Updates security marks. Args: name: string, The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". (required) body: object, The request body. The object takes the form of: { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". } startTime: string, The time at which the updated SecurityMarks take effect. If not set uses current server time. Updates will be applied to the SecurityMarks that are active immediately preceding this time. Must be earlier or equal to the server time. updateMask: string, The FieldMask to use when updating the security marks resource. The field mask must not contain duplicate fields. If empty or set to "marks", all marks will be replaced. Individual marks can be updated using "marks.". x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # User specified security marks that are attached to the parent Security Command Center resource. Security marks are scoped within a Security Command Center organization -- they can be modified and viewed by all users who have proper permissions on the organization. "canonicalName": "A String", # The canonical name of the marks. Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "folders/{folder_id}/assets/{asset_id}/securityMarks" "projects/{project_number}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks" "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks" "marks": { # Mutable user specified security marks belonging to the parent resource. Constraints are as follows: * Keys and values are treated as case insensitive * Keys must be between 1 - 256 characters (inclusive) * Keys must be letters, numbers, underscores, or dashes * Values have leading and trailing whitespace trimmed, remaining characters must be between 1 - 4096 characters (inclusive) "a_key": "A String", }, "name": "A String", # The relative resource name of the SecurityMarks. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Examples: "organizations/{organization_id}/assets/{asset_id}/securityMarks" "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks". }