STIGhubSTIGhub
STIGsRMF ControlsCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • RMF Controls
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 1 hour ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to IBM AIX 7.x Security Technical Implementation Guide

V-215426

CAT II (Medium)

AIX package management tool must be used daily to verify system software.

Rule ID

SV-215426r991589_rule

STIG

IBM AIX 7.x Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-000366

Discussion

Verification using the system package management tool can be used to determine that system software has not been tampered with. This requirement is not applicable to systems not using package management tools.

Check Content

Check the root crontab for a daily job invoking the system package management tool to verify the integrity of installed packages.

From the command prompt, run the following command: 

# crontab -l | grep lppchk 
55 22 * * * /lppchk.sh # Daily LPP check script

If no such job exists, this is a finding.

Fix Text

Add a job to the root crontab invoking the following system package management tool to verify the integrity of installed packages and email the result to root user.

Run the following command to add the cron job: 
# crontab -e

Within crontab command, add the following daily job to the cron table, then save the change:
0 23 * * * /usr/bin/lppchk -c > /tmp/111 2>&1; sendmail root < /tmp/111