feat(feed): add Botvrij.eu OSINT feed connector (IOC lists by type)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
id: feed_botvrij
|
||||
name: Botvrij.eu Feed
|
||||
version: 1.0.0
|
||||
description: "Botvrij.eu OSINT feed connector — pull the free community IOC lists (destination IPs, domains, hostnames, URLs, file hashes, filenames, e-mails) and emit normalized IOCs (value + 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 botvrij.eu IOC list by type."
|
||||
category: feed
|
||||
|
||||
# Botvrij.eu publishes free plain-text IOC lists over HTTPS. No key required.
|
||||
config_schema:
|
||||
properties:
|
||||
list:
|
||||
type: string
|
||||
description: "Which list: ip-dst, domain, hostname, url, md5, sha1, sha256, filename, email-src. Default ip-dst"
|
||||
default: "ip-dst"
|
||||
insecure:
|
||||
type: boolean
|
||||
description: "Trust any TLS certificate (not secure)"
|
||||
default: false
|
||||
required: []
|
||||
|
||||
commands:
|
||||
- id: fetch_indicators
|
||||
name: feed-botvrij-fetch-indicators
|
||||
description: "Fetch a botvrij.eu IOC list and return normalized indicators."
|
||||
risk: read
|
||||
inputs_schema:
|
||||
properties:
|
||||
list: { type: string, description: "ip-dst | domain | hostname | url | md5 | sha1 | sha256 | filename | email-src (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-botvrij-test-connection
|
||||
description: "Verify the botvrij.eu feed is reachable (used by the Test button)."
|
||||
risk: read
|
||||
inputs_schema:
|
||||
properties: {}
|
||||
required: []
|
||||
outputs_schema: { properties: {} }
|
||||
Reference in New Issue
Block a user