mukul975/anthropic-cybersecurity-skills

implementing-file-integrity-monitoring-with-aide

Configures AIDE (Advanced Intrusion Detection Environment) for file integrity monitoring on Linux, covering baseline database creation, scheduled integrity checks via cron, change detection, and alerting on unauthorized modifications.

First seen Apr 20, 2026

Installation

$ npx skills add mukul975/anthropic-cybersecurity-skills --skill implementing-file-integrity-monitoring-with-aide

Summary

  • Configures AIDE (Advanced Intrusion Detection Environment) for file integrity monitoring on Linux, covering baseline database creation, scheduled integrity checks via cron, change detection, and alerting on unauthorized modifications.
  • Use when setting up host-based file integrity monitoring, detecting unauthorized file changes, or meeting compliance requirements for FIM on Linux systems.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mukul975/anthropic-cybersecurity-skills · top by installs.

npx skills add mukul975/anthropic-cybersecurity-skills

Browse all from mukul975/anthropic-cybersecurity-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 32.4K
License LICENSE
Default branch main
Open issues 20
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0
LicenseApache-2.0
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,578 B
  • docs SUMMARY.md 446 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 54 installs

SKILL.md

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

  • 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

  1. Generate AIDE Configuration — Create aide.conf with monitoring rules for critical directories (/etc, /bin, /sbin, /usr/bin, /boot)
  2. Initialize Baseline Database — Run aide --init to create the initial file integrity baseline
  3. Run Integrity Check — Execute aide --check to compare current state against baseline
  4. Parse Change Report — Extract added, removed, and changed files from AIDE output
  5. Configure Automated Monitoring — Generate cron job for scheduled integrity checks
  6. 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