Port 1080 — SOCKS proxy
TCP registered
What runs on port 1080
SOCKS4/5 proxy protocol, also what `ssh -D` opens.
Security considerations
An open SOCKS proxy will be found and abused. Bind it to localhost.
Checking whether something is listening
# Linux / macOS — what is bound to the port
sudo lsof -i :1080
sudo ss -lntp | grep :1080
# Windows
netstat -ano | findstr :1080
Get-NetTCPConnection -LocalPort 1080
# is it reachable from outside?
nc -zv example.com 1080
curl -v telnet://example.com:1080
Freeing the port
# find the process, then stop it
sudo lsof -ti :1080 | xargs kill # Linux / macOS
netstat -ano | findstr :1080 # note the PID, then:
taskkill /PID <pid> /F # Windows
Should this port be open to the internet?
Usually not. Expose it only if a specific external client needs it, and restrict by source address where you can.
Quick reference
| Port | 1080 |
| Protocol | TCP |
| Service | SOCKS proxy |
| Range | Registered (1024–49151) — any user process may bind |
Frequently asked questions
What is port 1080 used for?
SOCKS4/5 proxy protocol, also what `ssh -D` opens.
Is it safe to open port 1080?
An open SOCKS proxy will be found and abused. Bind it to localhost.
How do I check if port 1080 is open?
Locally, sudo lsof -i :1080 on macOS or Linux, or netstat -ano | findstr :1080 on Windows. From outside, nc -zv host 1080 tells you whether anything answers.
Why do I get "address already in use" on port 1080?
Another process is bound to it — often a previous run of your own program that did not exit cleanly. Find it with lsof -ti :1080 and stop it, or configure your application to use a different port.
Can I change the port this service uses?
Almost always yes, in the service's configuration. Moving off a default port reduces automated scan noise, but it is obfuscation rather than security — a real attacker scans all 65,535.