Vulnerability Discussion
Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.
Accordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.
Verifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This ensures the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DOD certificates for this purpose; however, the certificate used to verify the software must be from an approved certificate authority (CA).
Check
Verify that dnf always checks the GPG signature of repository metadata:
$ grep repo_gpgcheck /etc/dnf/dnf.conf /etc/yum.repos.d/*.repo
repo_gpgcheck=1
If "repo_gpgcheck" is not set to "1" in the global "/etc/dnf/dnf.conf" file, or if the option is missing or commented out, this is a finding.
If "repo_gpgcheck" is set to "0" in any of the "/etc/yum.repos.d/*.repo" files and the information system security officer (ISSO) lacks a documented requirement, this is a finding.
Note: Not all repositories support this feature.
Fix
Configure dnf to always check the GPG signature of repository metadata.
Add or update the following line in the [main] section of the /etc/dnf/dnf.conf file:
repo_gpgcheck=1
Remove any instances of "repo_gpgcheck=0" from any "/etc/yum.repos.d/*.repo" files.