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: {} }