building-threat-intelligence-enrichment-in-splunk

building-threat-intelligence-enrichment-in-splunk is a skill for Claude Code, Codex from autohandai/community-skills. It costs 35 tokens per session (2,389 once invoked), scanned A, a copy of building-threat-intelligence-enrichment-in-splunk, Apache-2.0.

A guide to connecting external threat feeds to Splunk Enterprise Security so security events can be checked against known suspicious IP addresses, domains, files, URLs, and email addresses.

In plain words
What is it for?
It helps build feed-ingestion and enrichment pipelines in Splunk using lookup tables, modular inputs, and stored indicator data.
Why use it?
It reduces manual lookups by adding threat context to alerts as they arrive. Analysts can investigate matches faster.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps build feed-ingestion and enrichment pipelines in Splunk using lookup tables, modular inputs, and stored indicator data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add autohandai/community-skills --skill building-threat-intelligence-enrichment-in-splunk
Clone the repo
git clone --depth 1 https://github.com/autohandai/community-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for building-threat-intelligence-enrichment-in-splunk

README.md
[![agentmods](https://agentmods.dev/badge/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk/github.svg)](https://agentmods.dev/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk)
Your own site
<a href="https://agentmods.dev/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk"><img src="https://agentmods.dev/badge/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for building-threat-intelligence-enrichment-in-splunk

Your own site · 80×15
<a href="https://agentmods.dev/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk"><img src="https://agentmods.dev/badge/skills/autohandai/community-skills/building-threat-intelligence-enrichment-in-splunk.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,389 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.02389
Opus 5 $0.00017 $0.01195
Sonnet 5 $0.00007 $0.00478
Haiku 4.5 $0.00003 $0.00239

Measured 8d ago against content hash 4aefd2af4d60, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

building-threat-intelligence-enrichment-in-splunk scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/agent.py, scripts/process.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.get(url, headers=headers, timeout=60)
Origin

This is a copy

88% identical to building-threat-intelligence-enrichment-in-splunk — 32 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

building-threat-intelligence-enrichment-in-splunk/SKILL.md · 288 lines

How it starts

The opening of the file, as written. The whole thing — 288 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Building Threat Intelligence Enrichment in Splunk

Overview

Splunk's Threat Intelligence Framework in Enterprise Security enables SOC teams to automatically correlate indicators of compromise (IOCs) against security events. The framework ingests threat feeds, normalizes indicators into KV Store collections, and uses lookup-based correlation searches to flag matching events. Splunk Threat Intelligence Management centralizes collection, normalization, and enrichment from multiple sources, reducing triage time by providing analysts with immediate context.

Prerequisites

  • Splunk Enterprise Security (ES) 7.x or later
  • Threat Intelligence Management add-on or Threat Intelligence Framework
  • API keys for external threat intelligence feeds (MISP, OTX, VirusTotal, AbuseIPDB)
  • KV Store enabled and properly configured
  • Admin access for modular input configuration

Threat Intelligence Framework Architecture

External TI Sources (STIX/TAXII, CSV, API)
    |
    v
Modular Inputs (download and parse feeds)
    |
    v
KV Store Collections (normalized IOC storage)
    |-- ip_intel
    |-- domain_intel
    |-- file_intel
    |-- url_intel
    |-- email_intel
    |
    v
Threat Intelligence Lookups
    |
    v
Correlation Searches (match events against IOCs)
    |
    v
Notable Events (enriched with TI context)

Configuring Threat Intelligence Sources

STIX/TAXII Feed Integration

# inputs.conf - TAXII feed configuration
[threatlist://taxii_feed_example]
description = TAXII 2.1 Threat Feed
type = taxii
url = https://threatfeed.example.com/taxii2/
collection = threat-indicators-v21
polling_interval = 3600
api_key = <encrypted_api_key>
disabled = false

CSV-Based Threat List

# inputs.conf - CSV threat list
[threatlist://custom_blocklist]
description = Internal threat blocklist
type = csv
url = https://internal.company.com/threat-feeds/blocklist.csv
polling_interval = 1800
disabled = false

Custom Modular Input for API-Based Feeds

Read the full file on GitHub · 288 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 288 lines · 35 tokens per session scan A 4aefd2af4d60

Subscribe to this mod's changes

building-threat-intelligence-enrichment-in-splunk is a skill published in the GitHub repository autohandai/community-skills (11 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 35 tokens to every session and 2,389 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 88% identical to building-threat-intelligence-enrichment-in-splunk, differing in 32 lines, and is treated as a copy.

Related

Other skills, from other repositories

building-threat-intelligence-enrichment-in-splunk

Build automated threat intelligence enrichment pipelines in Splunk Enterprise Security using lookup tables, modular inputs, and the Threat Intelligence Framework.

26zl/cybersec-toolkit · 35 tokens

building-threat-intelligence-enrichment-in-splunk

Build automated IOC enrichment pipelines in Splunk Enterprise Security by ingesting threat feeds into KV Store collections and correlating them against security events via lookup tables, modular inputs, and the Threat Intelligence Framework. Use when wiring threat intel into Splunk correlation searches to flag IOC…

Youngmaidainon/Agent-Level-Up · 71 tokens

building-threat-intelligence-enrichment-in-splunk

Build automated threat intelligence enrichment pipelines in Splunk Enterprise Security using lookup tables, modular inputs, and the Threat Intelligence Framework.

RobotFlow-Labs/skills-repo · 35 tokens

building-detection-rule-with-splunk-spl

Build effective detection rules using Splunk Search Processing Language (SPL) correlation searches to identify security threats in SOC environments.

26zl/cybersec-toolkit · 35 tokens

building-detection-rule-with-splunk-spl

Build effective detection rules using Splunk Search Processing Language (SPL) correlation searches to identify security threats in SOC environments.

Youngmaidainon/Agent-Level-Up · 35 tokens

building-detection-rule-with-splunk-spl

Build effective detection rules using Splunk Search Processing Language (SPL) correlation searches to identify security threats in SOC environments.

Njones17/AI-agent-master-cyber-skills-list · 35 tokens