Uninstall openldap-servers Package
An XCCDF Rule
Description
The openldap-servers package is not installed by default on a Red Hat Enterprise Linux 7 system. It is needed only by the OpenLDAP server, not by the clients which use LDAP for authentication. If the system is not intended for use as an LDAP Server it should be removed.
Rationale
Unnecessary packages should not be installed to decrease the attack surface of the system. While this software is clearly essential on an LDAP server, it is not necessary on typical desktop or workstation systems.
- ID
- xccdf_org.ssgproject.content_rule_package_openldap-servers_removed
- Severity
- Low
- References
- Updated
Remediation - Anaconda Pre-Install Instructions
package --remove=openldap-servers
Remediation - Ansible
- name: Ensure openldap-servers is removed
package:
name: openldap-servers
state: absent
tags:
- CCE-80293-4
Remediation - Puppet
include remove_openldap-servers
class remove_openldap-servers {
package { 'openldap-servers':
ensure => 'purged',
}
Remediation - Shell Script
# CAUTION: This remediation script will remove openldap-servers
# from the system, and may remove any packages
# that depend on openldap-servers. Execute this
# remediation AFTER testing on a non-production
# system!