Information
The mrouted daemon is an implementation of the multicast routing protocol.
Unless a system is specifically set up to act as a network router, it is recommended that the mrouted daemon is disabled to reduce the potential attack surface.
Solution
Run the following script to stop and disable mrouted
#!/usr/bin/ksh
DAEMONS="mrouted"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done
NOTE: mrouted is provided by bos.net.tcp.server_core so it is not possible to remove this fileset.