1. Ports
  2. Port 1070

What Runs on This Port

Port 1070 is officially registered to GMRUpdateSERV, a service registered by Steve Kellogg with the Internet Assigned Numbers Authority (IANA). The service is available on both TCP and UDP.1

Beyond the name and registration, almost nothing is publicly documented about what GMRUpdateSERV actually does. The service appears to be related to software updates—programs exchanging data directly rather than through files or temporary storage—but its original purpose, the software it served, and whether anything still uses it today remain unclear.2

This is common in the registered ports range. Thousands of ports were claimed during the 1990s and early 2000s as companies and organizations requested official assignments for their protocols. Many of these services are no longer active, but their port numbers remain in the registry.

The Registered Ports Range

Port 1070 sits in the registered ports range (1024-49151). This is the middle tier of the port number system:

  • Well-known ports (0-1023): Reserved for common services like HTTP, SSH, and DNS. Require administrator privileges to use.
  • Registered ports (1024-49151): Assigned by IANA to specific services upon request. Anyone can technically use them, but the registry helps prevent conflicts.
  • Dynamic/ephemeral ports (49152-65535): Never assigned to services. Used by your operating system for temporary outbound connections.

The registered range exists because in the early Internet, organizations wanted official port numbers for their proprietary protocols. You'd submit a request to IANA, describe your service, and receive a port assignment. Port 1070 is one of these assignments—official, documented, but largely forgotten.

Why Ghost Ports Matter

The Internet is full of ports like 1070. Services that once mattered enough to request an official assignment but have since faded into obscurity. The protocol may be obsolete. The company may not exist. The software may not run on any modern system.

But the port number remains. Forever in the registry.

This creates an interesting problem: these ports are technically assigned, but functionally available. If you're building a new service and need a port, you probably shouldn't use 1070 out of respect for the registry—but realistically, nothing is listening on it anymore.

The ghost ports also serve as archaeology. Each one is evidence that someone, somewhere, built something they thought would last. They registered a port number the same way you'd reserve a domain name. They believed their protocol mattered enough to claim a piece of the Internet's infrastructure.

Most of them were wrong. But the ports remember.

Checking What's Listening

If you want to see whether anything is actually using port 1070 on your system:

On Linux or macOS:

sudo lsof -i :1070
netstat -an | grep 1070

On Windows:

netstat -ano | findstr :1070

If nothing returns, the port is quiet. If something appears, you've found either GMRUpdateSERV itself (unlikely) or another service using the port unofficially.

Security Considerations

Because port 1070 has no widely-used modern service, it's rarely monitored. Some security documentation suggests the port may be vulnerable to denial of service attacks if something is listening, but this is generic advice that applies to any service.2

The real risk is obscurity. If malware or an unauthorized service binds to port 1070, it might go unnoticed longer than if it used a well-known port. Network administrators don't usually monitor for GMRUpdateSERV traffic because they don't know what normal GMRUpdateSERV traffic looks like.

The Phonebook of a Ghost Town

The IANA port registry is like a phonebook for a town where half the residents moved away decades ago. The numbers are still listed. The names are still there. But when you call, nobody answers.

Port 1070 is one of those numbers. Officially assigned to GMRUpdateSERV. Registered in the 1990s or early 2000s. Purpose unclear. Usage unknown. Status: technically claimed, functionally empty.

And yet it sits there in the registry, waiting. Just in case someone, somewhere, still needs to update GMR—whatever that was.

Trang này có hữu ích không?

😔
🤨
😃
Port 1070: GMRUpdateSERV — The ghost in the registry • Connected