Files
riposte-marketplace/integrations/feed-spamhaus-drop/manifest.yaml
T

41 lines
1.6 KiB
YAML

id: feed_spamhaus_drop
name: Spamhaus DROP Feed
version: 1.0.0
description: "Spamhaus DROP feed connector — pull the 'Don't Route Or Peer' lists (hijacked/leased netblocks and ASNs used by cyber-criminals) and emit normalized IOCs (CIDR or ASN + type, with SBL reference) for import into the Threat Indicator Manager. Free, no authentication required; stdlib-only, no extra Python dependencies."
changelog: "1.0.0 — Initial release: fetch DROP (IPv4), DROPv6 or ASN-DROP as normalized indicators."
category: feed
# Spamhaus DROP lists are free and served over HTTPS as line-delimited JSON.
config_schema:
properties:
list:
type: string
description: "Which list to fetch: drop (IPv4), dropv6 (IPv6) or asndrop (default drop)"
default: "drop"
insecure:
type: boolean
description: "Trust any TLS certificate (not secure)"
default: false
required: []
commands:
- id: fetch_indicators
name: feed-spamhaus-drop-fetch-indicators
description: "Fetch a Spamhaus DROP list and return normalized indicators."
risk: read
inputs_schema:
properties:
list: { type: string, description: "drop | dropv6 | asndrop (overrides the config default)" }
max_indicators: { type: number, description: "Max indicators to return (0 = no limit, default 0)" }
required: []
outputs_schema: { properties: {} }
- id: test_connection
name: feed-spamhaus-drop-test-connection
description: "Verify the Spamhaus DROP feed is reachable (used by the Test button)."
risk: read
inputs_schema:
properties: {}
required: []
outputs_schema: { properties: {} }