1. Ports
  2. Port 1905

What Port 1905 Is

Port 1905 is unassigned. The Internet Assigned Numbers Authority (IANA) maintains the official registry of port numbers, and port 1905 appears there with no service name, no protocol, no owner.1

That's not a gap in our knowledge. That's the fact.

The Range It Lives In

Port 1905 falls in the registered ports range: 1024 through 49151.

Here's how the three ranges divide up the 65,535 available ports:

RangeNameWho Uses It
0–1023Well-known portsMajor protocols — HTTP, SSH, DNS, SMTP. Requires root/admin to bind.
1024–49151Registered portsApplications and services registered with IANA. Anyone can bind without special privileges.
49152–65535Dynamic/ephemeral portsTemporary connections. Your OS assigns these when your browser opens a connection.

Registered ports are the middle tier: structured enough to require registration, open enough that ordinary software can use them. Port 1905 sits in this range, registered to no one.

Any Unofficial Uses?

Nothing notable. Security databases sometimes flag port 1905 as "historically associated with malware" — but this label is applied to hundreds of unassigned ports and means only that, at some point, some piece of malicious software used this port as a communication channel. Malware uses whatever ports are convenient and unmonitored. An unassigned port is not inherently dangerous; it's just unclaimed.2

No documented legitimate application uses port 1905 as its standard port. If you're seeing traffic on this port, it's either ephemeral traffic that happened to land here, or something specific to your environment.

How to Check What's Using This Port

If you see activity on port 1905 on your system, here's how to identify the process:

Linux / macOS:

sudo lsof -i :1905

or

sudo ss -tlnp | grep 1905

Windows:

netstat -ano | findstr :1905

Then match the PID to a process in Task Manager, or:

Get-Process -Id (Get-NetTCPConnection -LocalPort 1905).OwningProcess

Why Empty Ports Exist

Port numbers were designed as a namespace, not a reservation system. IANA assigns ports when developers request them for real, deployed services. Nobody requested 1905. The alternative — pre-assigning all 65,535 ports before services existed to fill them — would have been planning for a future that couldn't be predicted.

The gaps are a feature of the system's honesty. The registry says what it knows. Port 1905 is a door that nobody has claimed.

Ήταν χρήσιμη αυτή η σελίδα;

😔
🤨
😃