ioc-extraction
Scans investigation artifacts — log files, memory analysis output, findings documents, and raw captures — to extract indicators of compromise. Classifies each indicator by type, deduplicates, and produces a STIX 2.1 observable bundle alongside a flat IOC list for import into SIEMs and threat intelligence platforms.
Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "IOCs" / "indicators" → Indicator of Compromise extraction
- "STIX" / "STIX 2.1" → structured threat intelligence output
- "pull indicators" → IOC extraction shorthand
Purpose
IOCs extracted during investigation have value beyond the current case: they feed detection rules, threat intelligence platforms, and network blocklists. Raw extraction without classification and deduplication produces noise. This skill applies consistent extraction patterns and maps output to STIX 2.1 so findings integrate with standard threat intelligence tooling.
Behavior
When triggered, this skill:
Identify input sources:
- Accept a directory path, file path, or glob pattern
- Default to scanning all files under
.aiwg/forensics/ if no path is specified
- Supported source types: plain text, Markdown, JSON, JSONL, CSV, raw log files
Extract IP addresses:
- IPv4: match
\b(?:\d{1,3}\.){3}\d{1,3}\b, validate octets are 0-255
- IPv6: match full and compressed forms
- Exclude RFC1918 private ranges, loopback (127.0.0.0/8), link-local (169.254.0.0/16), and multicast (224.0.0.0/4) by default (configurable)
- Exclude IP addresses that appear only in trusted infrastructure context (DNS servers, NTP servers from baseline profile)
Extract domain names and hostnames:
- Match FQDNs:
\b(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}\b
- Exclude known-good domains from an allowlist (configurable)
- Flag domains with high entropy names (DGA indicators): calculate Shannon entropy per label
- Flag recently registered TLDs and uncommon ccTLDs
Extract file hashes:
- MD5: 32 hex characters
- SHA-1: 40 hex characters
- SHA-256: 64 hex characters
- Tag with hash type; flag any MD5 or SHA-1 hashes as weak-algorithm IOCs
Extract URLs:
- Match full URLs including scheme, host, path, and query string
- Defang for safe storage: replace
http with hxxp, . with [.] in output
- Classify by scheme: http, https, ftp, smb, ldap
Extract email addresses:
- Standard RFC 5321 pattern
- Flag addresses in suspicious domains or with high-entropy local parts
Extract file paths and registry keys:
- Unix absolute paths:
/[a-zA-Z0-9._/-]+
- Windows paths:
[A-Za-z]:\\[^\s"]+
- Windows registry keys:
HK(LM|CU|CR|U|CC)\\[^\s"]+
Classify and deduplicate:
- Assign STIX 2.1 observable type to each indicator:
- IP:
ipv4-addr or ipv6-addr
- Domain:
domain-name
- URL:
url
- Hash:
file with hashes property
- Email:
email-addr
- File path:
file
- Registry key:
windows-registry-key
- Deduplicate by value within each type
- Record source file and line number for each unique indicator
Produce STIX 2.1 bundle:
- Generate
observable-objects entries per STIX 2.1 specification
- Assign deterministic UUIDs based on type and value (version 5 UUID from SHA-1 namespace)
- Include
created and modified timestamps
- Link observables to a STIX
report object referencing the investigation ID
Write outputs:
- Flat IOC list:
.aiwg/forensics/iocs/<investigation>-iocs.txt (one indicator per line, typed prefix)
- STIX bundle:
.aiwg/forensics/iocs/<investigation>-stix.json
- Summary report:
.aiwg/forensics/iocs/<investigation>-ioc-summary.md
Usage Examples
Example 1 — Scan all forensics artifacts
extract iocs
Example 2 — Scan specific file
extract indicators from .aiwg/forensics/findings/webserver-01-linux.md
Example 3 — With custom allowlist
ioc analysis --allowlist /etc/forensics/trusted-domains.txt
Output Locations
- Flat IOC list:
.aiwg/forensics/iocs/<investigation>-iocs.txt
- STIX 2.1 bundle:
.aiwg/forensics/iocs/<investigation>-stix.json
- Summary:
.aiwg/forensics/iocs/<investigation>-ioc-summary.md
Configuration
ioc_extraction:
exclude_private_ips: true
exclude_loopback: true
exclude_multicast: true
dga_entropy_threshold: 3.5
weak_hash_algorithms:
- md5
- sha1
defang_urls: true
stix_version: "2.1"
domain_allowlist: []
ip_allowlist: []
References
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan investigation artifacts completely before extracting; check baseline and allowlists before flagging
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Produce IOC lists for analyst review; do not autonomously push indicators to blocking systems
- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/rules/evidence-integrity.md — IOC extraction must not modify source artifacts; read-only access to evidence
- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/skills/evidence-preservation/SKILL.md — Evidence must be preserved and hashed before IOC extraction begins
- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/skills/sigma-hunting/SKILL.md — Sigma hunting cross-references extracted IOCs against log sources for confirmation
1---2name: ioc-extraction3description: Extract, classify, deduplicate, and enrich IOCs from investigation artifacts; map to STIX 2.1 observables4---56# ioc-extraction78Scans investigation artifacts — log files, memory analysis output, findings documents, and raw captures — to extract indicators of compromise. Classifies each indicator by type, deduplicates, and produces a STIX 2.1 observable bundle alongside a flat IOC list for import into SIEMs and threat intelligence platforms.910## Triggers111213Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):1415- "IOCs" / "indicators" → Indicator of Compromise extraction16- "STIX" / "STIX 2.1" → structured threat intelligence output17- "pull indicators" → IOC extraction shorthand1819## Purpose2021IOCs extracted during investigation have value beyond the current case: they feed detection rules, threat intelligence platforms, and network blocklists. Raw extraction without classification and deduplication produces noise. This skill applies consistent extraction patterns and maps output to STIX 2.1 so findings integrate with standard threat intelligence tooling.2223## Behavior2425When triggered, this skill:26271. **Identify input sources**:28 - Accept a directory path, file path, or glob pattern29 - Default to scanning all files under `.aiwg/forensics/` if no path is specified30 - Supported source types: plain text, Markdown, JSON, JSONL, CSV, raw log files31322. **Extract IP addresses**:33 - IPv4: match `\b(?:\d{1,3}\.){3}\d{1,3}\b`, validate octets are 0-25534 - IPv6: match full and compressed forms35 - Exclude RFC1918 private ranges, loopback (127.0.0.0/8), link-local (169.254.0.0/16), and multicast (224.0.0.0/4) by default (configurable)36 - Exclude IP addresses that appear only in trusted infrastructure context (DNS servers, NTP servers from baseline profile)37383. **Extract domain names and hostnames**:39 - Match FQDNs: `\b(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}\b`40 - Exclude known-good domains from an allowlist (configurable)41 - Flag domains with high entropy names (DGA indicators): calculate Shannon entropy per label42 - Flag recently registered TLDs and uncommon ccTLDs43444. **Extract file hashes**:45 - MD5: 32 hex characters46 - SHA-1: 40 hex characters47 - SHA-256: 64 hex characters48 - Tag with hash type; flag any MD5 or SHA-1 hashes as weak-algorithm IOCs49505. **Extract URLs**:51 - Match full URLs including scheme, host, path, and query string52 - Defang for safe storage: replace `http` with `hxxp`, `.` with `[.]` in output53 - Classify by scheme: http, https, ftp, smb, ldap54556. **Extract email addresses**:56 - Standard RFC 5321 pattern57 - Flag addresses in suspicious domains or with high-entropy local parts58597. **Extract file paths and registry keys**:60 - Unix absolute paths: `/[a-zA-Z0-9._/-]+`61 - Windows paths: `[A-Za-z]:\\[^\s"]+`62 - Windows registry keys: `HK(LM|CU|CR|U|CC)\\[^\s"]+`63648. **Classify and deduplicate**:65 - Assign STIX 2.1 observable type to each indicator:66 - IP: `ipv4-addr` or `ipv6-addr`67 - Domain: `domain-name`68 - URL: `url`69 - Hash: `file` with `hashes` property70 - Email: `email-addr`71 - File path: `file`72 - Registry key: `windows-registry-key`73 - Deduplicate by value within each type74 - Record source file and line number for each unique indicator75769. **Produce STIX 2.1 bundle**:77 - Generate `observable-objects` entries per STIX 2.1 specification78 - Assign deterministic UUIDs based on type and value (version 5 UUID from SHA-1 namespace)79 - Include `created` and `modified` timestamps80 - Link observables to a STIX `report` object referencing the investigation ID818210. **Write outputs**:83 - Flat IOC list: `.aiwg/forensics/iocs/<investigation>-iocs.txt` (one indicator per line, typed prefix)84 - STIX bundle: `.aiwg/forensics/iocs/<investigation>-stix.json`85 - Summary report: `.aiwg/forensics/iocs/<investigation>-ioc-summary.md`8687## Usage Examples8889### Example 1 — Scan all forensics artifacts90```91extract iocs92```9394### Example 2 — Scan specific file95```96extract indicators from .aiwg/forensics/findings/webserver-01-linux.md97```9899### Example 3 — With custom allowlist100```101ioc analysis --allowlist /etc/forensics/trusted-domains.txt102```103104## Output Locations105106- Flat IOC list: `.aiwg/forensics/iocs/<investigation>-iocs.txt`107- STIX 2.1 bundle: `.aiwg/forensics/iocs/<investigation>-stix.json`108- Summary: `.aiwg/forensics/iocs/<investigation>-ioc-summary.md`109110## Configuration111112```yaml113ioc_extraction:114 exclude_private_ips: true115 exclude_loopback: true116 exclude_multicast: true117 dga_entropy_threshold: 3.5118 weak_hash_algorithms:119 - md5120 - sha1121 defang_urls: true122 stix_version: "2.1"123 domain_allowlist: []124 ip_allowlist: []125```126127## References128129- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/research-before-decision.md — Scan investigation artifacts completely before extracting; check baseline and allowlists before flagging130- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Produce IOC lists for analyst review; do not autonomously push indicators to blocking systems131- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/rules/evidence-integrity.md — IOC extraction must not modify source artifacts; read-only access to evidence132- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/skills/evidence-preservation/SKILL.md — Evidence must be preserved and hashed before IOC extraction begins133- @$AIWG_ROOT/agentic/code/frameworks/forensics-complete/skills/sigma-hunting/SKILL.md — Sigma hunting cross-references extracted IOCs against log sources for confirmation