01Remote Login (rlogin)tcp · iana-registered · risk 4/10
rlogin (Remote Login) provides remote command-line access to Unix systems, allowing users to log in over the network as if they were directly connected.
port 513 as Remote Login (rlogin) →2 entries are registered on port 513. It is a well-known port (0–1023) — assignments here are IANA's, and a service found on one is usually the service that was assigned it.
services registered on this number
2 transports in use
entries encrypted on the wire
2 of 2 iana-registered
| port | service | proto | category | risk | views |
|---|---|---|---|---|---|
| :513 | Remote Login (rlogin) | TCP | Remote Access | caution | 10.8k |
| :513 | Who Service | UDP | Security | caution | 8.1k |
rlogin (Remote Login) provides remote command-line access to Unix systems, allowing users to log in over the network as if they were directly connected.
port 513 as Remote Login (rlogin) →The WHO service on UDP port 513 is a legacy Unix command networking service designed to remotely return information about users logged into a host system. Often bundled with early UNIX systems, it provides details such as usernames, terminal locations, and login times. Due to its age and security concerns, its usage has largely declined with modern alternatives offering enhanced security.
port 513 as Who Service →The registry says what 513 is registered to. What is listening on it right now is decided by the host, and only the host can be asked. Each of these prints the process behind the socket.
ss -ltnp | grep ':513\b'lsof -nP -iTCP:513 -sTCP:LISTENnetstat -ano | findstr :513On Linux and Windows the process name comes back with the socket; on macOS lsof needs sudo to name a process that isn't yours. Match what it prints against the 2 entries above.
A port number is not a service. Anything may listen on 513 — what you actually met is decided by the host, not the registry. If a service is missing here, it belongs in the registry.
contribute an entry