id: feed_threatfox name: ThreatFox Feed version: 1.0.0 description: "abuse.ch ThreatFox feed connector — pull the recent IOC export (IPs, domains, URLs and file hashes tied to malware and botnet C2) and emit normalized IOCs (value + type, with malware/threat_type/confidence context) for import into the Threat Indicator Manager. abuse.ch now requires a free Auth-Key for downloads; stdlib-only, no extra Python dependencies." changelog: "1.0.0 — Initial release: fetch the ThreatFox recent JSON export." category: feed # ThreatFox is an abuse.ch feed. As of 2024 abuse.ch requires a free Auth-Key # (sent as the Auth-Key header) for feed downloads. config_schema: properties: api_key: type: string description: "abuse.ch Auth-Key (free — from your abuse.ch account profile)" x-soar-sensitive: true insecure: type: boolean description: "Trust any TLS certificate (not secure)" default: false required: [] commands: - id: fetch_indicators name: feed-threatfox-fetch-indicators description: "Fetch the ThreatFox recent export 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-threatfox-test-connection description: "Verify the ThreatFox feed is reachable (used by the Test button)." risk: read inputs_schema: properties: {} required: [] outputs_schema: { properties: {} }