Queries and retrieves active security findings, external exposures, toxic combinations, vulnerabilities, threats, and sensitive data risks from Google Cloud Sec
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-google-cloud-scc-query-34d9e980f560 ,按照其中的说明把「google-cloud-scc-query」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Provides guidelines and read-only gcloud CLI command patterns for querying and
retrieving security findings, external exposures, toxic combinations,
vulnerabilities, threats, and sensitive data risks from Google Cloud Security
Command Center.
[!IMPORTANT] There is NO
gcloud scc findings describecommand (Invalid choice: 'describe'). To retrieve details for a specific finding by its name, always usegcloud scc findings listwith a filter onname.
gcloud scc findings list or group
command strictly requires an explicit {parent} scope
(organizations/{id}, projects/{id}, or folders/{id}). If the parent
scope is missing from the prompt and cannot be inferred from a full finding
name, DO NOT run any gcloud commands (do not execute queries without
parent, and never inspect gcloud config). Halt immediately before
executing commands and ask the user for the parent resource scope.[], halt immediately. Do not attempt blind
brute-force retries with different flags, and never search the local
workspace for credentials.PERMISSION_DENIED,
IAM_PERMISSION_DENIED, credential expiration, or network timeouts, halt
immediately and report the verbatim error message. Do not search the
workspace for credentials or run diagnostic loops.organizations/{org_id}, projects/{project_id}, or
folders/{folder_id}.{parent}
resource prefix before /sources/...:
organizations/{org_id}/sources/... → {parent} is
organizations/{org_id}folders/{folder_id}/sources/... → {parent} is
folders/{folder_id}projects/{project_id}/sources/... → {parent} is
projects/{project_id} Extract the parent prefix regardless of
whether the finding resource name is global (4-segment) or
location-qualified (5-segment with /locations/{location}/).
Execute the deep dive query using the extracted {parent}. Do not
reject or halt on project- or folder-level findings.When Data Residency (DRZ) is enabled, findings are stored and accessible only
within their designated regional location (us, eu, or me-central2).
Queries across different locations do not return findings from other regions.
All gcloud scc findings commands require specifying the target location via
--location={location}:
global (used when data residency is not enabled or for global
findings).us (United States multi-region)eu (European Union multi-region)me-central2 (Kingdom of Saudi Arabia regional location)When data residency (DRZ) is enabled for an organization in a regional location
(us, eu, or me-central2), configure the regional API endpoint override
before executing finding queries:
gcloud config set api_endpoint_overrides/securitycenter https://securitycenter.{LOCATION}.rep.googleapis.com/
Example for the European Union (eu) region:
gcloud config set api_endpoint_overrides/securitycenter https://securitycenter.eu.rep.googleapis.com/
To reset the endpoint back to default global routing:
gcloud config unset api_endpoint_overrides/securitycenter
Regional finding resource names include the /locations/{location}/ path
segment:
organizations/{org_id}/sources/{source_id}/locations/{location}/findings/{finding_id}folders/{folder_id}/sources/{source_id}/locations/{location}/findings/{finding_id}projects/{project_id}/sources/{source_id}/locations/{location}/findings/{finding_id}When performing a Deep Dive on a location-qualified finding name:
{parent} scope (the prefix before /sources/..., e.g.,
organizations/{org_id}).{location} from /locations/{location}/ (e.g., eu, us,
me-central2). If not present in the finding name, default to global (or
the user-specified location).--location={location} and
--filter="name=\"{finding_name}\"".Intent: User provides a specific finding name or explicitly asks to retrieve
all details for one finding.
Action: Execute gcloud scc findings list with a strict filter on name
and NO --field-mask to retrieve the complete JSON payload. Specify
--location={location} (default global unless a regional location is
indicated or present in the finding name).
gcloud scc findings list {parent} \
--location={location} \
--filter="name=\"{finding_name}\"" \
--format="json" --limit=1
Intent: User wants to list active findings matching criteria without pulling
full nested payloads.
Action: Use --field-mask projection to restrict output size. Specify
--location={location} (default global unless querying a specific region).
gcloud scc findings list {parent} \
--location={location} \
--filter="{filter_expression}" \
--field-mask="finding.name,finding.parentDisplayName,finding.findingClass,finding.category,finding.state,finding.eventTime,finding.severity,finding.resourceName" \
--format="json" --order-by="severity,event_time desc" --limit=100
| Intent / Target Finding Class | --filter Expression |
|---|---|
| All Active Findings | state="ACTIVE" |
| Vulnerabilities | `state="ACTIVE" AND |
| : : findingClass="VULNERABILITY"` : | |
| Misconfigurations | `state="ACTIVE" AND |
| : : findingClass="MISCONFIGURATION"` : | |
| Toxic Combinations | `state="ACTIVE" AND |
| : : findingClass="TOXIC_COMBINATION"` : | |
| External Exposures | `state="ACTIVE" AND |
| : : findingClass="EXTERNAL_EXPOSURE"` : | |
| Threats | state="ACTIVE" AND findingClass="THREAT" |
| Observations | `state="ACTIVE" AND |
| : : findingClass="OBSERVATION"` : | |
| Sensitive Data Risks | `state="ACTIVE" AND |
| : : findingClass="SENSITIVE_DATA_RISK"` : | |
| Chokepoints | `state="ACTIVE" AND |
| : : findingClass="CHOKEPOINT"` : | |
| Posture Violations | `state="ACTIVE" AND |
| : : findingClass="POSTURE_VIOLATION"` : | |
Intent: User wants high-level counts or landscape overview (e.g., "What are
the most common findings?", "Show me a summary by category").
Action: Use gcloud scc findings group. Specify --location={location}
(default global unless querying a specific region). Allowed fields for
--group-by are strictly: resource_name, category, state, parent.
gcloud scc findings group {parent} \
--location={location} \
--group-by="{group_by_field}" \
--filter="state=\"ACTIVE\"" \
--format="json"
Once the finding JSON payload is retrieved:
TOXIC_COMBINATION Findings:
attackExposure field is present and has a score > 0.attackExposureResult to identify exposed resources and attack
trajectories.VULNERABILITY Findings:
exploitationActivity,
observedInTheWild, zeroDay), upstream fix status
(upstreamFixAvailable), and affected package details from the
vulnerability object to evaluate risk:
vulnerability.cve.idvulnerability.cve.cvssv3.baseScorevulnerability.cve.cvssv3.attackVectorvulnerability.cve.exploitationActivityvulnerability.cve.observedInTheWildvulnerability.cve.zeroDayvulnerability.cve.upstreamFixAvailablevulnerability.offendingPackage.packageNamevulnerability.offendingPackage.packageVersionvulnerability.fixedPackage.packageVersionvulnerability.securityBulletin.suggestedUpgradeVersionSee finding_schema.md for the JSON structure of a Security Command Center finding.
state="ACTIVE" AND findingClass="SECRET" |
| SCC Errors | `state="ACTIVE" AND |
| : : findingClass="SCC_ERROR"` : |
| Specific Category | state="ACTIVE" AND category="{category}" |