Uninstall gssproxy Package
An XCCDF Rule
Description
Thegssproxy
package can be removed with the following command:
$ sudo yum erase gssproxy
warning alert: Warning
This rule is disabled on Red Hat Virtualization Hosts and Managers, it will report not applicable.
RHV uses NFS storage, which has dependency on gssproxy.
Rationale
gssproxy
is a proxy for GSS API credential handling.
- ID
- xccdf_org.ssgproject.content_rule_package_gssproxy_removed
- Severity
- Medium
- References
- Updated
Remediation Templates
An Ansible Snippet
- name: Ensure gssproxy is removed
package:
name: gssproxy
state: absent
tags:
- DISA-STIG-RHEL-08-040370
script:kickstart
package remove gssproxy
A Puppet Snippet
include remove_gssproxy
class remove_gssproxy {
package { 'gssproxy':
ensure => 'purged',
}
}
script:bootc
dnf remove gssproxy
A Shell Script
# CAUTION: This remediation script will remove gssproxy
# from the system, and may remove any packages
# that depend on gssproxy. Execute this
# remediation AFTER testing on a non-production
# system!