SAVVYDFIR-MCP: Skill for Claude Code

.claude/skills/tools-reference/SKILL.md

tools-reference is a skill for Claude Code from kismatkunwar89/SAVVYDFIR-MCP. It costs 49 tokens per session (1,327 once invoked), scanned A, original, MIT.

A reference guide containing command examples for SIFT Workstation forensic tools, which examine evidence from computers and other devices.

In plain words
What is it for?
Use it as a syntax reference for Volatility 3, Sleuth Kit, EZ Tools, Plaso, YARA, and Regripper, including process, network, credential, file-system, and injection checks.
Why use it?
It reduces the need to remember exact commands and helps interpret common output for memory, disk, timeline, and malware analysis.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is kismatkunwar89/SAVVYDFIR-MCP's own configuration. It tells Claude Code how to work on SAVVYDFIR-MCP itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything SAVVYDFIR-MCP configures →

Reuse

Borrowing it

Nothing to install: this file belongs to kismatkunwar89/SAVVYDFIR-MCP. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/kismatkunwar89/SAVVYDFIR-MCP/master/.claude/skills/tools-reference/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/kismatkunwar89/SAVVYDFIR-MCP

Made for: Claude Code.

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 tools-reference

README.md
[![agentmods](https://agentmods.dev/badge/skills/kismatkunwar89/savvydfir-mcp/tools-reference/github.svg)](https://agentmods.dev/skills/kismatkunwar89/savvydfir-mcp/tools-reference)
Your own site
<a href="https://agentmods.dev/skills/kismatkunwar89/savvydfir-mcp/tools-reference"><img src="https://agentmods.dev/badge/skills/kismatkunwar89/savvydfir-mcp/tools-reference/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 tools-reference

Your own site · 80×15
<a href="https://agentmods.dev/skills/kismatkunwar89/savvydfir-mcp/tools-reference"><img src="https://agentmods.dev/badge/skills/kismatkunwar89/savvydfir-mcp/tools-reference.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,327 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.00049 $0.01327
Opus 5 $0.00024 $0.00664
Sonnet 5 $0.00010 $0.00265
Haiku 4.5 $0.00005 $0.00133

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

Security

Grade A, and why

tools-reference 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.

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.

.claude/skills/tools-reference/SKILL.md · 128 lines

How it starts

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

Tools Reference - Exact Command Syntax

Volatility 3 (Memory Analysis)

MEM=/evidence/memory/extracted/dump.raw

# Process analysis
vol3 -f $MEM windows.pslist          # Running processes (EPROCESS list walk)
vol3 -f $MEM windows.psscan          # All processes (pool tag scan - finds hidden)
vol3 -f $MEM windows.pstree          # Process tree with parent-child
vol3 -f $MEM windows.cmdline         # Command lines per process

# Network
vol3 -f $MEM windows.netscan         # Active + recently closed connections
vol3 -f $MEM windows.netstat         # Current connections

# Injection detection
vol3 -f $MEM windows.malfind         # All suspicious VAD regions
vol3 -f $MEM windows.malfind --pid PID  # Specific process
vol3 -f $MEM windows.vadinfo --pid PID  # Full VAD details

# DLLs and handles
vol3 -f $MEM windows.dlllist --pid PID  # Loaded DLLs
vol3 -f $MEM windows.handles --pid PID  # Open handles

# Credentials
vol3 -f $MEM windows.hashdump        # SAM database hashes
vol3 -f $MEM windows.lsadump         # LSA secrets

# YARA in memory
vol3 -f $MEM yarascan.YaraScan --yara-file /path/to/rules.yar
vol3 -f $MEM yarascan.YaraScan --yara-file /path/to/rules.yar --pid PID

Sleuth Kit (Disk Analysis)

# Mount E01
mkdir -p /mnt/evidence /mnt/disk
ewfmount /evidence/disk/image.E01 /mnt/evidence/
mmls /mnt/evidence/ewf1              # Get partition offsets
OFFSET=2048                          # Replace with actual NTFS offset
mount -o ro,loop,offset=$((OFFSET*512)) /mnt/evidence/ewf1 /mnt/disk/

# List files
fls -r -p /mnt/evidence/ewf1 -o $OFFSET | head -100   # All files
fls -r -p -d /mnt/evidence/ewf1 -o $OFFSET             # Deleted only

# Extract by inode
icat -o $OFFSET /mnt/evidence/ewf1 INODE > /cases/extracted_file

# Filesystem stats
fsstat -o $OFFSET /mnt/evidence/ewf1

# Extract $MFT (always inode 0)
icat -o $OFFSET /mnt/evidence/ewf1 0 > /cases/mft/\$MFT

EZ Tools (Windows Artifact Parsing)

# MFT parsing
MFTECmd -f /cases/mft/\$MFT --csv /cases/mft/ --csvf mft_output.csv

# Event log parsing
EvtxECmd -f /mnt/disk/Windows/System32/winevt/Logs/Security.evtx --csv /cases/evtx/ --csvf security.csv
EvtxECmd -d /mnt/disk/Windows/System32/winevt/Logs/ --csv /cases/evtx/ --csvf all_logs.csv

# Prefetch
PECmd -d /mnt/disk/Windows/Prefetch/ --csv /cases/prefetch/ --csvf prefetch.csv

# Application Compatibility Cache
AppCompatCacheParser -f /mnt/disk/Windows/System32/config/SYSTEM --csv /cases/shimcache/ --csvf shimcache.csv

# LNK files
LECmd -d /mnt/disk/Users/ --csv /cases/lnk/ --csvf lnk.csv -q

# Jump Lists
JLECmd -d /mnt/disk/Users/ --csv /cases/jumplists/ --csvf jumplists.csv -q

# ShellBags
SBECmd -d /mnt/disk/Users/ --csv /cases/shellbags/ --csvf shellbags.csv

Read the full file on GitHub · 128 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 · 128 lines · 49 tokens per session scan A 827095182a52

Subscribe to this mod's changes

tools-reference is a skill published in the GitHub repository kismatkunwar89/SAVVYDFIR-MCP (4 stars, last pushed 2mo ago), licensed MIT. It adds 49 tokens to every session and 1,327 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

forensics-osquery

SQL-powered forensic investigation and system interrogation using osquery to query operating systems as relational databases. Enables rapid evidence collection, threat hunting, and incident response across Linux, macOS, and Windows endpoints. Use when: (1) Investigating security incidents and collecting forensic…

AgentSecOps/SecOpsAgentKit · 129 tokens

ir-velociraptor

Endpoint visibility, digital forensics, and incident response using Velociraptor Query Language (VQL) for evidence collection and threat hunting at scale. Use when: (1) Conducting forensic investigations across multiple endpoints, (2) Hunting for indicators of compromise or suspicious activities, (3) Collecting…

AgentSecOps/SecOpsAgentKit · 107 tokens

performing-cloud-forensics-with-aws-cloudtrail

Perform forensic investigation of AWS environments using CloudTrail logs to reconstruct attacker activity, identify compromised credentials, and analyze API call patterns.

xalgorix/xalgorix · 36 tokens

Incident Response & Digital Forensics

IR playbook execution, evidence collection, forensic timeline analysis, memory forensics, and post-incident reporting following NIST SP 800-61 and SANS PICERL methodology.

Masriyan/Claude-Code-CyberSecurity-Skill · 43 tokens

collecting-volatile-evidence-from-compromised-host

Collect volatile forensic evidence from a compromised system following order of volatility, preserving memory, network connections, processes, and system state before they are lost.

26zl/cybersec-toolkit · 41 tokens

incident-response-expert

Expert in security incident response, NIST framework, digital forensics, containment strategies, and recovery procedures. Use when the user mentions forensics, NIST, containment, recovery, or cybersecurity, or when the task involves NIST Incident Response Lifecycle, Incident Classification, Incident Response Workflow…

personamanagmentlayer/pcl · 67 tokens