Macos – How to close suspicious port 999 garcon, is it malware

macosnmapportSecurity

On Mac OSX, I ran the command
nmap localhost
and I found I have this suspicious open port:

999/tcp open garcon

Then I tried to see if there is an associated process, but nothing shows up with
lsof -i | grep 999.

Two questions:

  • Does any body know if this is could be a key-logger/trojan?
  • How can I close the port?

[Edit]
The right command is

sudo lsof -i :999

and then I can see the process

rpc.rquot 704 root 6u IPv4 0xc899fa4ad7097125 0t0 TCP *:garcon (LISTEN)

Now after reading http://linux.die.net/man/8/rpc.rquotad
I suspect that maybe is a port open by fuse4x, or fuse4x-kext

Best Answer

The name you see actually comes from /etc/services file which maps port numbers to well-known service names.

glad the lsof command worked.

Related Question