用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill forensics-report命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
基于 SOC 职业分类
正在显示 SKILL.md
| namespace | aiwg |
| name | forensics-report |
| platforms | ["all"] |
| description | Generate forensic investigation report |
| commandHint | {"argumentHint":"<forensics-path> [--format triage|full|executive] [--output path]","category":"forensics-reporting"} |
Compile all forensic findings, analysis outputs, timelines, and IOC registers into a structured investigation report. Supports three report formats: triage summary for immediate response, full technical report for detailed review, and executive summary for leadership briefing.
/forensics-report <forensics-path> [options]
| Argument | Required | Description |
|---|---|---|
| forensics-path | Yes | Path to investigation directory (e.g., .aiwg/forensics/) |
| --format | No | Report format: triage, full, executive (default: full) |
| --output | No | Output path (default: .aiwg/forensics/reports/forensic-report.md) |
| --include | No | Specific sections to include: timeline, ioc, evidence, remediation |
| --severity-threshold | No | Minimum finding severity to include: low, medium, high (default: low) |
| --investigator | No | Investigator name for report attribution |
| --case-id | No | Override case ID in report header |
When invoked, this command:
Collect Investigation Artifacts
Severity Classification
Executive Summary (all formats)
Technical Findings Section (triage and full formats)
Timeline Section (full format)
timeline/incident-timeline.mdIOC Section (full format)
Evidence Documentation (full format)
Remediation Plan
| Format | Audience | Length | Sections |
|---|---|---|---|
triage | First responders | 1-2 pages | Executive summary, critical findings, immediate actions |
full | Security team, legal | 10-20 pages | All sections: findings, timeline, IOCs, evidence, remediation |
executive | Leadership, board | 1 page | Business impact, incident classification, remediation summary |
/forensics-report .aiwg/forensics/
/forensics-report .aiwg/forensics/ --format triage
/forensics-report .aiwg/forensics/ --format executive --output .aiwg/forensics/reports/exec-summary.md
/forensics-report .aiwg/forensics/ --severity-threshold high
/forensics-report .aiwg/forensics/ --include timeline,ioc,remediation
Artifacts are saved to .aiwg/forensics/reports/:
.aiwg/forensics/reports/
├── forensic-report.md # Primary investigation report
├── executive-summary.md # Executive version (if requested)
├── triage-report.md # Triage version (if requested)
└── report-metadata.yaml # Generation metadata and integrity hash
# Forensic Investigation Report
Case ID: INV-2026-02-27-web01
Generated: 2026-02-27T15:01:44Z
Classification: CONFIDENTIAL
## Executive Summary
**Incident Classification**: Confirmed Breach
**Severity**: CRITICAL
**Affected Systems**: web01.internal (192.168.1.50)
**Attack Window**: 2026-02-26 22:14Z - 2026-02-27 02:15Z (4h 1m)
**Attacker Objectives**: Persistent access, C2 implant installation
**Data Impact**: Undetermined (investigation ongoing)
Key Findings:
1. [CRITICAL] Successful SSH brute force against account 'deploy'
2. [CRITICAL] C2 implant installed via cron persistence (/tmp/.update)
3. [HIGH] Active C2 beacon to 185.220.101.42:4444
4. [HIGH] Privilege escalation: deploy -> root via sudo
5. [HIGH] Attacker IP 185.220.101.42 is known Tor exit node
## Findings
| ID | Severity | Title | Asset | MITRE |
|------|----------|--------------------------------|--------|---------------|
| F-01 | CRITICAL | SSH brute force success | web01 | T1110.001 |
| F-02 | CRITICAL | Cron-based persistence | web01 | T1053.003 |
| F-03 | HIGH | Active C2 connection | web01 | T1071.001 |
...
## Remediation Plan
### Immediate (0-24h)
- [ ] Isolate web01 from network
- [ ] Revoke 'deploy' account credentials
- [ ] Block 185.220.101.42 at perimeter firewall
- [ ] Remove /tmp/.update and associated cron entry
### Short-term (1-7 days)
- [ ] Rotate all SSH keys on affected system
- [ ] Audit all user accounts for unauthorized additions
- [ ] Review and harden SSH daemon configuration
...
Report Finalization
reporting-complete