feat(feed): add Tor exit nodes feed connector

This commit is contained in:
Guillaume BOURGEOIS
2026-07-12 22:49:29 +02:00
parent d6129f5d79
commit f833bfe3a5
3 changed files with 142 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
id: feed_tor_exit
name: Tor Exit Nodes Feed
version: 1.0.0
description: "Tor Project exit-node feed connector — pull the current list of Tor exit-relay IP addresses and emit normalized IOCs (IP + type, tagged tor-exit) for import into the Threat Indicator Manager. Useful for flagging traffic from Tor anonymizing infrastructure. Free, no authentication required; stdlib-only, no extra Python dependencies."
changelog: "1.0.0 — Initial release: fetch the Tor bulk exit list."
category: feed
# The Tor exit list is served over HTTPS by the Tor Project. No API key is required.
config_schema:
properties:
feed_url:
type: string
description: "Override the exit-list URL (default https://check.torproject.org/torbulkexitlist)"
insecure:
type: boolean
description: "Trust any TLS certificate (not secure)"
default: false
required: []
commands:
- id: fetch_indicators
name: feed-tor-exit-fetch-indicators
description: "Fetch the Tor exit-node 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-tor-exit-test-connection
description: "Verify the Tor exit list is reachable (used by the Test button)."
risk: read
inputs_schema:
properties: {}
required: []
outputs_schema: { properties: {} }