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