feat(feed): add CINS Army feed connector (CI Army bad-guys list)
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
id: feed_cins_army
|
||||
name: CINS Army Feed
|
||||
version: 1.0.0
|
||||
description: "CINS Score (CI Army) feed connector — pull the free 'CI Army' bad-guys list (poorly-rated IPs from the CINS threat-intel system that have not yet been seen attacking your own network) and emit normalized IOCs (IP + 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 CI Army bad-guys list."
|
||||
category: feed
|
||||
|
||||
# The CI Army list is a free CINS Score feed. No key is required.
|
||||
config_schema:
|
||||
properties:
|
||||
feed_url:
|
||||
type: string
|
||||
description: "Override the list URL (default https://cinsscore.com/list/ci-badguys.txt)"
|
||||
insecure:
|
||||
type: boolean
|
||||
description: "Trust any TLS certificate (not secure)"
|
||||
default: false
|
||||
required: []
|
||||
|
||||
commands:
|
||||
- id: fetch_indicators
|
||||
name: feed-cins-army-fetch-indicators
|
||||
description: "Fetch the CI Army bad-guys 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-cins-army-test-connection
|
||||
description: "Verify the CI Army feed is reachable (used by the Test button)."
|
||||
risk: read
|
||||
inputs_schema:
|
||||
properties: {}
|
||||
required: []
|
||||
outputs_schema: { properties: {} }
|
||||
Reference in New Issue
Block a user