Blue Team Operations
[!WARNING]
DISCLAIMER: DEFENSIVE PURPOSES ONLY
This skill is dedicated to Incident Response, forensics, and defending organizational perimeters.
1. Skill Context
Focus: Incident Response (IR), live memory forensics, disk artifacts, and log hunting.
Triggers: analyze memory dump, threat hunting, forensic artifacts, incident response plan
2. Defensive Strategies & Forensics
The agent must guide the user through structured investigation methodologies (e.g., PICERL - Preparation, Identification, Containment, Eradication, Recovery, Lessons Learned).
Windows Disk Forensics & Artifacts
- MFT (Master File Table): Analyzing
$MFT for file creation, modification, and deletion timestamps (Time stomping detection).
- Execution Evidence:
- Prefetch (
.pf) files: Proves an application was executed, tracking run counts and loaded DLLs.
- Amcache & Shimcache: Tracks executed programs, their hashes, and execution paths.
- Persistence Mechanisms: Investigating Registry Run keys, Scheduled Tasks, WMI Event Subscriptions, and Services.
Live Memory Forensics (Volatility)
- Process Trees: Identifying anomalous parent-child relationships (e.g.,
cmd.exe spawning from spoolsv.exe).
- In-Memory Payloads: Using plugins like
malfind to detect injected, unbacked, executable memory regions (VAD tags indicating PAGE_EXECUTE_READWRITE).
- Network Connections: Mapping established connections (
netscan) back to suspicious PIDs.
Threat Hunting
- Hypothesis-Driven Hunting: Formulating assumptions (e.g., "Attackers are using WMI for lateral movement") and querying SIEM data (Event ID 4688 with command line auditing) to prove/disprove it.
- Beaconing Analysis: Analyzing Proxy/Firewall logs for regular, rhythmic outbound connections to unknown domains.
3. Output Format
- Provide structured IR playbooks.
- Detail the exact Windows Event IDs or Linux artifacts needed for the investigation.
- Recommend forensic tools (e.g., Volatility, KAPE, Eric Zimmerman's tools).
1---2name: blueteam-operations3description: Blue Team Operations4---5# Blue Team Operations67> [!WARNING]8> **DISCLAIMER: DEFENSIVE PURPOSES ONLY**9> This skill is dedicated to Incident Response, forensics, and defending organizational perimeters.1011## 1. Skill Context12**Focus**: Incident Response (IR), live memory forensics, disk artifacts, and log hunting.13**Triggers**: analyze memory dump, threat hunting, forensic artifacts, incident response plan1415## 2. Defensive Strategies & Forensics16The agent must guide the user through structured investigation methodologies (e.g., PICERL - Preparation, Identification, Containment, Eradication, Recovery, Lessons Learned).1718### Windows Disk Forensics & Artifacts19- **MFT (Master File Table)**: Analyzing `$MFT` for file creation, modification, and deletion timestamps (Time stomping detection).20- **Execution Evidence**: 21 - **Prefetch (`.pf`) files**: Proves an application was executed, tracking run counts and loaded DLLs.22 - **Amcache & Shimcache**: Tracks executed programs, their hashes, and execution paths.23- **Persistence Mechanisms**: Investigating Registry Run keys, Scheduled Tasks, WMI Event Subscriptions, and Services.2425### Live Memory Forensics (Volatility)26- **Process Trees**: Identifying anomalous parent-child relationships (e.g., `cmd.exe` spawning from `spoolsv.exe`).27- **In-Memory Payloads**: Using plugins like `malfind` to detect injected, unbacked, executable memory regions (VAD tags indicating `PAGE_EXECUTE_READWRITE`).28- **Network Connections**: Mapping established connections (`netscan`) back to suspicious PIDs.2930### Threat Hunting31- **Hypothesis-Driven Hunting**: Formulating assumptions (e.g., "Attackers are using WMI for lateral movement") and querying SIEM data (Event ID 4688 with command line auditing) to prove/disprove it.32- **Beaconing Analysis**: Analyzing Proxy/Firewall logs for regular, rhythmic outbound connections to unknown domains.3334## 3. Output Format35- Provide structured IR playbooks.36- Detail the exact Windows Event IDs or Linux artifacts needed for the investigation.37- Recommend forensic tools (e.g., Volatility, KAPE, Eric Zimmerman's tools).