Port / TCP
443HTTPS
HTTPS is TLS-wrapped HTTP: the default entry point for websites, APIs, and most modern application protocols including HTTP/2 and HTTP/3 over QUIC.
If it is internet-facing: Port 443 is routine where it is expected. Its risk lives in the service configuration behind it, not the port itself.
Exposure
Internet-facing
Transport
Encrypted by default
Risk if public
Low
Exposure verdict
Port 443 is meant to answer from the internet, and it protects the session itself. What remains is authentication strength, patch level, and rate limiting.
The session is protected from the first byte, so there is no plaintext phase for an on-path attacker to strip or read.
Assigned by IANA through a review process. On Unix systems a process needs root or the CAP_NET_BIND_SERVICE capability to bind here, which is why containers so often remap these to a higher port.
Grouped with the other web & proxies ports so a rule written for one can be checked against its neighbours.
What actually goes wrong
2 notes- Transport security is solved here; what remains is certificate lifecycle, protocol/cipher configuration, and the application behind it.
- HTTP/3 uses UDP 443, so a firewall that only opens TCP silently forces clients back to HTTP/2.
Recommended firewall rule
Allow it, and harden the service
This port is expected to answer from anywhere, so the firewall is not where its security comes from.
ufw
sudo ufw allow 443/tcpiptables
sudo iptables -A INPUT -p tcp --dport 443 -j ACCEPTCheck what is really there
Listening locally
sudo ss -tlpn 'sport = :443'The bind address is the answer that matters: 127.0.0.1 is local-only, 0.0.0.0 and :: mean every interface.
Listening (macOS)
sudo lsof -nP -iTCP:443 -sTCP:LISTENmacOS ships lsof rather than ss; this names the owning process and user.
From outside
nmap -sV -Pn -p 443 <host>A version probe confirms whether HTTPS is actually what answers, rather than trusting the number. Only scan hosts you are authorised to test.
Reachability
nc -vz <host> 443The quick yes/no when you only need to know whether a path exists through the firewall.