id: feed_emergingthreats name: Emerging Threats Feed version: 1.0.0 description: "Emerging Threats (Proofpoint ET Open) feed connector — pull the free reputation blocklists: known compromised hosts, or the ET firewall block-IP ruleset, and emit normalized IOCs (IP/CIDR + 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 the ET compromised-IPs or firewall block-IPs list." category: feed # ET Open lists are free and served over HTTPS. No key required. config_schema: properties: list: type: string description: "Which list: compromised (compromised-ips) or block (firewall block-IPs). Default compromised" default: "compromised" insecure: type: boolean description: "Trust any TLS certificate (not secure)" default: false required: [] commands: - id: fetch_indicators name: feed-emergingthreats-fetch-indicators description: "Fetch an Emerging Threats reputation list and return normalized indicators." risk: read inputs_schema: properties: list: { type: string, description: "compromised | block (overrides the config default)" } max_indicators: { type: number, description: "Max indicators to return (0 = no limit, default 0)" } required: [] outputs_schema: { properties: {} } - id: test_connection name: feed-emergingthreats-test-connection description: "Verify the Emerging Threats feed is reachable (used by the Test button)." risk: read inputs_schema: properties: {} required: [] outputs_schema: { properties: {} }