1. Ports
  2. Port 1135

Port 1135 has no official assignment. According to IANA's port registry, this number isn't reserved for any specific service or protocol.1 It's an empty address—available, unclaimed, waiting.

What This Port Is

Port 1135 belongs to the registered ports range (1024-49151). These ports are meant for specific applications and services that register with IANA, but not every number in this range has been claimed. Port 1135 is one of the unclaimed ones.2

This doesn't mean nothing uses it. It means nothing officially uses it.

Why Unassigned Ports Matter

When you see traffic on port 1135, you can't assume you know what it is. There's no RFC to reference, no well-known protocol to look up. It could be:

  • A custom application your organization built
  • Software that chose an arbitrary port number
  • Malware trying to hide in an unremarkable port
  • A misconfigured service

The lack of assignment means lack of context. You have to investigate.

How to Check What's Using Port 1135

On Linux or macOS:

sudo lsof -i :1135
sudo netstat -tulpn | grep 1135

On Windows:

netstat -ano | findstr :1135

These commands show you what process is listening on or connected to port 1135. Once you have a process ID, you can identify the application and decide whether it belongs there.

The Empty Spaces

The port registry has 65,535 numbers. Not all of them have names. Not all of them have purposes. Some, like port 1135, are just coordinates—available for whatever needs them.

But here's the thing: when a port has no official purpose, traffic on that port becomes interesting. Well-known ports like 80 or 443 carry expected traffic. Unassigned ports carry questions.

If you're monitoring your network and you see connections on port 1135, that's not necessarily bad. But it's worth knowing why. Because unlike port 22 or port 25, there's no default answer for what belongs there.

Security Considerations

Unassigned ports can be exploited precisely because they lack standard associations:

  • No expected behavior — Makes anomaly detection harder
  • No common filtering rules — Firewalls may not block them by default
  • Easy to overlook — Network monitoring tools focus on well-known ports

If you're not explicitly using port 1135, there's no reason it should be open. Close it.

Port 1135 sits between other registered ports, some assigned and some not:

  • Port 1119 — Battle.net (Blizzard Entertainment)
  • Port 1194 — OpenVPN
  • Port 1433 — Microsoft SQL Server

The gaps between these numbers—ports like 1135—represent space in the registry. Available. Unreserved. Quiet.

このページは役に立ちましたか?

😔
🤨
😃