How to disable finger service in Solaris 8

solarisunix

I have a request from audit to remove finger service in Solaris 8 machine.

I try putting remark in /etc/inetd.conf and pkill -HUP it, but when i type finger it still there.

Best Answer

Typing finger on the local system will work even if the service is disabled. I believe it queries the utmp file directly. To test the service, however, try:

finger user@host

from another host (substituting an appropriate username and hostname, of course), or:

finger user@localhost

from the system you're testing. You should get a "connection refused" message.

By the way, it is good security practice to go ahead and disable all services that aren't needed.

Related Topic