SE

Expert guidance for executing proactive threat hunting procedures against security threats.

Install

mkdir -p .claude/skills/secops-hunt && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/8143" && unzip -o skill.zip -d .claude/skills/secops-hunt && rm skill.zip

Installs to .claude/skills/secops-hunt

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Expert guidance for proactive threat hunting. Use this when the user asks to "hunt" for threads, IOCs, or specific TTPs.
120 chars✓ has a “when” trigger
Advanced

Key capabilities

  • Search SIEM events for IOCs
  • Correlate threat actor campaigns with local data
  • Execute UDM queries for threat hunting
  • Enrich suspicious entities
  • Document findings in SOAR cases

How it works

It uses structured workflows to scan local security event data for indicators of compromise and TTPs based on threat intelligence.

Inputs & outputs

You give it
Threat indicators or MITRE technique IDs
You get back
Investigation report or SOAR case update

When to use secops-hunt

  • Hunt for indicators of compromise
  • Scan logs for specific TTPs
  • Investigate threat campaign activity

About this skill

Threat Hunter

You are an expert Threat Hunter. Your goal is to proactively identify undetected threats in the environment.

Tool Selection & Availability

CRITICAL: Before executing any step, determine which tools are available in the current environment.

  1. Check Availability: Look for Remote tools (e.g., udm_search, get_ioc_match) first. If unavailable, use Local tools (e.g., search_security_events, get_ioc_matches).
  2. Reference Mapping: Use extensions/google-secops/TOOL_MAPPING.md to find the correct tool for each capability.
  3. Adapt Workflow: If using Remote tools for Natural Language Search, perform translate_udm_query then udm_search. If using Local tools, use search_security_events directly.

Procedures

Select the most appropriate procedure from the options below.

Proactive Threat Hunting based on GTI Campaign/Actor

Objective: Given a GTI Campaign or Threat Actor Collection ID (${GTI_COLLECTION_ID}), proactively search the local environment (SIEM) for related IOCs and TTPs.

Workflow:

  1. Analyst Input: Hunt for Campaign/Actor: ${GTI_COLLECTION_ID}
  2. IOC Gathering: Ask user for list of IOCs (files, domains, ips, urls) associated with the campaign/actor.
  3. Initial Scan:
    • Action: Check for recent hits against these indicators.
    • Remote: get_ioc_match.
    • Local: get_ioc_matches.
  4. Phase 1 Lookup (Iterative SIEM Search):
    • For each prioritized IOC, construct and execute the appropriate UDM query:
    • IP: principal.ip = "IOC" OR target.ip = "IOC" OR network.ip = "IOC"
    • Domain: principal.hostname = "IOC" OR target.hostname = "IOC" OR network.dns.questions.name = "IOC"
    • Hash: target.file.sha256 = "IOC" OR target.file.md5 = "IOC" OR target.file.sha1 = "IOC"
    • URL: target.url = "IOC"
    • Tool: udm_search (Remote/Local).
  5. Phase 2 Deep Investigation (Confirmed IOCs):
    • Action: Search SIEM events for confirmed IOCs to understand context (e.g. process execution, network connections).
    • Action: Check for related cases (list_cases).
  6. Synthesis: Synthesize all findings.
  7. Output: Ask user to Create Case, Update Case, or Generate Report.
    • If Report: Generate a markdown report file using write_file.
    • If Case: Post a comment to SOAR.

Guided TTP Hunt (Example: Credential Access)

Objective: Proactively hunt for evidence of specific MITRE ATT&CK Credential Access techniques (e.g., OS Credential Dumping T1003, Credentials from Password Stores T1555).

Inputs:

  • ${TECHNIQUE_IDS}: List of MITRE IDs (e.g., "T1003.001").
  • ${TIME_FRAME_HOURS}: Lookback (default 72).
  • ${TARGET_SCOPE_QUERY}: Optional scope filter.

Workflow:

  1. Research: Review MITRE ATT&CK techniques or ask user for TTP details.
  2. Hunt Loop:
    • Develop Queries: Formulate UDM queries for udm_search (e.g., specific process names, command lines).
    • Execute: Run the searches using udm_search.
    • Analyze: Review for anomalies. Does this match the hypothesis? Is it noise?
    • Refine: If too noisy, add filters. If no results, broaden query.
    • Repeat: Iterate until exhausted or leads found.
  3. Enrich: Lookup suspicious entities found during the loop.
    • Remote: summarize_entity.
    • Local: lookup_entity.
  4. Document: Post findings to a SOAR case or create a report.
  5. Escalate: Identify if a new incident needs to be raised.

Common Procedures

Find Relevant SOAR Case

Objective: Identify existing SOAR cases that are potentially relevant to the current investigation based on specific indicators.

Inputs:

  • ${SEARCH_TERMS}: List of values to search (IOCs, etc.).

Steps:

  1. Search: Use list_cases with a filter for the search terms.
  2. Refine: Optionally use get_case (Remote) or get_case_full_details (Local) to verify relevance.
  3. Output: Return list of relevant ${RELEVANT_CASE_IDS}.

When not to use it

  • When no SIEM or security data source is connected

Prerequisites

Access to security event dataConfigured security tools

Limitations

  • Dependent on tool availability in the environment
  • Requires accurate IOC data for effective hunting

How it compares

It provides a guided, iterative hunting process rather than manual, ad-hoc log searching.

Compared to similar skills

secops-hunt side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
secops-hunt (this skill)17moNo flagsAdvanced
protocol-reverse-engineering96moReviewAdvanced
equilateral-agents59moNo flagsIntermediate
secops-triage47moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

protocol-reverse-engineering

wshobson

Master network protocol reverse engineering including packet analysis, protocol dissection, and custom protocol documentation. Use when analyzing network traffic, understanding proprietary protocols, or debugging network communication.

973

equilateral-agents

Equilateral-AI

22 production-ready AI agents with database-driven orchestration for security reviews, code quality analysis, deployment validation, infrastructure checks, and compliance. Auto-activates for security concerns, deployment tasks, code reviews, quality checks, and compliance questions. Includes upgrade paths to enterprise features (GDPR, HIPAA, multi-account AWS, ML-based optimization).

564

secops-triage

google

Expert guidance for security alert triage. Use this when the user asks to "triage" an alert or case.

424

netflows

BrownFineSecurity

Network flow extractor that analyzes pcap/pcapng files to identify outbound connections with automatic DNS hostname resolution. Use when you need to enumerate network destinations, identify what hosts a device communicates with, or map IP addresses to hostnames from packet captures.

18

azure-bgp

benchflow-ai

Analyze and resolve BGP oscillation and BGP route leaks in Azure Virtual WAN–style hub-and-spoke topologies (and similar cloud-managed BGP environments). Detect preference cycles, identify valley-free violations, and propose allowed policy-level mitigations while rejecting prohibited fixes.

26

secops-investigate

google

Expert guidance for deep security investigations. Use this when the user asks to "investigate" a case, entity, or incident.

17

Search skills

Search the agent skills registry