feat(feed): add generic RSS/Atom IOC feed connector (URL/IP/hash extraction, defang-aware)
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
id: feed_rss
|
||||
name: RSS/Atom IOC Feed
|
||||
version: 1.0.0
|
||||
description: "Generic RSS/Atom threat-intel feed connector — fetch a security blog or advisory feed and extract indicators (URLs, IPs and file hashes, including common defanged forms like hxxp and 1[.]2[.]3[.]4) from the item titles and bodies, emitting normalized IOCs for import into the Threat Indicator Manager. One connector, many feeds. Optional bearer token; stdlib-only, no extra Python dependencies."
|
||||
changelog: "1.0.0 — Initial release: extract URL/IP/hash IOCs from an RSS or Atom feed."
|
||||
category: feed
|
||||
|
||||
# The feed is fetched over HTTP(S) from feed_url and parsed as RSS or Atom XML.
|
||||
config_schema:
|
||||
properties:
|
||||
feed_url:
|
||||
type: string
|
||||
description: "URL of the RSS/Atom feed"
|
||||
api_token:
|
||||
type: string
|
||||
description: "Optional bearer token (if the feed requires auth)"
|
||||
x-soar-sensitive: true
|
||||
insecure:
|
||||
type: boolean
|
||||
description: "Trust any TLS certificate (not secure)"
|
||||
default: false
|
||||
required:
|
||||
- feed_url
|
||||
|
||||
commands:
|
||||
- id: fetch_indicators
|
||||
name: feed-rss-fetch-indicators
|
||||
description: "Fetch the RSS/Atom feed and return IOCs extracted from its items."
|
||||
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-rss-test-connection
|
||||
description: "Verify the feed URL returns parseable XML (used by the Test button)."
|
||||
risk: read
|
||||
inputs_schema:
|
||||
properties: {}
|
||||
required: []
|
||||
outputs_schema: { properties: {} }
|
||||
Reference in New Issue
Block a user