39 lines
1.5 KiB
YAML
39 lines
1.5 KiB
YAML
id: feed_dshield
|
|
name: DShield Block List Feed
|
|
version: 1.0.0
|
|
description: "SANS Internet Storm Center DShield feed connector — pull the recommended block list (networks responsible for the most attacks seen by the DShield sensor network) and emit normalized IOCs (CIDR + type, with country) for import into the Threat Indicator Manager. Free, no authentication required; stdlib-only, no extra Python dependencies."
|
|
changelog: "1.0.0 — Initial release: fetch the DShield recommended block list."
|
|
category: feed
|
|
|
|
# The DShield block list is a free SANS ISC feed served over HTTPS. No key needed.
|
|
config_schema:
|
|
properties:
|
|
feed_url:
|
|
type: string
|
|
description: "Override the block-list URL (default https://feeds.dshield.org/block.txt)"
|
|
insecure:
|
|
type: boolean
|
|
description: "Trust any TLS certificate (not secure)"
|
|
default: false
|
|
required: []
|
|
|
|
commands:
|
|
- id: fetch_indicators
|
|
name: feed-dshield-fetch-indicators
|
|
description: "Fetch the DShield block list and return normalized indicators."
|
|
risk: read
|
|
inputs_schema:
|
|
properties:
|
|
max_indicators: { type: number, description: "Max indicators to return (0 = no limit, default 0)" }
|
|
required: []
|
|
outputs_schema: { properties: {} }
|
|
|
|
- id: test_connection
|
|
name: feed-dshield-test-connection
|
|
description: "Verify the DShield feed is reachable (used by the Test button)."
|
|
risk: read
|
|
inputs_schema:
|
|
properties: {}
|
|
required: []
|
|
outputs_schema: { properties: {} }
|