40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
id: feed_gcp_ipranges
|
|
name: GCP IP Ranges Feed
|
|
version: 1.0.0
|
|
description: "Google Cloud Platform IP ranges feed connector — pull the official GCP public IP range list and emit normalized IOCs (CIDR + type, with service/scope) for import into the Threat Indicator Manager. Intended as an allowlist / known-infrastructure feed (mark benign in TIM). Free, no authentication required; stdlib-only, no extra Python dependencies."
|
|
changelog: "1.0.0 — Initial release: fetch the GCP cloud.json (IPv4 + IPv6)."
|
|
category: feed
|
|
|
|
# GCP publishes its public IP ranges as a free JSON file over HTTPS.
|
|
config_schema:
|
|
properties:
|
|
service:
|
|
type: string
|
|
description: "Optional: only return prefixes for this GCP service (e.g. Google Cloud, Google APIs)"
|
|
insecure:
|
|
type: boolean
|
|
description: "Trust any TLS certificate (not secure)"
|
|
default: false
|
|
required: []
|
|
|
|
commands:
|
|
- id: fetch_indicators
|
|
name: feed-gcp-ipranges-fetch-indicators
|
|
description: "Fetch the GCP IP ranges and return normalized indicators."
|
|
risk: read
|
|
inputs_schema:
|
|
properties:
|
|
service: { type: string, description: "Filter by GCP service (overrides config)" }
|
|
max_indicators: { type: number, description: "Max indicators to return (0 = no limit, default 0)" }
|
|
required: []
|
|
outputs_schema: { properties: {} }
|
|
|
|
- id: test_connection
|
|
name: feed-gcp-ipranges-test-connection
|
|
description: "Verify the GCP IP ranges feed is reachable (used by the Test button)."
|
|
risk: read
|
|
inputs_schema:
|
|
properties: {}
|
|
required: []
|
|
outputs_schema: { properties: {} }
|