44 lines
1.9 KiB
YAML
44 lines
1.9 KiB
YAML
id: feed_aws_ipranges
|
|
name: AWS IP Ranges Feed
|
|
version: 1.0.0
|
|
description: "Amazon Web Services IP ranges feed connector — pull the official AWS public IP range list and emit normalized IOCs (CIDR + type, with region/service) for import into the Threat Indicator Manager. Intended as an allowlist / known-infrastructure feed (mark benign in TIM). Optional region/service filters. Free, no authentication required; stdlib-only, no extra Python dependencies."
|
|
changelog: "1.0.0 — Initial release: fetch the AWS ip-ranges.json (IPv4 + IPv6), optional region/service filter."
|
|
category: feed
|
|
|
|
# AWS publishes its public IP ranges as a free JSON file over HTTPS.
|
|
config_schema:
|
|
properties:
|
|
region:
|
|
type: string
|
|
description: "Optional: only return prefixes for this AWS region (e.g. eu-west-1)"
|
|
service:
|
|
type: string
|
|
description: "Optional: only return prefixes for this AWS service (e.g. EC2, S3, CLOUDFRONT)"
|
|
insecure:
|
|
type: boolean
|
|
description: "Trust any TLS certificate (not secure)"
|
|
default: false
|
|
required: []
|
|
|
|
commands:
|
|
- id: fetch_indicators
|
|
name: feed-aws-ipranges-fetch-indicators
|
|
description: "Fetch the AWS IP ranges and return normalized indicators."
|
|
risk: read
|
|
inputs_schema:
|
|
properties:
|
|
region: { type: string, description: "Filter by AWS region (overrides config)" }
|
|
service: { type: string, description: "Filter by AWS 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-aws-ipranges-test-connection
|
|
description: "Verify the AWS IP ranges feed is reachable (used by the Test button)."
|
|
risk: read
|
|
inputs_schema:
|
|
properties: {}
|
|
required: []
|
|
outputs_schema: { properties: {} }
|