TCP port 8443 is a common alternative HTTPS port, often used for management consoles, developer tools, and application servers.
A port is a transport layer number used together with an IP address and a protocol such as TCP or UDP to direct traffic to the correct service on a host.
A server process binds a socket to a port and listens, while a client typically chooses an ephemeral source port for outbound connections.
The combination of source and destination IP addresses, source and destination ports, and the transport protocol uniquely identifies a flow so the operating system can keep many conversations separate.
Firewalls, NAT, and scanners talk about ports because the destination port is the stable rendezvous point that exposes a service to the network.
It usually behaves like HTTPS on 443: the client connects from an ephemeral source port, completes a TCP handshake, performs a TLS handshake with certificate validation, and then exchanges HTTP requests and responses inside the encrypted channel.
The reason this port matters is practical: products sometimes put a privileged admin UI on 8443, separate from the public site on 443, and those interfaces may have default credentials or weaker hardening.
If 8443 is reachable, treat it as a first class web exposure.
Verify who can access it, ensure modern TLS and strong authentication, and do not rely on security controls that only cover standard ports.