Verify that filesystem integrity checking is scheduled via cron to detect unauthorized changes
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-ubuntu1404-v210-1-3-2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Ubuntu1404 V210 1 3 2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-ubuntu1404-v210-1-3-2)More formats (shields.io, HTML) on the badges page.
---
name: "CIS Ubuntu 14.04 LTS - 1.3.2 Ensure filesystem integrity is regularly checked"
description: "Verify that filesystem integrity checking is scheduled via cron to detect unauthorized changes"
category: "cis-os-hardening"
version: "2.1.0"
author: "cyberstrike-official"
tags:
- cis
- ubuntu
- ubuntu-14.04
- level-1
- scored
- integrity
cis_id: "1.3.2"
cis_benchmark: "CIS Ubuntu Linux 14.04 LTS Benchmark v2.1.0"
tech_stack:
- ubuntu
- linux
cwe_ids: []
chains_with:
- cis-ubuntu1404-v210-1-3-1
prerequisites:
- cis-ubuntu1404-v210-1-3-1
severity_boost: "medium"
---
# 1.3.2 Ensure filesystem integrity is regularly checked (Scored)
## Profile Applicability
- Level 1 - Server
- Level 1 - Workstation
## Description
Periodic checking of the filesystem integrity is needed to detect changes to the filesystem.
## Rationale
Periodic file checking allows the system administrator to determine on a regular basis if critical files have been changed in an unauthorized fashion.
## Audit Procedure
Run the following commands to determine if there is a cron job scheduled to run the aide check:
```bash
crontab -u root -l | grep aide
grep -r aide /etc/cron.* /etc/crontab
```
Ensure a cron job in compliance with site policy is returned.
## Expected Result
A cron job entry for AIDE should be returned showing scheduled integrity checks.
## Remediation
Run the following command:
```bash
crontab -u root -e
```
Add the following line to the crontab:
```
0 5 * * * /usr/bin/aide --config /etc/aide/aide.conf --check
```
## Default Value
No AIDE cron job is configured by default.
## Notes
The checking in this recommendation occurs every day at 5am. Alter the frequency and time of the checks in compliance with site policy.
## References
- CIS Controls: 3.5 Use File Integrity Tools For Critical System Files
## Profile
- Level 1 - Server
- Level 1 - Workstation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!