Implementing File Integrity Monitoring with AIDE
Overview
AIDE (Advanced Intrusion Detection Environment) is a host-based intrusion detection system that monitors file and directory integrity using cryptographic checksums. This skill covers generating AIDE configuration files, initializing baseline databases, running integrity checks, parsing change reports, and setting up automated cron-based monitoring with alerting.
When to Use
Trigger phrases:
"implementing file integrity monitoring with aide"
"Configure AIDE (Advanced Intrusion Detection Environment) for file integrity mon"
When deploying or configuring implementing file integrity monitoring with aide capabilities in your environment
When establishing security controls aligned to compliance requirements
When building or improving security architecture for this domain
When conducting security assessments that require this implementation
Prerequisites
- AIDE installed on target Linux system (apt install aide / yum install aide)
- Root or sudo access for file system scanning
- Python 3.8+ with standard library
Steps
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
- Generate AIDE Configuration — Create aide.conf with monitoring rules for critical directories (/etc, /bin, /sbin, /usr/bin, /boot)
- Initialize Baseline Database — Run aide --init to create the initial file integrity baseline
- Run Integrity Check — Execute aide --check to compare current state against baseline
- Parse Change Report — Extract added, removed, and changed files from AIDE output
- Configure Automated Monitoring — Generate cron job for scheduled integrity checks
- Generate Compliance Report — Produce structured report of all file changes with severity classification
Expected Output
- AIDE configuration file (aide.conf)
- Baseline database creation status
- JSON report of file changes (added/removed/changed) with severity
- Cron job configuration for automated monitoring
When NOT to Use
- You need to test the implementation (use performing-* skills)
- Task is about configuring existing tools (use configuring-* skills)
- You need to analyze security events (use analyzing-* skills)
- Task is about building detection rules (use building-* skills)
- You don't have access to the target environment
- Task requires vendor-specific expertise (consult vendor docs)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Acting on threat intelligence without validating source reliability
- Sharing classified or sensitive indicators without proper handling procedures
- Alerting threat actors to detection capabilities through visible response actions
Process
- Plan — Define infrastructure requirements, security constraints, rollback strategy
- Implement — Configure resources, apply security best practices, test in staging
- Deploy & Monitor — Roll out to production, verify health checks, set up alerting
Verification
- All steps executed successfully against a test environment before production use
- Output documented with screenshots or logs demonstrating expected behavior
- Results validated against known-good baselines or reference implementations
- Documentation complete enough for another analyst to reproduce findings
Anti-Rationalization Table
| Rationalization |
Reality |
| "We are too small to be targeted" |
Automated attacks target everyone. Size does not matter. |
| "Security slows us down" |
A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" |
Vulnerabilities in production are exploited within hours. Fix before deploy. |
1---2name: implementing-file-integrity-monitoring-with-aide3description: Use when configure AIDE (Advanced Intrusion Detection Environment) for file integrity monitoring including baseline creation, scheduled integrity checks, change detection, and alerting. Use when configureing aide (advanced intrusion detection environment) for file integrity monitoring.4license: Apache-2.05---678# Implementing File Integrity Monitoring with AIDE910## Overview1112AIDE (Advanced Intrusion Detection Environment) is a host-based intrusion detection system that monitors file and directory integrity using cryptographic checksums. This skill covers generating AIDE configuration files, initializing baseline databases, running integrity checks, parsing change reports, and setting up automated cron-based monitoring with alerting.131415## When to Use16**Trigger phrases:**17- "implementing file integrity monitoring with aide"18- "Configure AIDE (Advanced Intrusion Detection Environment) for file integrity mon"192021- When deploying or configuring implementing file integrity monitoring with aide capabilities in your environment22- When establishing security controls aligned to compliance requirements23- When building or improving security architecture for this domain24- When conducting security assessments that require this implementation2526## Prerequisites2728- AIDE installed on target Linux system (apt install aide / yum install aide)29- Root or sudo access for file system scanning30- Python 3.8+ with standard library3132## Steps3334```python35# Example: IOC detection36import re3738IOC_PATTERNS = {39 "ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",40 "domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",41 "hash_md5": r"\b[a-f0-9]{32}\b",42 "hash_sha256": r"\b[a-f0-9]{64}\b",43}4445def extract_iocs(text: str) -> dict:46 return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}47```48491. **Generate AIDE Configuration** — Create aide.conf with monitoring rules for critical directories (/etc, /bin, /sbin, /usr/bin, /boot)502. **Initialize Baseline Database** — Run aide --init to create the initial file integrity baseline513. **Run Integrity Check** — Execute aide --check to compare current state against baseline524. **Parse Change Report** — Extract added, removed, and changed files from AIDE output535. **Configure Automated Monitoring** — Generate cron job for scheduled integrity checks546. **Generate Compliance Report** — Produce structured report of all file changes with severity classification5556## Expected Output5758- AIDE configuration file (aide.conf)59- Baseline database creation status60- JSON report of file changes (added/removed/changed) with severity61- Cron job configuration for automated monitoring62## When NOT to Use6364- You need to test the implementation (use performing-* skills)65- Task is about configuring existing tools (use configuring-* skills)66- You need to analyze security events (use analyzing-* skills)67- Task is about building detection rules (use building-* skills)68- You don't have access to the target environment69- Task requires vendor-specific expertise (consult vendor docs)707172## Red Flags7374- Performing actions without explicit written authorization from the asset owner75- Testing against production systems without a defined scope and rules of engagement76- Acting on threat intelligence without validating source reliability77- Sharing classified or sensitive indicators without proper handling procedures78- Alerting threat actors to detection capabilities through visible response actions7980## Process81821. **Plan** — Define infrastructure requirements, security constraints, rollback strategy831. **Implement** — Configure resources, apply security best practices, test in staging841. **Deploy & Monitor** — Roll out to production, verify health checks, set up alerting8586## Verification8788- All steps executed successfully against a test environment before production use89- Output documented with screenshots or logs demonstrating expected behavior90- Results validated against known-good baselines or reference implementations91- Documentation complete enough for another analyst to reproduce findings9293## Anti-Rationalization Table9495| Rationalization | Reality |96|---|---|97| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |98| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |99| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |