acquiring-disk-image-w…
Create forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through
Build collaborative forensic incident timelines using Timesketch to ingest, normalize, and analyze multi-source
$ npx -y skills add Mikaru0Mystic/sectinel --skill building-incident-timeline-with-timesketch --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/building-incident-timeline-with-timesketchContext preview
The summary Claude sees to decide when to auto-load this skill.
Build collaborative forensic incident timelines using Timesketch to ingest, normalize, and analyze multi-source
name: building-incident-timeline-with-timesketch description: Build collaborative forensic incident timelines using Timesketch to ingest, normalize, and analyze multi-source event data for attack chain reconstruction and investigation documentation. domain: cybersecurity subdomain: incident-response tags: - timesketch - timeline-analysis - forensic-timeline - plaso - dfir - incident-investigation - collaborative-forensics mitre_attack: - T1070 - T1059 - T1053 version: '1.0' author: mahipal license: Apache-2.0 d3fend_techniques: - Executable Denylisting - Execution Isolation - File Metadata Consistency Validation - Content Format Conversion - File Content Analysis nist_csf: - RS.MA-01 - RS.MA-02 - RS.AN-03 - RC.RP-01
Timesketch is an open-source collaborative forensic timeline analysis tool developed by Google that enables security teams to visualize and analyze chronological data from multiple sources during incident investigations. It ingests logs and artifacts from endpoints, servers, and cloud services, normalizes them into a unified searchable timeline, and provides powerful analysis capabilities including built-in analyzers, tagging, sketch annotations, and story building. Timesketch integrates with Plaso (log2timeline) for artifact parsing and supports direct CSV/JSONL ingestion for rapid timeline construction during active incidents.
Evidence Sources --> Plaso/log2timeline --> Plaso storage file (.plaso)
| |
v v
CSV/JSONL --> Timesketch Importer --> OpenSearch Index
|
v
Timesketch Web UI
(Search, Analyze, Story)# Clone Timesketch repository git clone https://github.com/google/timesketch.git cd timesketch # Run deployment helper script cd docker sudo docker compose up -d # Default access: https://localhost:443 # Admin credentials generated during first run
# Process disk image with log2timeline log2timeline.py --storage-file evidence.plaso /path/to/disk/image # Process Windows event logs log2timeline.py --parsers winevtx --storage-file windows_events.plaso /path/to/evtx/ # Process multiple evidence sources log2timeline.py --parsers "winevtx,prefetch,amcache,shimcache,userassist" \ --storage-file full_analysis.plaso /path/to/mounted/image/ # Import Plaso file into Timesketch timesketch_importer -s "Case-2025-001" -t "Endpoint-WKS01" evidence.plaso
message,datetime,timestamp_desc,source,hostname "User login detected","2025-01-15T08:30:00Z","Event Recorded","Security Log","DC01" "PowerShell execution","2025-01-15T08:31:15Z","Event Recorded","PowerShell","WKS042"
# Import CSV directly timesketch_importer -s "Case-2025-001" -t "Quick-Triage" events.csv
{"message": "Suspicious logon from 10.1.2.3", "datetime": "2025-01-15T08:30:00Z", "timestamp_desc": "Event Recorded", "source_short": "Security", "hostname": "DC01"}# Upload Sigma rules for automated detection timesketch_importer --sigma-rules /path/to/sigma/rules/
1. Log into Timesketch web interface 2. Create new sketch (investigation case) 3. Add relevant timelines to the sketch 4. Set sketch description and tags
Timesketch includes analyzers that automatically identify:
# Search examples in Timesketch query language # Find all events related to specific user source_short:Security AND message:"john.admin" # Find PowerShell execution events data_type:"windows:evtx:record" AND event_identifier:4104 # Find lateral movement indicators source_short:Security AND event_identifier:
Open-source security arsenal for AI coding agents: 784 cybersecurity skills, scanner integrations, and a security MCP for Claude Code, Cursor, opencode, Gemini CLI, Cline, and any agentskills.io agent. Mapped to OWASP, MITRE ATT&CK, NIST CSF, D3FEND, ATLAS.
Repo: Mikaru0Mystic/sectinel
Create forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through
Detect dangerous ACL misconfigurations in Active Directory using ldap3 to identify GenericAll, WriteDACL, and
Perform static analysis of Android APK malware samples using apktool for decompilation, jadx for Java source
Parses API Gateway access logs (AWS API Gateway, Kong, Nginx) to detect BOLA/IDOR attacks, rate limit bypass,
Analyze advanced persistent threat (APT) group techniques using MITRE ATT&CK Navigator to create layered heatmaps
Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to detect suspicious administrative