| name | forensics |
| description | Forensic analysis techniques — disk, memory, network, steganography, side-channel analysis. Use when given a disk image (.dd, .E01, .raw), memory dump (.vmem, .raw), packet capture (.pcap, .pcapng), image/audio file with hidden data, or side-channel trace. |
| license | MIT |
| compatibility | Requires filesystem-based agent with bash, Python 3, sleuthkit, volatility3, tshark, and stego tools. |
| allowed-tools | Bash Read Write Edit Glob Grep WebSearch |
| metadata | {"user-invocable":"true","argument-hint":"<evidence-file>"} |
Forensics Analysis
File Type Triage
file evidence
strings evidence | grep -iE '(flag|pass|key|secret)' | head -20
xxd evidence | head -5
Document Map
| Evidence Type | Document |
|---|
| Disk image, filesystem, deleted files, RAID, LUKS, partitions | Disk Analysis |
| Memory dump, process list, credentials, injected code | Memory Analysis |
| PCAP, TLS, DNS, covert channels, protocol analysis | Network Forensics |
| Image, audio, video with hidden data, LSB, spectrogram | Steganography |
| Power trace, timing data, EM emanations, keyboard acoustics | Side-Channel |
Fast Path by File Extension
| Extension | Category | First Commands |
|---|
.dd, .raw, .E01, .img | Disk | mmls, fsstat, fls -r, icat |
.vmem, .dmp, .core | Memory | volatility3 -f image windows.info |
.pcap, .pcapng | Network | tshark -r capture, capinfos capture |
.png, .jpg, .bmp, .wav | Stego | zsteg, steghide, exiftool, binwalk -e |
.csv (logic analyzer) | Side-Channel | Parse and plot values over time |
Stego Checklist
strings image.png | grep -i flag
exiftool image.png | grep -iE '(comment|description|artist|copyright)'
zsteg image.png
steghide extract -sf image.jpg -p ""
binwalk -e image.png
xxd image.png | tail -20
sox audio.wav -n spectrogram -o spec.png