ソース情報
- リポジトリ
- jmagly/aiwg
- ソースの最終更新活動
- 2026年4月30日 21:57
- 検出された SKILL.md の言語
- 英語
- スター
- 178
- フォーク
- 26
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/jmagly/aiwg --skill forensics-huntコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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-hunt |
| platforms | ["all"] |
| description | Threat hunt using Sigma rules against log sources |
| commandHint | {"argumentHint":"[--rules rule-id,...|all] [--target host] [--logs-path path] [--output path]","category":"forensics-hunting"} |
Perform structured threat hunting by executing Sigma detection rules against collected log sources. Supports targeted rule selection or full rule set execution. Outputs matched detections with evidence context and MITRE ATT&CK annotations.
/forensics-hunt [options]
| Argument | Required | Description |
|---|---|---|
| --rules | No | Rule IDs to run, comma-separated, or all (default: all) |
| --target | No | Target hostname to scope the hunt |
| --logs-path | No | Path to collected logs directory (default: .aiwg/forensics/acquisition/logs/) |
| --output | No | Output path (default: .aiwg/forensics/analysis/hunt-findings.md) |
| --severity | No | Minimum rule severity to execute: low, medium, high, critical (default: medium) |
| --since | No | Only evaluate log entries after this timestamp |
| --format | No | Output format: markdown (default), json, sigma-results |
| --list-rules | No | List available rules without executing |
When invoked, this command:
Discover Log Sources
Load Sigma Rules
@$AIWG_ROOT/agentic/code/frameworks/forensics-complete/sigma/--rules selection or severity thresholdExecute Detections
--since timestamp if providedDetection Categories
| Category | Example Rules |
|---|---|
| Authentication | ssh-brute-force-success, password-spray, invalid-user-spikes |
| Privilege Escalation | sudo-to-root, suid-execution, new-root-session |
| Persistence | cron-modification, new-systemd-unit, authorized-key-added |
| Lateral Movement | internal-ssh-from-new-host, ssh-agent-forwarding |
| Defense Evasion | log-deletion, audit-tampering, history-cleared |
| Exfiltration | large-outbound-transfer, curl-to-external, dns-exfil |
| C2 | reverse-shell-indicators, beaconing-intervals, tunnel-traffic |
Result Enrichment
/forensics-hunt
/forensics-hunt --rules ssh-brute-force-success,sudo-to-root --target web01
/forensics-hunt --severity high
/forensics-hunt --since 2026-02-26T18:00:00Z --severity medium
/forensics-hunt --list-rules
/forensics-hunt --severity high --format json
Artifacts are saved to .aiwg/forensics/analysis/:
.aiwg/forensics/analysis/
├── hunt-findings.md # Human-readable detection results
├── hunt-findings.json # Machine-readable results
└── rule-execution-log.yaml # Which rules ran, match counts, errors
Threat Hunt: web01-2026-02-27
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Log sources: auth.log, syslog, journal, audit.log (140.6 MB)
Rules loaded: 47 applicable (of 63 total, 16 skipped: missing sources)
Executing rules...
[HIGH ] ssh-brute-force-success MATCH (1 event)
[HIGH ] sudo-to-root MATCH (2 events)
[CRITICAL] cron-modification MATCH (1 event)
[HIGH ] reverse-shell-indicators MATCH (1 event)
[MEDIUM] invalid-user-spikes MATCH (847 events)
[MEDIUM] curl-to-external MATCH (3 events)
[LOW ] failed-su-attempts no match
[LOW ] password-spray no match
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Detection Summary:
CRITICAL: 1 HIGH: 3 MEDIUM: 2 LOW: 0
Total detections: 6 rules matched across 855 events
--- ssh-brute-force-success (HIGH, T1110.001) ---
Match: 2026-02-26 22:29:01 Accepted publickey for deploy from 185.220.101.42 port 51823
Context: Following 847 failed attempts (22:14:33-22:29:00) from same IP
Confidence: HIGH
--- cron-modification (CRITICAL, T1053.003) ---
Match: 2026-02-26 22:33:45 crontab: deploy modified crontab for root
Context: 4 minutes after successful SSH login from attacker IP
Confidence: HIGH
Hunt complete.
Output: .aiwg/forensics/analysis/hunt-findings.md
ID Severity Category Description
────────────────────────────────────────────────────────────────────
ssh-brute-force-success HIGH Authentication Successful login after brute force
password-spray MEDIUM Authentication Many failed logins across accounts
sudo-to-root HIGH Privilege Esc. User obtained root via sudo
new-root-session HIGH Privilege Esc. Root shell opened (non-login)
cron-modification CRITICAL Persistence Crontab file modified
new-systemd-unit HIGH Persistence New systemd unit installed
authorized-key-added HIGH Persistence New SSH authorized key added
log-deletion HIGH Defense Evasion Log file deleted or truncated
reverse-shell-indicators HIGH C2 Bash/nc/python reverse shell pattern
beaconing-intervals MEDIUM C2 Regular outbound connection pattern
large-outbound-transfer HIGH Exfiltration Unusually large outbound data transfer
Hunt Summary