Files

41 lines
1.7 KiB
YAML

id: feed_blocklist_de
name: Blocklist.de Feed
version: 1.0.0
description: "Blocklist.de feed connector — pull the community fail2ban attacker lists (all attackers, or per-service subsets: ssh, mail, apache, ftp, sip, bots, strongips, ...) and emit normalized IOCs (IP + type) for import into the Threat Indicator Manager. Free, no authentication required; stdlib-only, no extra Python dependencies."
changelog: "1.0.0 — Initial release: fetch a blocklist.de attacker list."
category: feed
# Blocklist.de publishes free plain-text IP lists over HTTPS. No key needed.
config_schema:
properties:
list:
type: string
description: "Which list: all, ssh, mail, apache, imap, ftp, sip, bots, strongips, ircbot, bruteforcelogin. Default all"
default: "all"
insecure:
type: boolean
description: "Trust any TLS certificate (not secure)"
default: false
required: []
commands:
- id: fetch_indicators
name: feed-blocklist-de-fetch-indicators
description: "Fetch a blocklist.de attacker list and return normalized indicators."
risk: read
inputs_schema:
properties:
list: { type: string, description: "all | ssh | mail | apache | imap | ftp | sip | bots | strongips | ircbot | bruteforcelogin (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-blocklist-de-test-connection
description: "Verify the blocklist.de feed is reachable (used by the Test button)."
risk: read
inputs_schema:
properties: {}
required: []
outputs_schema: { properties: {} }