46 lines
1.8 KiB
YAML
46 lines
1.8 KiB
YAML
id: feed_sslbl
|
|
name: SSL Blacklist Feed
|
|
version: 1.0.0
|
|
description: "abuse.ch SSL Blacklist (SSLBL) feed connector — pull the botnet C2 blocklists: malicious SSL certificate SHA1 fingerprints, or the associated C2 IP:port list. Emits normalized IOCs (hash or IP + type) for import into the Threat Indicator Manager. Free abuse.ch feed (Auth-Key supported); stdlib-only, no extra Python dependencies."
|
|
changelog: "1.0.0 — Initial release: fetch the SSLBL C2 IP list or SSL certificate fingerprint blacklist."
|
|
category: feed
|
|
|
|
# SSLBL is an abuse.ch feed. An Auth-Key (free) is sent as the Auth-Key header
|
|
# when provided.
|
|
config_schema:
|
|
properties:
|
|
api_key:
|
|
type: string
|
|
description: "abuse.ch Auth-Key (free — from your abuse.ch account profile)"
|
|
x-soar-sensitive: true
|
|
list:
|
|
type: string
|
|
description: "Which list: ips (botnet C2 IPs) or fingerprints (malicious SSL cert SHA1). Default ips"
|
|
default: "ips"
|
|
insecure:
|
|
type: boolean
|
|
description: "Trust any TLS certificate (not secure)"
|
|
default: false
|
|
required: []
|
|
|
|
commands:
|
|
- id: fetch_indicators
|
|
name: feed-sslbl-fetch-indicators
|
|
description: "Fetch an SSLBL list and return normalized indicators."
|
|
risk: read
|
|
inputs_schema:
|
|
properties:
|
|
list: { type: string, description: "ips | fingerprints (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-sslbl-test-connection
|
|
description: "Verify the SSLBL feed is reachable (used by the Test button)."
|
|
risk: read
|
|
inputs_schema:
|
|
properties: {}
|
|
required: []
|
|
outputs_schema: { properties: {} }
|