Skip to main content

Google Cloud SCC

This Integration is part of the Google Cloud SCC Pack.#

Supported versions

Supported Cortex XSOAR versions: 6.0.0 and later.

Security Command Center is a security and risk management platform for Google Cloud. Security Command Center enables you to understand your security and data attack surface by providing asset inventory and discovery, identifying vulnerabilities and threats, and helping you mitigate and remediate risks across an organization. This integration helps you to perform tasks related to findings and assets. This integration was integrated and tested with version v1 of GoogleCloudSCC.

Detailed Description#

This integration uses Pub/Sub to fetch the incidents. This integration supports multiple organizations. In order to fetch data from multiple organizations, configure multiple instances for different organizations. To set up the initial parameters of Google SCC in Cortex XSOAR, please follow the below instructions. For more information, refer to this guide by Google SCC for configuring Cortex XSOAR Integration.

Scope#

We need to provide the below mentioned OAuth scope to execute the commands: https://www.googleapis.com/auth/cloud-platform.

Create a Service Account#

  1. Go to the Google documentation and follow the procedure mentioned in the Creating a Service Account section. After you create a service account, a Service Account Private Key file is downloaded. You will need this file when configuring an instance of the integration.
  2. Grant the Security Command Center admin permission to the Service Account to enable the Service Account to perform certain Google Cloud API commands.
  3. For additional information on the types of permissions that can be granted to Service Account, see the Permissions section below.
  4. In Cortex XSOAR, configure an instance of the Google Cloud Security Command Center integration. For the Service Account Private Key parameter, add the Service Account Private Key file contents (JSON).

Permissions#

To set up Security Command Center or change the configuration of your organization, you need both of the following roles at the organization level:

  • Organization Admin (roles/resourcemanager.organizationAdmin)
  • Security Center Admin (roles/securitycenter.admin)

If a user doesn't require edit permissions, consider granting them viewer roles. To view all assets and findings in Security Command Center, users need the Security Center Admin Viewer (roles/securitycenter.adminViewer) role at the organization level. Users who need to edit the findings need the Security Center Admin (roles/securitycenter.admin) role at the organization level.

To restrict access to individual folders and projects, don't grant all roles at the organization level. Instead, grant the following roles at the folder or project level:

  • Security Center Assets Viewer (roles/securitycenter.assetsViewer)
  • Security Center Findings Viewer (roles/securitycenter.findingsViewer)

Refer to Google Documentation for further information on granting roles to persons and applications, as well as specific permissions.

Steps to configure workload identity federation:#

  1. Follow the steps to construct a workload identity pool and a workload identity pool provider to leverage workload identity federation.

  2. Navigate to the 'Granting external identities permission to impersonate a service account' section.

  3. Follow the step-1 mentioned in the Google documentation to create a credential file for external identities. The contents of the downloaded file should be given into the 'Service Account Configuration' parameter.

    Prerequisite for accessing Google services from AWS:#

    1. Create an IAM AWS Role.
    2. Attach the IAM role to EC2 instance.

    Prerequisite for accessing Google services from Azure:#

    1. Create an Azure AD application and service principal.
    2. Set an Application ID URI for the application.
    3. Create a managed identity. Note the Object ID of the managed identity. You need it later when you configure impersonation.
    4. Assign the managed identity to a virtual machine or another resource that runs your application.

Getting your Organization ID#

The Organization ID is a unique identifier for an organization and is automatically created when your organization resource is created.

  1. To get the Organization ID for your organization, follow the steps mentioned in Google documentation provided here.
  2. To get your Organization ID using the Cloud Console, Go to the Cloud Console and at the top of the page, click the project selection drop-down list and from the Select window that appears, click the organization drop-down list and select the organization you want.
  3. On the right side, click More, then click Settings. The Settings page displays your organization's ID.

Getting your Project ID#

When we create a new project or for an existing project, Project ID generates for that project. To get the Project ID and the Project number, you can follow the same instructions provided above for getting Organization ID. For more details, You can follow the instructions provided in Google documentation here.

Getting Subscription ID from Pub/Sub#

To fetch incidents using Google Pub/Sub, we need to configure Pub/Sub first. This Google documentation will help setting up Pub/Sub prerequisites for creating a subscription.

  1. To add a subscription, we need to have a topic first. So after you create a topic, go to the menu for the topic and click on Create subscription and it will take you to the Add new subscription page.
  2. Type a name for the subscription and leave the delivery type as Pull.
  3. Set the Message retention duration to retain unacknowledged messages for a specified duration. If the checkbox of Retain acknowledged messages is enabled, acknowledged messages are retained for the same duration. It is recommended to keep maximum possible value for Message retention so messages can be retained inside subscription until they are pulled.
  4. Set the Acknowledgement deadline for pub/sub to wait for the subscriber to acknowledge receipt before resending the message. Minimum recommended value for Acknowledgement deadline is 300 seconds for this integration.
  5. Apply the other settings as required and click on the CREATE button.
  6. Once the subscription is created, it will take you to the Subscriptions page, where you can see the Subscription ID for the subscription you just created.

Setting up finding notifications#

  • Enable the Security Command Center API notifications feature. Notifications send information to a Pub/Sub topic to provide findings updates and new findings within minutes. Set up the notifications as per Google Documentation available and get SCC data in Cortex XSOAR.
  • The basic parameters required for setting up pub/sub notifications are ORGANIZATION_ID, PUBSUB_TOPIC, DESCRIPTION and FILTER.
  • Before creating a pub/sub notification, make sure to check the filter parameters using google-cloud-scc-finding-list command provided in this integration. The total size applicable for the filter provided can be checked using Total retrieved findings available inside the command results section. A maximum of 200 findings per minute is recommended.

Configure GoogleCloudSCC on Cortex XSOAR#

  1. Navigate to Settings > Integrations > Servers & Services.

  2. Search for GoogleCloudSCC.

  3. Click Add instance to create and configure a new integration instance.

    ParameterDescriptionRequired
    Service Account ConfigurationIf the application runs on cloud provider (AWS, Azure) use workload identity federation configuration setup file otherwise use service account credential file.True
    Organization IDOrganization ID defines from which organization incidents need to be fetched.True
    Fetch incidentsEnables fetch incident.False
    Project IDID of the project to use for fetching incidents. If ID is not provided it will be taken from the provided service account JSON.
    Only required if the XSOAR instance is running on AWS or Azure cloud solutions.
    False
    Subscription IDID of subscription from which to fetch incidents.False
    Max IncidentsThe maximum number of incidents to fetch every time.False
    Incident typeType of incident.False
    Trust any certificate (not secure)Enables to trust on all certificates.False
    Use system proxy settingsEnables system proxy settings.False
  4. Click Test to validate configuration parameter.

Commands#

You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.

google-cloud-scc-asset-list#


Lists an organization's assets.

Base Command#

google-cloud-scc-asset-list

Input#

Argument NameDescriptionRequired
filterThe filter 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.Examples include:
1) name
2) securityCenterProperties.resource_name
3) resourceProperties.name
4) securityMarks.marks.marka

The supported operators are:
1) = for all value types.
2) >, <, >=, <= for integer values.
3) :, meaning substring matching, for strings.

The following field and operator combinations are supported:
1) name: =
2) updateTime: =, >, <, >=, <

Example: resourceProperties.displayName="test.com" OR resourceProperties.projectNumber="455757558851"
Use a negated partial match on the empty string to filter based on a property not existing: "-resourceProperties.project=45".
Optional
orderByThis parameter defines what fields and order to use for sorting.
The string value should be a comma-separated list of fields.
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,resourceProperties.owner".
The following fields are supported for orderBy:
name, updateTime, resourceProperties, securityMarks.marks, securityCenterProperties.resource_name,
securityCenterProperties.resource_display_name, securityCenterProperties.resource_parent, securityCenterProperties.resource_parent_display_name, securityCenterProperties.resource_project,
securityCenterProperties.resource_project_display_name, securityCenterProperties.resource_type.
Optional
readTimeTime is used as a reference point when filtering assets. The filter is limited to assets existing at the supplied time and their values are those at that specific time. If not provided, it will take current time. Format: YYYY-MM-ddTHH:mm:ss.sssZ
Example: 2020-07-22T07:10:02.782Z.
Optional
compareDurationWhen compareDuration is set, the "stateChange" attribute is updated to indicate whether the asset was added, removed, or remained present during the compareDuration period of time that precedes the readTime.
Possible "stateChange" values when compareDuration is specified:
1) ADDED
2) REMOVED
3) ACTIVE

If compareDuration is not specified, then the only possible stateChange is "UNUSED",
Example value: 3.5s.
Optional
fieldMaskA field mask is used to specify the specific response fields to be listed in the response.
An empty field mask will list all fields. Comma-separated values are supported in this parameter.
Example: "asset.resourceProperties.owner,asset.securityCenterProperties.resourceName".
Optional
pageTokenThe value returned by the last response of the google-cloud-scc-asset-list command indicates that this is a continuation of prior assets.list call, and that the system should return the next page of data.Optional
pageSizeThe maximum number of results to return in a single response. The minimum value is 1 and maximum value is 1000. Default is 10.Optional
resourceTypeThis parameter is used to filter assets by resource types by providing a single value or a comma-separated value of resource types. If any resource type is not provided, by default all resource types will be considered for listing assets.The value provided inside resourceType would be applied in the query as a filter parameter for filtering results. Example: cloudfunction, bucket.Optional
projectThis parameter is used to filter assets by the project by providing a single value or a comma-separated value of projects. If any project is not provided, by default all projects will be considered for listing assets. Value provided inside the project would be applied in the query as a filter parameter for filtering results. Example: Automeet, Backstory.Optional
activeAssetsOnlyThis parameter is used to filter assets by their lifeCycleState value by selecting an option from the dropdown. If 'True' is selected the assets having lifeCycleState as 'ACTIVE' will be fetched and if 'False' or no option selected from the dropdown, then assets with all states will be considered for listing assets. The value selected in activeAssetsOnly would be applied in the query as a filter parameter for filtering results. Possible values are: True, False. Default is False.Optional

Context Output#

PathTypeDescription
GoogleCloudSCC.Asset.nameStringThe relative resource name of the asset.
GoogleCloudSCC.Asset.securityCenterProperties.resourceNameStringThe full resource name of the Google Cloud resource this asset represents.
GoogleCloudSCC.Asset.securityCenterProperties.resourceTypeStringThe type of the Google Cloud resource.
GoogleCloudSCC.Asset.securityCenterProperties.resourceParentStringThe full resource name of the immediate parent of the resource.
GoogleCloudSCC.Asset.securityCenterProperties.resourceProjectStringThe full resource name of the project the resource belongs to.
GoogleCloudSCC.Asset.securityCenterProperties.resourceOwnersStringOwners of the Google Cloud resource.
GoogleCloudSCC.Asset.securityCenterProperties.resourceDisplayNameStringThe user defined display name for this resource.
GoogleCloudSCC.Asset.securityCenterProperties.resourceParentDisplayNameStringThe user defined display name for the parent of this resource.
GoogleCloudSCC.Asset.securityCenterProperties.resourceProjectDisplayNameStringThe user defined display name for the project of this resource.
GoogleCloudSCC.Asset.securityCenterProperties.folders.resourceFolderStringFull resource name of this folder.
GoogleCloudSCC.Asset.securityCenterProperties.folders.resourceFolderDisplayNameStringThe user defined display name for this folder.
GoogleCloudSCC.Asset.resourcePropertiesUnknownResource managed properties. These properties are managed and defined by the Google Cloud resource and cannot be modified by the user. Properties are varying from assets to assets.
GoogleCloudSCC.Asset.securityMarks.nameStringThe relative resource name of the SecurityMarks.
GoogleCloudSCC.Asset.securityMarks.marksStringMutable user specified security marks belonging to the parent resource.
GoogleCloudSCC.Asset.createTimeStringThe time at which the asset was created in the Security Command Center.
GoogleCloudSCC.Asset.updateTimeStringThe time at which the asset was last updated, added, or deleted in Security Command Center.
GoogleCloudSCC.Asset.iamPolicy.policyBlobStringCloud IAM Policy information associated with the Google Cloud resource described by the Security Command Center asset.
GoogleCloudSCC.Asset.stateChangeStringState change of the asset between the points in time.
GoogleCloudSCC.Asset.readTimeStringTime used for executing the list request.
GoogleCloudSCC.Token.nextPageTokenStringToken to retrieve the next page of results, or empty if there are no more results.
GoogleCloudSCC.Token.nameStringName of the command.

Command Example#

!google-cloud-scc-asset-list pageSize="3"

Context Example#

{
"GoogleCloudSCC": {
"Asset": [
{
"createTime": "2020-07-22T07:10:02.782Z",
"iamPolicy": {
"policyBlob": "{\"bindings\":[{\"role\":\"roles/billing.admin\",\"members\":[\"group:gcp-billing-admins@test.com\",\"user:harsh.shah@test.com\",\"user:malhar@test.com\",\"user:shail.rabdu@test.com\"]},{\"role\":\"roles/billing.creator\",\"members\":[\"domain:test.com\",\"group:gcp-billing-admins@test.com\",\"user:harsh.shah@test.com\",\"user:malhar@test.com\",\"user:shail.rabdu@test.com\"]},{\"role\":\"roles/billing.user\",\"members\":[\"group:gcp-organization-admins@test.com\"]},{\"role\":\"roles/browser\",\"members\":[\"user:jignesh.patel@test.com\"]},{\"role\":\"roles/cloudfunctions.serviceAgent\",\"members\":[\"serviceAccount:service-org-595779152576@security-center-api.iam.gserviceaccount.com\"]},{\"role\":\"roles/cloudsql.admin\",\"members\":[\"serviceAccount:service-org-595779152576@security-center-api.iam.gserviceaccount.com\"]},{\"role\":\"roles/cloudsupport.admin\",\"members\":[\"group:gcp-organization-admins@test.com\"]},{\"role\":\"roles/compute.admin\",\"members\":[\"user:jignesh.patel@test.com\"]},{\"role\":\"roles/iam.organizationRoleAdmin\",\"members\":[\"group:gcp-organization-admins@test.com\"]},{\"role\":\"roles/iam.serviceAccountAdmin\",\"members\":[\"user:jignesh.patel@test.com\"]},{\"role\":\"roles/orgpolicy.policyAdmin\",\"members\":[\"group:gcp-organization-admins@test.com\"]},{\"role\":\"roles/owner\",\"members\":[\"user:harsh.shah@test.com\"]},{\"role\":\"roles/pubsub.editor\",\"members\":[\"serviceAccount:scc-test-sa-0908@gscc-demo-0908.iam.gserviceaccount.com\"]},{\"role\":\"roles/resourcemanager.folderAdmin\",\"members\":[\"group:gcp-organization-admins@test.com\"]},{\"role\":\"roles/resourcemanager.organizationAdmin\",\"members\":[\"group:gcp-organization-admins@test.com\",\"user:harsh.shah@test.com\",\"user:it.systems@test.com\",\"user:malhar@test.com\",\"user:shivang.patel@test.com\"]},{\"role\":\"roles/resourcemanager.organizationViewer\",\"members\":[\"group:gcp-billing-admins@test.com\",\"user:shivang.patel@test.com\"]},{\"role\":\"roles/resourcemanager.projectCreator\",\"members\":[\"group:gcp-organization-admins@test.com\",\"user:it.systems@test.com\"]},{\"role\":\"roles/securitycenter.admin\",\"members\":[\"domain:test.com\",\"group:gcp-organization-admins@test.com\",\"serviceAccount:scc-test-sa-0908@gscc-demo-0908.iam.gserviceaccount.com\",\"deleted:serviceAccount:scc-test-sa@gscc-demo.iam.gserviceaccount.com?uid\\u003d111170257821042589392\",\"serviceAccount:scc-test@calcium-vial-280707.iam.gserviceaccount.com\",\"user:jignesh.patel@test.com\",\"user:namrata.haridwari@test.com\",\"user:shivang.patel@test.com\"]},{\"role\":\"roles/securitycenter.serviceAgent\",\"members\":[\"serviceAccount:service-org-595779152576@security-center-api.iam.gserviceaccount.com\"]},{\"role\":\"roles/serviceusage.serviceUsageAdmin\",\"members\":[\"serviceAccount:service-org-595779152576@security-center-api.iam.gserviceaccount.com\"]},{\"role\":\"roles/viewer\",\"members\":[\"serviceAccount:scc-test-sa-0908@gscc-demo-0908.iam.gserviceaccount.com\",\"deleted:serviceAccount:scc-test-sa@gscc-demo.iam.gserviceaccount.com?uid\\u003d111170257821042589392\"]}]}"
},
"name": "organizations/595779152576/assets/7180457033309348544",
"readTime": "2021-02-11T13:51:59.620Z",
"resourceProperties": {
"creationTime": "2017-01-23T08:50:47.212Z",
"displayName": "test.com",
"lifecycleState": "ACTIVE",
"name": "organizations/595779152576",
"organizationId": "595779152576",
"owner": "{\"directoryCustomerId\":\"C02umwv6u\"}"
},
"securityCenterProperties": {
"resourceDisplayName": "test.com",
"resourceName": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"resourceType": "google.cloud.resourcemanager.Organization"
},
"securityMarks": {
"marks": {
"compressed": "SSH",
"LastSeen": "Yesterday"
},
"name": "organizations/595779152576/assets/7180457033309348544/securityMarks"
},
"updateTime": "2021-02-06T11:01:26.317Z"
},
{
"createTime": "2020-12-16T10:05:58.742Z",
"iamPolicy": {
"policyBlob": "{\"bindings\":[{\"role\":\"roles/owner\",\"members\":[\"user:milankumar.thummar@test.com\"]}]}"
},
"name": "organizations/595779152576/assets/2994068353411300094",
"readTime": "2021-02-11T13:51:59.620Z",
"resourceProperties": {
"createTime": "2020-12-16T10:05:54.696Z",
"lifecycleState": "ACTIVE",
"name": "Calender",
"parent": "{\"id\":\"595779152576\",\"type\":\"organization\"}",
"projectId": "calender-1608113154215",
"projectNumber": "455757558851"
},
"securityCenterProperties": {
"resourceDisplayName": "calender-1608113154215",
"resourceName": "//cloudresourcemanager.googleapis.com/projects/455757558851",
"resourceOwners": [
"user:milankumar.thummar@test.com"
],
"resourceParent": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"resourceParentDisplayName": "test.com",
"resourceProject": "//cloudresourcemanager.googleapis.com/projects/455757558851",
"resourceProjectDisplayName": "calender-1608113154215",
"resourceType": "google.cloud.resourcemanager.Project"
},
"securityMarks": {
"marks": {
"compressed": "SSH",
"LastSeen": "Yesterday"
},
"name": "organizations/595779152576/assets/2994068353411300094/securityMarks"
},
"updateTime": "2020-12-16T10:06:00.134Z"
},
{
"createTime": "2019-09-24T02:10:50.766Z",
"iamPolicy": {
"policyBlob": "{\"bindings\":[{\"role\":\"roles/owner\",\"members\":[\"user:heena.vaghela@test.com\"]}]}"
},
"name": "organizations/595779152576/assets/14656821127596596302",
"readTime": "2021-02-11T13:51:59.620Z",
"resourceProperties": {
"createTime": "2019-08-13T06:58:21.574Z",
"lifecycleState": "ACTIVE",
"name": "Test Proj",
"parent": "{\"id\":\"595779152576\",\"type\":\"organization\"}",
"projectId": "test-proj-249706",
"projectNumber": "265894444436"
},
"securityCenterProperties": {
"resourceDisplayName": "test-proj-249706",
"resourceName": "//cloudresourcemanager.googleapis.com/projects/265894444436",
"resourceOwners": [
"user:heena.vaghela@test.com"
],
"resourceParent": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"resourceParentDisplayName": "test.com",
"resourceProject": "//cloudresourcemanager.googleapis.com/projects/265894444436",
"resourceProjectDisplayName": "test-proj-249706",
"resourceType": "google.cloud.resourcemanager.Project"
},
"securityMarks": {
"name": "organizations/595779152576/assets/14656821127596596302/securityMarks"
},
"updateTime": "2020-04-16T06:09:38.488Z"
}
],
"Token": {
"name": "google-cloud-scc-asset-list",
"nextPageToken": "next-page-token"
}
}
}

Human Readable Output#

Total retrieved asset(s): 3#

Organization IDNameProjectResource NameResource TypeResource OwnersSecurity Marks
595779152576organizations/595779152576/assets/7180457033309348544organizations/595779152576//cloudresourcemanager.googleapis.com/organizations/595779152576google.cloud.resourcemanager.Organizationcompressed: SSH
LastSeen: Yesterday
595779152576organizations/595779152576/assets/2994068353411300094Calender//cloudresourcemanager.googleapis.com/projects/455757558851google.cloud.resourcemanager.Projectuser:milankumar.thummar@test.comcompressed: SSH
LastSeen: Yesterday
595779152576organizations/595779152576/assets/14656821127596596302Test Proj//cloudresourcemanager.googleapis.com/projects/265894444436google.cloud.resourcemanager.Projectuser:heena.vaghela@test.com

To fetch the next batch of results, execute the command with the page token as next-page-token

google-cloud-scc-finding-list#


Lists an organization or source's findings.

Base Command#

google-cloud-scc-finding-list

Input#

Argument NameDescriptionRequired
severityFilter findings by their severity (LOW, MEDIUM, HIGH, CRITICAL). Comma-separated values are supported and if any severity value is not provided, by default all the severities will be considered for listing of findings. Value provided inside severity would be applied in the query as a filter parameter for filtering results.Optional
categoryFilter findings by providing comma-separated values of categories or a single category.
If any category value is not provided, by default all the categories will be considered for listing findings.
Value provided inside the category would be applied in the query as a filter parameter for filtering results.
For Example: anomaly,application.
Optional
sourceTypeIdFilter findings by providing the value of a single source type. If any source type Id value is not provided, by default all source types will be considered for list findings. Default is -.Optional
pageSizeThe maximum number of results to return in a single response. The minimum value is 1 and maximum value is 1000. Default is 10.Optional
stateFilter the findings by their state. Can be 'ACTIVE', 'INACTIVE'. Comma-separated values are supported and if any state value is not provided, by default 'ACTIVE' state will be considered for listing of findings. Value provided inside the state would be applied in the query as a filter parameter for filtering results. Default is ACTIVE.Optional
filterThe filter 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.Examples include:
1) name
2) sourceProperties.a_property
3) securityMarks.marks.marka

The supported operators are:
1) = for all value types.
2) >, <, >=, <= for integer values.
3) :, meaning substring matching, for strings.

The following field and operator combinations are supported:
1) name: =
2) parent: =, :
3) resourceName: =, :
4) state: =, :
5) category: =, :
6) externalUri: =, :
7) eventTime: =, >, <, >=, <=
8) severity: =, :
9) findingClass: =

Examples: "sourceProperties.browser="chrome" AND sourceProperties.event_type="proximity""
Use a negated partial match on the empty string to filter based on a property not existing: "-severity=LOW".
Optional
orderByThis parameter defines what fields and order to use for sorting.
The string value should be a comma separated list of fields. 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,sourceProperties.browser".
Supported fields: name, parent, state, category, resourceName, eventTime, sourceProperties, securityMarks.marks.
Optional
compareDurationWhen compareDuration is set, the "stateChange" 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 compareDuration period of time that precedes the readTime. This is the time between (readTime - compareDuration) and readTime.
The results aren't affected if the finding is made inactive and then active again.

Possible "stateChange" values when compareDuration is specified:
1) CHANGED
2) UNCHANGED
3) ADDED
4) REMOVED

If compareDuration is not specified, then the only possible stateChange is "UNUSED".
Example value: "3.5s".
Optional
readTimeTime 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. If not provided, it will take current time.
Format: YYYY-MM-ddTHH:mm:ss.sssZ
Example: 2020-07-22T07:10:02.782Z.
Optional
fieldMaskA field mask is used to specify the specific response fields to be listed in the response.
An empty field mask will list all fields. Comma-separated values are supported in this parameter.
Example: "user.displayName,sourceProperties.browser".
Optional
pageTokenThe value returned by the last response of a google-cloud-scc-finding-list command indicates that this is a continuation of a prior findings.list call, and that the system should return the next page of data.Optional

Context Output#

PathTypeDescription
GoogleCloudSCC.Finding.nameStringThe relative resource name of this finding.
GoogleCloudSCC.Finding.parentStringThe relative resource name of the source the finding belongs to.
GoogleCloudSCC.Finding.resourceNameStringFor findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for.
GoogleCloudSCC.Finding.stateStringThe state of the finding.
GoogleCloudSCC.Finding.categoryStringThe additional taxonomy group within findings from a given source.
GoogleCloudSCC.Finding.externalUriStringThe URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found.
GoogleCloudSCC.Finding.createTimeStringThe time at which the finding was created in Security Command Center.
GoogleCloudSCC.Finding.eventTimeStringThe time at which the event took place, or when an update to the finding occurred.
GoogleCloudSCC.Finding.resource.nameStringThe full resource name of the resource.
GoogleCloudSCC.Finding.resource.parentDisplayNameStringThe human readable name of resource's parent.
GoogleCloudSCC.Finding.resource.parentNameStringThe full resource name of resource's parent.
GoogleCloudSCC.Finding.resource.projectDisplayNameStringThe human readable name of project that the resource belongs to.
GoogleCloudSCC.Finding.resource.projectNameStringThe full resource name of the project that the resource belongs to.
GoogleCloudSCC.Finding.resource.folders.resourceFolderStringFull resource name of this folder.
GoogleCloudSCC.Finding.resource.folders.resourceFolderDisplayNameStringThe user defined display name for this folder.
GoogleCloudSCC.Finding.stateChangeStringState change of the finding between the points in time.
GoogleCloudSCC.Finding.sourcePropertiesUnknownSource specific properties. These properties are managed by the source that writes the finding. Properties are varying from finding to finding.
GoogleCloudSCC.Finding.severityStringSeverity of the finding.
GoogleCloudSCC.Finding.securityMarks.nameStringThe relative resource name of the SecurityMarks.
GoogleCloudSCC.Finding.securityMarks.marksStringMutable user specified security marks belonging to the parent resource.
GoogleCloudSCC.Finding.readTimeStringTime used for executing the list request.
GoogleCloudSCC.Token.nextPageTokenStringToken to retrieve the next page of results, or empty if there are no more results.
GoogleCloudSCC.Token.nameStringName of the command.

Command Example#

!google-cloud-scc-finding-list sourceTypeId="-" pageSize="3" state="ACTIVE"

Context Example#

{
"GoogleCloudSCC": {
"Finding": [
{
"category": "page",
"createTime": "2020-05-15T05:57:46.641Z",
"eventTime": "2021-02-11T09:33:30.716Z",
"externalUri": "http://www.fake-url.com",
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d",
"parent": "organizations/595779152576/sources/10134421585261057824",
"readTime": "2021-02-11T13:52:10.594Z",
"resource": {
"name": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"parentDisplayName": "test.com",
"parentName": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"projectDisplayName": "gscc-demo-0908",
"projectName": "//cloudresourcemanager.googleapis.com/projects/339295427573"
},
"resourceName": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"securityMarks": {
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d/securityMarks"
},
"sourceProperties": {
"access_method": "IPSec",
"appcategory": "Technology",
"bypass_traffic": "yes",
"category": "Technology",
"ccl": "unknown",
"count": "1",
"domain": "www.fake-url.com",
"dst_country": "US",
"dst_geoip_src": "2",
"dst_latitude": 35.7319,
"dst_location": "Morganton",
"dst_longitude": -81.7091,
"dst_region": "North Carolina",
"dst_zipcode": "28655",
"dstip": "127.0.0.1",
"id": "fda1f2cb566f247dac4c4c77",
"insertion_epoch_timestamp": "1584069016",
"organization_unit": "None",
"page": "www.fake-url.com",
"page_id": "0",
"policy": "Domains",
"site": "apple",
"src_country": "US",
"src_geoip_src": "2",
"src_latitude": 37.4073,
"src_location": "San Jose",
"src_longitude": -121.939,
"src_region": "California",
"src_zipcode": "95134",
"srcip": "127.0.0.1",
"ssl_decrypt_policy": "no",
"tenant_name": "partners",
"timestamp": "1584069012",
"traffic_type": "Web",
"transaction_id": "0",
"type": "page",
"ur_normalized": "127.0.0.1",
"url": "www.fake-url.com",
"user": "127.0.0.1",
"user_generated": "yes",
"userip": "127.0.0.1"
},
"state": "ACTIVE"
},
{
"category": "page",
"createTime": "2020-05-30T15:19:49.539Z",
"eventTime": "2021-02-11T07:21:45.317Z",
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002ccaa28911ea9d221217baf6db4d",
"parent": "organizations/595779152576/sources/10134421585261057824",
"readTime": "2021-02-11T13:52:10.594Z",
"resource": {
"name": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"parentDisplayName": "test.com",
"parentName": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"projectDisplayName": "gscc-demo-0908",
"projectName": "//cloudresourcemanager.googleapis.com/projects/339295427573"
},
"resourceName": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"securityMarks": {
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002ccaa28911ea9d221217baf6db4d/securityMarks"
},
"state": "ACTIVE"
},
{
"category": "page",
"createTime": "2020-05-30T02:41:01.848Z",
"eventTime": "2020-03-16T01:38:52Z",
"externalUri": "http://www.fake-url.com",
"name": "organizations/595779152576/sources/10134421585261057824/findings/000031c6a21f11ea9d221217baf6db4d",
"parent": "organizations/595779152576/sources/10134421585261057824",
"readTime": "2021-02-11T13:52:10.594Z",
"resource": {
"name": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"parentDisplayName": "test.com",
"parentName": "//cloudresourcemanager.googleapis.com/organizations/595779152576",
"projectDisplayName": "gscc-demo-0908",
"projectName": "//cloudresourcemanager.googleapis.com/projects/339295427573"
},
"resourceName": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"securityMarks": {
"name": "organizations/595779152576/sources/10134421585261057824/findings/000031c6a21f11ea9d221217baf6db4d/securityMarks"
},
"sourceProperties": {
"access_method": "IPSec",
"app": "LinkedIn",
"appcategory": "Social",
"bypass_traffic": "yes",
"category": "Social",
"cci": "65",
"ccl": "medium",
"count": "1",
"domain": "www.fake-url.com",
"dst_country": "US",
"dst_geoip_src": "1",
"dst_latitude": 37.368889,
"dst_location": "Sunnyvale",
"dst_longitude": -122.035278,
"dst_region": "California",
"dst_timezone": "N/A",
"dst_zipcode": "N/A",
"dstip": "127.0.0.1",
"id": "567a33f799d411dab82da23e",
"insertion_epoch_timestamp": "1584322739",
"organization_unit": "None",
"page": "www.fake-url.com",
"page_id": "0",
"policy": "No_Decrypt",
"site": "Linkedin",
"src_country": "US",
"src_geoip_src": "2",
"src_latitude": 37.4073,
"src_location": "San Jose",
"src_longitude": -121.939,
"src_region": "California",
"src_zipcode": "95134",
"srcip": "127.0.0.1",
"ssl_decrypt_policy": "yes",
"tenant_name": "partners",
"timestamp": "1584322732",
"traffic_type": "CloudApp",
"transaction_id": "0",
"type": "page",
"ur_normalized": "127.0.0.1",
"url": "www.fake-url.com",
"user": "127.0.0.1",
"user_generated": "yes",
"userip": "127.0.0.1"
},
"state": "ACTIVE"
}
],
"Token": {
"name": "google-cloud-scc-finding-list",
"nextPageToken": "next-page-token"
}
}
}

Human Readable Output#

Total retrieved finding(s): 3#

Organization IDNameCategoryResource NameFinding ClassEvent TimeCreate TimeSecurity Marks
595779152576organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4dpage//cloudresourcemanager.googleapis.com/projects/339295427573THREATFebruary 11, 2021 at 09:33:30 AMMay 15, 2020 at 05:57:46 AM{ "name": "wrench", "count": "3" }
595779152576organizations/595779152576/sources/10134421585261057824/findings/00002ccaa28911ea9d221217baf6db4dpage//cloudresourcemanager.googleapis.com/projects/339295427573THREATFebruary 11, 2021 at 07:21:45 AMMay 30, 2020 at 03:19:49 PM{ "name": "wrench", "count": "3" }
595779152576organizations/595779152576/sources/10134421585261057824/findings/000031c6a21f11ea9d221217baf6db4dpage//cloudresourcemanager.googleapis.com/projects/339295427573THREATMarch 16, 2020 at 01:38:52 AMMay 30, 2020 at 02:41:01 AM{ "name": "wrench", "count": "3" }

To fetch the next batch of results, execute the command with the page token as next-page-token

google-cloud-scc-finding-update#


Update an organization's or source's finding.

Base Command#

google-cloud-scc-finding-update

Input#

Argument NameDescriptionRequired
nameThe relative resource name of the finding.
Format: organizations/{organization_id}/sources/{source_id}/finding/{findingId}
Example: organizations/595779152576/sources/14801394649435054450/findings/bc5a86da657611ebb979005056a5924e.
Required
eventTimeTime at which the event took place. By default UTC current time will be taken if no value is provided in eventTime.
Format: YYYY-MM-ddTHH:mm:ss.sssZ
Example: 2020-07-22T07:10:02.782Z, 2014-10-02T15:01:23.045123456Z.
Optional
severityRelated severity of the finding. Possible values are: LOW, MEDIUM, HIGH, CRITICAL.Optional
externalUriURI that points to a web page outside of Cloud SCC (Security Command Center) where additional information about the finding can be found.Optional
sourcePropertiesSource specific properties. These properties are managed by the source that writes the finding. For example "key1=val1,key2=val2".Optional
updateMaskA updateMask argument supports single or comma-separated fields that need to be updated/deleted. A updateMask is automatically generated in the backend for the specific arguments provided in the command and only those values will be updated. To delete attributes/properties, add those keys in updateMask without specifying those fields individually in the command arguments.Optional

Context Output#

PathTypeDescription
GoogleCloudSCC.Finding.nameStringThe relative resource name of this finding.
GoogleCloudSCC.Finding.parentStringThe relative resource name of the source the finding belongs to.
GoogleCloudSCC.Finding.resourceNameStringFor findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for.
GoogleCloudSCC.Finding.stateStringThe state of the finding.
GoogleCloudSCC.Finding.categoryStringThe additional taxonomy group within findings from a given source.
GoogleCloudSCC.Finding.externalUriStringThe URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found.
GoogleCloudSCC.Finding.createTimeStringThe time at which the finding was created in Security Command Center.
GoogleCloudSCC.Finding.eventTimeStringThe time at which the event took place, or when an update to the finding occurred.
GoogleCloudSCC.Finding.sourcePropertiesUnknownSource specific properties. These properties are managed by the source that writes the finding. Properties are varying from finding to finding.
GoogleCloudSCC.Finding.severityStringSeverity of the finding.
GoogleCloudSCC.Finding.securityMarks.nameStringThe relative resource name of the SecurityMarks.
GoogleCloudSCC.Finding.securityMarks.marksStringMutable user specified security marks belonging to the parent resource.

Command Example#

!google-cloud-scc-finding-update name="organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d"

Context Example#

{
"GoogleCloudSCC": {
"Finding": {
"category": "page",
"createTime": "2020-05-15T05:57:46.641Z",
"eventTime": "2021-02-11T13:52:25.986162Z",
"externalUri": "http://www.fake-url.com",
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d",
"parent": "organizations/595779152576/sources/10134421585261057824",
"resourceName": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"securityMarks": {
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d/securityMarks"
},
"sourceProperties": {
"access_method": "IPSec",
"appcategory": "Technology",
"bypass_traffic": "yes",
"category": "Technology",
"ccl": "unknown",
"count": "1",
"domain": "www.fake-url.com",
"dst_country": "US",
"dst_geoip_src": "2",
"dst_latitude": 35.7319,
"dst_location": "Morganton",
"dst_longitude": -81.7091,
"dst_region": "North Carolina",
"dst_zipcode": "28655",
"dstip": "127.0.0.1",
"id": "fda1f2cb566f247dac4c4c77",
"insertion_epoch_timestamp": "1584069016",
"organization_unit": "None",
"page": "www.fake-url.com",
"page_id": "0",
"policy": "Domains",
"site": "apple",
"src_country": "US",
"src_geoip_src": "2",
"src_latitude": 37.4073,
"src_location": "San Jose",
"src_longitude": -121.939,
"src_region": "California",
"src_zipcode": "95134",
"srcip": "127.0.0.1",
"ssl_decrypt_policy": "no",
"tenant_name": "partners",
"timestamp": "1584069012",
"traffic_type": "Web",
"transaction_id": "0",
"type": "page",
"ur_normalized": "127.0.0.1",
"url": "www.fake-url.com",
"user": "127.0.0.1",
"user_generated": "yes",
"userip": "127.0.0.1"
},
"state": "ACTIVE"
}
}
}

Human Readable Output#

The finding has been updated successfully.#

Organization IDNameStateCategoryEvent TimeCreate TimeExternal UriResource Name
595779152576organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4dACTIVEpageFebruary 11, 2021 at 01:52:25 PMMay 15, 2020 at 05:57:46 AMhttp://www.fake-url.com//cloudresourcemanager.googleapis.com/projects/339295427573

google-cloud-scc-asset-resource-list#


Lists cloud asset's resources.

Base Command#

google-cloud-scc-asset-resource-list

Input#

Argument NameDescriptionRequired
parentName of the organization or project the assets belong to. Organization Id provided in the Integration Configuration will be taken by default, if no value is provided to the parent.

Format: "organizations/[organization-number]" (such as "organizations/123"), "projects/[project-id]" (such as "projects/my-project-id"), or "projects/[project-number]" (such as "projects/12345").
Optional
assetTypesThis parameter is used to filter assets by asset types by providing a single value or a comma-separated value of asset types.
For example: "compute.googleapis.com/Disk".

Regular expression is also supported.
For example:
1) "compute.googleapis.com." resources whose asset type starts with "compute.googleapis.com".
2) ".
Instance" resources whose asset type ends with "Instance".
3) ".Instance." resources whose asset type contains "Instance".
Optional
pageSizeThe maximum number of results to return in a single response. The minimum value is 1 and maximum value is 1000. Default is 10.Optional
pageTokenThe nextPageToken returned from the previous scc-asset-resource-list command response, or unspecified for the first scc-asset-resource-list command. It is a continuation of a prior scc-asset-resource-list call, and the API should return the next page of assets.Optional
readTimeTime used as a reference point when filtering assets. This can only be set to a timestamp between the current time and the current time minus 35 days (inclusive). If not provided, it will take current time.

Format:
(<number> <time unit>, e.g., "12 hours ago", "7 days ago", "1 week", "1 month") or (<date> <time>, e.g. "yyyy-mm-ddTHH-MM-SS") or ( "YYYY-MM-ddTHH:mm:ss.sssZ", e.g. 2020-07-22T07:10:02.782Z) or (<date>, e.g. "2020-07-22").
Optional

Context Output#

PathTypeDescription
GoogleCloudSCC.CloudAsset.Resource.nameStringThe full name of the asset.
GoogleCloudSCC.CloudAsset.Resource.assetTypeStringThe type of the asset.
GoogleCloudSCC.CloudAsset.Resource.updateTimeStringThe last update timestamp of an asset. The updateTime is updated when create/update/delete operation is performed.
GoogleCloudSCC.CloudAsset.Resource.readTimeStringTime used for executing the list request.
GoogleCloudSCC.CloudAsset.Resource.ancestorsUnknownThe ancestry path of an asset in Google Cloud resource hierarchy, represented as a list of relative resource names. An ancestry path starts with the closest ancestor in the hierarchy and ends at root. If the asset is a project, folder, or organization, the ancestry path starts from the asset itself.
GoogleCloudSCC.CloudAsset.Resource.resource.versionStringThe API version.
GoogleCloudSCC.CloudAsset.Resource.resource.discoveryDocumentUriStringThe URL of the discovery document containing the resource's JSON schema. This value is unspecified for resources that do not have an API based on a discovery document, such as Cloud Bigtable.
GoogleCloudSCC.CloudAsset.Resource.resource.discoveryNameStringThe JSON schema name listed in the discovery document. This value is unspecified for resources that do not have an API based on a discovery document, such as Cloud Bigtable.
GoogleCloudSCC.CloudAsset.Resource.resource.resourceUrlStringThe REST URL for accessing the resource. An HTTP GET request using this URL returns the resource itself.
GoogleCloudSCC.CloudAsset.Resource.resource.parentStringThe full name of the immediate parent of this resource. For third-party assets, this field may be set differently.
GoogleCloudSCC.CloudAsset.Resource.resource.dataStringThe content of the resource, in which some sensitive fields are removed and may not be present.
GoogleCloudSCC.CloudAsset.Resource.resource.locationStringThe location of the resource in Google Cloud, such as its zone and region.
GoogleCloudSCC.Token.nameStringName of the command.
GoogleCloudSCC.Token.nextPageTokenStringToken to retrieve the next page of results, or empty if there are no more results.

Command Example#

!google-cloud-scc-asset-resource-list pageSize=2

Context Example#

{
"GoogleCloudSCC": {
"CloudAsset": {
"Resource": [
{
"ancestors": [
"organizations/123456789"
],
"assetType": "cloudbilling.googleapis.com/BillingAccount",
"name": "//cloudbilling.googleapis.com/billingAccounts/12345-6789",
"readTime": "2021-06-17T10:19:59.557941456Z",
"resource": {
"data": {
"displayName": "My Billing Account",
"name": "billingAccounts/12345-6789"
},
"discoveryDocumentUri": "https://cloudbilling.googleapis.com/$discovery/rest",
"discoveryName": "BillingAccount",
"location": "global",
"version": "v1"
},
"updateTime": "2020-08-21T09:05:39.425Z"
},
{
"ancestors": [
"organizations/123456789"
],
"assetType": "cloudbilling.googleapis.com/BillingAccount",
"name": "//cloudbilling.googleapis.com/billingAccounts/23456-7890",
"readTime": "2021-06-17T10:19:59.557941456Z",
"resource": {
"data": {
"displayName": "Our-Account",
"name": "billingAccounts/23456-7890"
},
"discoveryDocumentUri": "https://cloudbilling.googleapis.com/$discovery/rest",
"discoveryName": "BillingAccount",
"location": "global",
"version": "v1"
},
"updateTime": "2021-04-01T19:38:12.836197Z"
}
]
},
"Token": {
"name": "google-cloud-scc-asset-resource-list",
"nextPageToken": "next-page-token"
}
}
}

Human Readable Output#

Organization IDAsset NameAsset TypeDiscovery NameAncestorsUpdate Time (In UTC)
595779152576//cloudbilling.googleapis.com/billingAccounts/12345-6789cloudbilling.googleapis.com/BillingAccountBillingAccountorganizations/123456789August 21, 2020 at 09:05:39 AM
595779152576//cloudbilling.googleapis.com/billingAccounts/23456-7890cloudbilling.googleapis.com/BillingAccountBillingAccountorganizations/123456789April 01, 2021 at 07:38:12 PM

To fetch the next batch of results, execute the command with the page token as next-page-token

google-cloud-scc-asset-owner-get#


Gets the owner information for the provided projects.

Base Command#

google-cloud-scc-asset-owner-get

Input#

Argument NameDescriptionRequired
projectNameName of the project. Supports comma separated values.

Format: "projects/[project-number]" or for multiple projects "projects/[first-project-number], projects/[second-project-number]".
Required
maxIterationNumber of iterations to search the owner information. Each iteration retrieves 1000 records. The minimum value is 1 and maximum value is 10. Default is 2.Optional

Context Output#

PathTypeDescription
GoogleCloudSCC.CloudAsset.IamPolicy.nameStringThe full name of the asset.
GoogleCloudSCC.CloudAsset.IamPolicy.ownersUnknownList of owners of the asset.
GoogleCloudSCC.CloudAsset.IamPolicy.assetTypeStringThe type of the asset.
GoogleCloudSCC.CloudAsset.IamPolicy.updateTimeStringThe last update timestamp of an asset. The updateTime is updated when create/update/delete operation is performed.
GoogleCloudSCC.CloudAsset.IamPolicy.readTimeStringTime used for executing the list request.
GoogleCloudSCC.CloudAsset.IamPolicy.ancestorsUnknownThe ancestry path of an asset in Google Cloud resource hierarchy, represented as a list of relative resource names. An ancestry path starts with the closest ancestor in the hierarchy and ends at root. If the asset is a project, folder, or organization, the ancestry path starts from the asset itself.
GoogleCloudSCC.CloudAsset.IamPolicy.versionStringSpecifies the format of the policy.
GoogleCloudSCC.CloudAsset.IamPolicy.etagStringThe etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the etag in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An etag is returned in the response to getIamPolicy, and systems are expected to put that etag in the request to setIamPolicy to ensure that their change will be applied to the same version of the policy.
GoogleCloudSCC.CloudAsset.IamPolicy.bindings.roleStringA role is a named collection of permissions that provide the ability to perform actions on Google Cloud resources.
GoogleCloudSCC.CloudAsset.IamPolicy.bindings.membersUnknownA member, also known as an identity or principal, which can be a user account, service account, Google group, or domain.
GoogleCloudSCC.CloudAsset.IamPolicy.bindings.conditionStringA condition, which is an optional logic expression that further constrains the role binding based on attributes about the request, such as its origin, the target resource, and so on. Conditions are typically used to control whether access is granted based on the context for a request.
GoogleCloudSCC.CloudAsset.IamPolicy.auditConfigs.serviceStringSpecifies a service that will be enabled for audit logging.
GoogleCloudSCC.CloudAsset.IamPolicy.auditConfigs.auditLogConfigs.logTypeStringThe log type that this config enables.
GoogleCloudSCC.CloudAsset.IamPolicy.auditConfigs.auditLogConfigs.exemptedMembersStringSpecifies the identities that do not cause logging for this type of permission.

Command Example#

!google-cloud-scc-asset-owner-get projectName="projects/123456789"

Context Example#

{
"GoogleCloudSCC": {
"CloudAsset": {
"IamPolicy": {
"ancestors": [
"projects/123456789",
"organizations/123456789"
],
"assetType": "cloudresourcemanager.googleapis.com/Project",
"iamPolicy": {
"bindings": [
{
"members": [
"serviceAccount:dummmyaccount@dummycom",
"user:dummmyuser1@dummycom"
],
"role": "roles/owner"
}
],
"etag": "BwV9ONRnkz4=",
"version": 1
},
"name": "//cloudresourcemanager.googleapis.com/projects/123456789",
"owners": [
"serviceAccount:dummmyaccount@dummycom",
"user:dummmyuser1@dummycom"
],
"readTime": "2021-06-17T10:20:43.762746137Z",
"updateTime": "2018-12-24T10:00:00Z"
}
}
}
}

Human Readable Output#

Organization IDProject NameProject OwnerAncestorsUpdate Time (In UTC)
595779152576//cloudresourcemanager.googleapis.com/projects/123456789serviceAccount:dummmyaccount@dummycom,
user:dummmyuser1@dummycom
projects/123456789,
organizations/123456789
December 24, 2018 at 10:00:00 AM

google-cloud-scc-finding-state-update#


Update the state of organization's or source's finding.

Base Command#

google-cloud-scc-finding-state-update

Input#

Argument NameDescriptionRequired
nameThe relative resource name of the finding.

Format: organizations/{organization_id}/sources/{source_id}/finding/{findingId}

Example: organizations/595779152576/sources/14801394649435054450/findings/bc5a86da657611ebb979005056a5924e.
Required
stateThe desired state of the finding. Possible values are: ACTIVE, INACTIVE.Required

Context Output#

PathTypeDescription
GoogleCloudSCC.Finding.nameStringThe relative resource name of this finding.
GoogleCloudSCC.Finding.parentStringThe relative resource name of the source the finding belongs to.
GoogleCloudSCC.Finding.resourceNameStringFor findings on Google Cloud resources, the full resource name of the Google Cloud resource this finding is for.
GoogleCloudSCC.Finding.stateStringThe state of the finding.
GoogleCloudSCC.Finding.categoryStringThe additional taxonomy group within findings from a given source.
GoogleCloudSCC.Finding.externalUriStringThe URI that, if available, points to a web page outside of Security Command Center where additional information about the finding can be found.
GoogleCloudSCC.Finding.createTimeStringThe time at which the finding was created in Security Command Center.
GoogleCloudSCC.Finding.eventTimeStringThe time at which the event took place, or when an update to the finding occurred.
GoogleCloudSCC.Finding.sourcePropertiesUnknownSource specific properties. These properties are managed by the source that writes the finding. Properties are varying from finding to finding.
GoogleCloudSCC.Finding.severityStringSeverity of the finding.
GoogleCloudSCC.Finding.securityMarks.nameStringThe relative resource name of the SecurityMarks.
GoogleCloudSCC.Finding.securityMarks.marksStringMutable user specified security marks belonging to the parent resource.

Command Example#

!google-cloud-scc-finding-state-update name="organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d" state=ACTIVE"

Context Example#

{
"GoogleCloudSCC": {
"Finding": {
"category": "page",
"createTime": "2020-05-15T05:57:46.641Z",
"eventTime": "2021-02-11T13:52:25.986162Z",
"externalUri": "http://www.fake-url.com",
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d",
"parent": "organizations/595779152576/sources/10134421585261057824",
"resourceName": "//cloudresourcemanager.googleapis.com/projects/339295427573",
"securityMarks": {
"name": "organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4d/securityMarks"
},
"sourceProperties": {
"access_method": "IPSec",
"appcategory": "Technology",
"bypass_traffic": "yes",
"category": "Technology",
"ccl": "unknown",
"count": "1",
"domain": "www.fake-url.com",
"dst_country": "US",
"dst_geoip_src": "2",
"dst_latitude": 35.7319,
"dst_location": "Morganton",
"dst_longitude": -81.7091,
"dst_region": "North Carolina",
"dst_zipcode": "28655",
"dstip": "127.0.0.1",
"id": "fda1f2cb566f247dac4c4c77",
"insertion_epoch_timestamp": "1584069016",
"organization_unit": "None",
"page": "www.fake-url.com",
"page_id": "0",
"policy": "Domains",
"site": "apple",
"src_country": "US",
"src_geoip_src": "2",
"src_latitude": 37.4073,
"src_location": "San Jose",
"src_longitude": -121.939,
"src_region": "California",
"src_zipcode": "95134",
"srcip": "127.0.0.1",
"ssl_decrypt_policy": "no",
"tenant_name": "partners",
"timestamp": "1584069012",
"traffic_type": "Web",
"transaction_id": "0",
"type": "page",
"ur_normalized": "127.0.0.1",
"url": "www.fake-url.com",
"user": "127.0.0.1",
"user_generated": "yes",
"userip": "127.0.0.1"
},
"state": "ACTIVE"
}
}
}

Human Readable Output#

The finding has been updated successfully.#

Organization IDNameStateSeverityCategoryEvent TimeCreate TimeExternal UriResource Name
595779152576organizations/595779152576/sources/10134421585261057824/findings/00002906967111ea87141217baf6db4dACTIVEHighpageFebruary 11, 2021 at 01:52:25 PMMay 15, 2020 at 05:57:46 AMhttp://www.fake-url.com//cloudresourcemanager.googleapis.com/projects/339295427573

Known Limitations#

This integration supports only secure connection hence disabling SSL(Trust any certificate) support is not provided.