Rule ID
SV-45756r1_rule
Version
V1R12
CCIs
Unnecessary services should be disabled to decrease the attack surface of the system.
# ps -ef |grep xinetd If xinetd is not running, this check is not a finding. # grep -v "^#" /etc/xinetd.conf # grep disable /etc/xinetd.d/* |grep no If no active services are found, and the inetd daemon is running, this is a finding.
# rcxinetd stop; insserv -r xinetd
OR
# service xinetd stop ; chkconfig xinetd off