Implement Periodic Execution of File Integrity
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-ubuntu1204-v110-8-3-2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Ubuntu1204 V110 8 3 2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-ubuntu1204-v110-8-3-2)More formats (shields.io, HTML) on the badges page.
---
name: cis-ubuntu1204-v110-8-3-2
description: "Implement Periodic Execution of File Integrity"
category: cis-os-hardening
version: "1.1.0"
author: cyberstrike-official
tags: [cis, ubuntu, 12.04, linux, logging, aide, file-integrity, cron, periodic]
cis_id: "8.3.2"
cis_benchmark: "CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0"
tech_stack: [ubuntu, linux]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 8.3.2 Implement Periodic Execution of File Integrity (Scored)
## Profile Applicability
- Level 2
## Description
Implement periodic file checking, in compliance with site policy.
## 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
### Using Command Line
Perform the following to determine if there is a `cron` job scheduled to run the aide check.
```bash
crontab -u root -l | grep aide
```
## Expected Result
```
0 5 * * * /usr/sbin/aide --check
```
## Remediation
### Using Command Line
Execute the following command:
```bash
crontab -u root -e
```
Add the following line to the crontab:
```bash
0 5 * * * /usr/sbin/aide --check
```
**Note:** The checking in this instance occurs every day at 5am. Alter the frequency and time of the checks in compliance with site policy.
## Default Value
By default, no periodic file integrity checking is configured.
## References
- CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0
## Profile
Level 2 - Scored
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!