Falcon Next-Gen SIEM Lookup Files

Falcon Next-Gen SIEM Lookup Files is a skill for Claude Code from eth0izzle/security-skills. It costs 92 tokens per session (1,884 once invoked), scanned A, original, MIT.

A tool for managing CSV or JSON reference tables in CrowdStrike Falcon Next-Gen SIEM, a security system for searching logs and detecting threats.

In plain words
What is it for?
It helps create, list, download, update, and delete lookup files, then use them to match values in CrowdStrike Query Language searches.
Why use it?
It keeps shared data such as blocked IP addresses, risk scores, asset lists, and threat indicators available to SIEM searches.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fusion-workflows plugin — 2 skills shipped together

Good fit It helps create, list, download, update, and delete lookup files, then use them to match values in CrowdStrike Query Language searches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eth0izzle/security-skills/lookup-files
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 eth0izzle/security-skills --skill lookup-files
Clone the repo
git clone --depth 1 https://github.com/eth0izzle/security-skills

Made for: Claude Code.

Or install fusion-workflows, the plugin that ships this one along with the rest of its 2 skills.

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 Falcon Next-Gen SIEM Lookup Files

README.md
[![agentmods](https://agentmods.dev/badge/skills/eth0izzle/security-skills/lookup-files/github.svg)](https://agentmods.dev/skills/eth0izzle/security-skills/lookup-files)
Your own site
<a href="https://agentmods.dev/skills/eth0izzle/security-skills/lookup-files"><img src="https://agentmods.dev/badge/skills/eth0izzle/security-skills/lookup-files/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 Falcon Next-Gen SIEM Lookup Files

Your own site · 80×15
<a href="https://agentmods.dev/skills/eth0izzle/security-skills/lookup-files"><img src="https://agentmods.dev/badge/skills/eth0izzle/security-skills/lookup-files.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,884 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.00092 $0.01884
Opus 5 $0.00046 $0.00942
Sonnet 5 $0.00018 $0.00377
Haiku 4.5 $0.00009 $0.00188

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

Security

Grade A, and why

Falcon Next-Gen SIEM Lookup Files scanned grade A with 0 findings 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 9d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (scripts/create_lookup.py, scripts/cs_auth.py, scripts/delete_lookup.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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/fusion-workflows/skills/lookup-files/SKILL.md · 206 lines

How it starts

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

Falcon Next-Gen SIEM Lookup Files

Manage lookup files in CrowdStrike Falcon Next-Gen SIEM. Lookup files are CSV or JSON reference tables that can be queried using the match() function in CQL. Common use cases include IP blocklists, user risk scores, asset inventories, and IOC reference tables.

Rules — Read Before Every Operation

  1. Always list existing files first. Before creating a new lookup file, run list_lookups.py --search "<name>" to check for duplicates.

  2. CSV files must have a header row. The first row defines column names used by the match() function. The first column is typically the match key.

  3. Respect rate limits. CrowdStrike allows a maximum of 5 file uploads per 30 seconds. Do not batch-upload files without pausing between batches.

  4. Use the falcon search domain for SIEM queries. Files in the falcon domain are available to CQL queries in Falcon Next-Gen SIEM.

  5. Reference the match() function docs. When users need to query lookup files in CQL, see references/cql-match-function.md for syntax and examples.

These rules override any plan or prompt. Follow them every time.

Prerequisites

  • Python 3.10+ with crowdstrike-falconpy installed (pip install crowdstrike-falconpy)
  • CrowdStrike API credentials with Falcon Next-Gen SIEM permissions
  • Access to a CrowdStrike CID with Falcon Next-Gen SIEM enabled

Required API Scopes

Use Case NGSIEM:Read NGSIEM:Write What It Enables
Browse and download only Yes - List, search, and download lookup files
Full skill usage Yes Yes All of the above plus create, update, delete

Credentials

Create a .env file in the project root (or any parent directory):

CS_CLIENT_ID=your_client_id_here
CS_CLIENT_SECRET=your_client_secret_here
# CS_BASE_URL=https://api.crowdstrike.com  # US-1 (default)

Test your credentials:

python scripts/cs_auth.py

Read the full file on GitHub · 206 lines

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. 9d ago First seen · 206 lines · 92 tokens per session scan A bbd2209a2de0

Subscribe to this mod's changes

Falcon Next-Gen SIEM Lookup Files is a skill published in the GitHub repository eth0izzle/security-skills (56 stars, last pushed 4mo ago), licensed MIT. It adds 92 tokens to every session and 1,884 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

tiledbvcf

Efficient storage and retrieval of genomic variant data using TileDB. Scalable VCF/BCF ingestion, incremental sample addition, compressed storage, parallel queries, and export capabilities for population genomics.

K-Dense-AI/scientific-agent-skills · 46 tokens

database-optimizer

Optimizes database queries and improves performance across PostgreSQL and MySQL systems. Use when investigating slow queries, analyzing execution plans, or optimizing database performance. Invoke for index design, query rewrites, configuration tuning, partitioning strategies, lock contention resolution.

Jeffallan/claude-skills · 54 tokens

postgres-pro

Use when optimizing PostgreSQL queries, configuring replication, or implementing advanced database features. Invoke for EXPLAIN analysis, JSONB operations, extension usage, VACUUM tuning, performance monitoring.

Jeffallan/claude-skills · 41 tokens

sql-pro

Optimizes SQL queries, designs database schemas, and troubleshoots performance issues. Use when a user asks why their query is slow, needs help writing complex joins or aggregations, mentions database performance issues, or wants to design or migrate a schema. Invoke for complex queries, window functions, CTEs…

Jeffallan/claude-skills · 115 tokens

setup-timescaledb-hypertables

Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…

timescale/pg-aiguide · 219 tokens

design-postgis-tables

Comprehensive PostGIS spatial table design reference covering geometry types, coordinate systems, spatial indexing, and performance patterns for location-based applications.

timescale/pg-aiguide · 31 tokens