build_attack_timeline
Reconstruct multi-stage attacks by correlating events across IPs, users, and domains, producing a chronological timeline with MITRE ATT&CK mapping and remediation guidance.
Instructions
Build comprehensive attack timeline from multiple indicators.
Reconstructs a multi-stage attack by correlating events across different indicators (IPs, users, domains) to show the complete attack narrative.
Args: indicators: List of indicators, e.g. [{"type": "ip", "value": "10.1.42.42"}, {"type": "user", "value": "admin"}] timeframe: Time window to search (default: "-30d") correlation_window: Time window in seconds to correlate events (default: 7200 = 2 hours)
Returns: Dictionary containing: - summary: Attack overview with duration and stages - timeline: Chronological events with MITRE ATT&CK mapping - attack_chain: Events grouped by attack stage - recommendations: Remediation suggestions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeframe | No | -30d | |
| indicators | Yes | ||
| correlation_window | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |