Oracle Linux 8 STIG Version Comparison
Oracle Linux 8 Security Technical Implementation Guide
Comparison
There are 33 differences between versions v1 r8 (Oct. 25, 2023) (the "left" version) and v1 r10 (April 24, 2024) (the "right" version).
Check OL08-00-010473 was added to the benchmark in the "right" version.
This check's original form is available here.
Text Differences
Title
OL 8 must enable the hardware random number generator entropy gatherer service.
Check Content
Note: For OL versions 8.4 and above running with kernel FIPS mode enabled as specified by OL08-00-010020, this requirement is Not Applicable. Check that OL 8 has enabled the hardware random number generator entropy gatherer service. Verify the rngd service is enabled and active with the following commands: $ sudo systemctl is-enabled rngd enabled $ sudo systemctl is-active rngd active If the service is not "enabled" and "active", this is a finding.
Discussion
The most important characteristic of a random number generator is its randomness, namely its ability to deliver random numbers that are impossible to predict. Entropy in computer security is associated with the unpredictability of a source of randomness. The random source with high entropy tends to achieve a uniform distribution of random values. Random number generators are one of the most important building blocks of cryptosystems. The rngd service feeds random data from hardware device to kernel random device. Quality (nonpredictable) random number generation is important for several security functions (i.e., ciphers).
Fix
Start the rngd service and enable it with the following commands: $ sudo systemctl start rngd.service $ sudo systemctl enable rngd.service