SAVVYDFIR-MCP: Agent for Claude Code

.claude/agents/mft-analyst.md

mft-analyst is an agent for Claude Code from kismatkunwar89/SAVVYDFIR-MCP. It costs 58 tokens per session (3,634 once invoked), scanned A, original, MIT.

A forensic reference guide for analyzing the Windows NTFS Master File Table, which records information about files on a disk. It focuses on signs such as altered timestamps, deleted files, alternate data streams, and suspicious file groups.

In plain words
What is it for?
Use it after an MFT timeline is extracted to examine possible timestomping, attacker file drops, deleted evidence, sequential entry clusters, or hidden data streams.
Why use it?
It helps an investigator interpret MFT data without loading an entire raw CSV into working context and requires findings to be tied to evidence.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model 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/agents/mft-analyst.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 mft-analyst

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/kismatkunwar89/savvydfir-mcp/mft-analyst"><img src="https://agentmods.dev/badge/agents/kismatkunwar89/savvydfir-mcp/mft-analyst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,634 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.00058 $0.03634
Opus 5 $0.00029 $0.01817
Sonnet 5 $0.00012 $0.00727
Haiku 4.5 $0.00006 $0.00363

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

Security

Grade A, and why

mft-analyst 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 12d 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/agents/mft-analyst.md · 278 lines

How it starts

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

NTFS MFT Forensic Analyst

How this file is used

This is a forensic-heuristic knowledge base, not a procedural playbook. The main investigator agent reads this file as reference context when analyzing the relevant artifact. Apply heuristics where they fit the case context - do not execute them as a fixed sequence.

For court-defensible findings: cite the specific tool execution and raw evidence that supports each claim. Use submit_finding with structured provenance (execution_id, evidence_excerpt, contradictions, corroborations).

The user-authored heuristics below were preserved verbatim during the 2026-05-23 Phase 3 overlay removal.

Forensic Ground Rules

  • NEVER load raw CSV rows into context - write targeted Pandas queries via run_analysis only
  • Schema discovery is mandatory before any query - column names vary between MFTECmd versions
  • Every confirmed anomaly gets an immediate add_finding call before the next query
  • Call read_state first for case status and attack-window summary, then call get_findings when you need the full prior finding set

What the MFT Tells You

The MFT maintains two timestamp sets per file - this is your most powerful forensic lever:

  • $SI (columns ending 0x10): user-visible, modifiable via Windows API - primary timestomping target
  • $FN (columns ending 0x30): kernel-only writes - reliably reflects true activity time
  • MACB = Modified / Accessed / MFT-record-Change / Birth - "C" is metadata change, not creation
  • InUse flag: when a file is deleted, this flips to False but all metadata survives until the record is overwritten - resident files (<700 bytes) are always recoverable regardless of cluster state
  • EntryNumber: NTFS allocates these sequentially - files created together occupy contiguous entry numbers regardless of backdated timestamps

What to Hunt (Heuristics, not procedures)

Use your forensic training. These are indicators - extend based on what the schema and data reveal:

Timestomping (T1070.006) - multiple independent indicators, any two = high confidence:

  1. $SI Created < $FN Created - timestomping tools only modify $SI, cannot touch $FN
  2. $SI timestamp sub-seconds = exactly .000 - tools zero out 100ns precision; OS writes never do
  3. EntryNumber clustered with recent files but $SI shows an old date - entry numbers don't lie
  4. $I30 index slack - stale directory entries may preserve original pre-stomp timestamps, exposing backdating
  5. PE compile time > $SI creation/modification time - logically impossible, definitively proves tampering
  6. ShimCache/Amcache contradiction - if $SI modification time is older than what ShimCache recorded at first execution, timestamps were altered after first run

Read the full file on GitHub · 278 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. 12d ago First seen · 278 lines · 58 tokens per session scan A 54cad4b17587

Subscribe to this mod's changes

mft-analyst is an agent published in the GitHub repository kismatkunwar89/SAVVYDFIR-MCP (4 stars, last pushed 3mo ago), licensed MIT. It adds 58 tokens to every session and 3,634 once invoked, about $0.0003 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 agents, from other repositories

resp

Writes incident response playbooks, containment runbooks, and post-incident reviews following the PICERL framework — contain first, preserve evidence, never blame. Use when building IR readiness or handling an active incident. Trigger with "write an incident response playbook", "design containment procedures".

jeremylongshore/tons-of-skills-marketplace · 59 tokens

frontend-dev

Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.

vibeeval/vibecosystem · 22 tokens

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

video-cutter-agent

Cuts a video at sentence-aligned silence-midpoint boundaries using the pickcuts algorithm. Takes target cut points, word timings, and a banned-opener list. Returns the cut clips plus a QA report (head/tail re-transcription verification).

naveedharri/benai-skills · 55 tokens

wiki-maintainer

Answers questions about, and makes targeted edits to, an already-indexed wiki project on demand. Reads current source through the traversal-guarded wiki tools, rewrites only the pages the user asked about, and never finalizes.

bearlike/Assistant · 50 tokens

debugger

Diagnoses and fixes failed modules using root-cause analysis, not guessing.

TT-Wang/forge · 17 tokens