Skip to main content
Back to Home

Network Port: 8443

Network Port Reference Guide

Registered Service Name

HTTPS Alternate / Web Admin

Transport Protocol

TCP

Functional Overview

Port 8443 is widely used as an alternative port for HTTPS SSL/TLS encrypted traffic, web application admin consoles, and Kubernetes API servers.

Security Risks & Vulnerabilities

Often used to host sensitive management interfaces (Plesk, Tomcat, Kubernetes API). Weak passwords or unpatched software allow remote admin takeover.

How to audit network port status

1. Scan Open Ports: Use our Port Scanner utility to verify if this port is actively listening on your host.

2. Verify Encryption: Audit the service layer to confirm SSL/TLS is protecting transmission payload.

3. Hardening Rules: Apply the firewall instructions below to shut down unauthorized inbound ports.

UFW Firewall Rules

Allow Command

sudo ufw allow 8443/tcp

Block Command

sudo ufw deny 8443/tcp

iptables Firewall Rules

Allow Command

sudo iptables -A INPUT -p tcp --dport 8443 -j ACCEPT

Block Command

sudo iptables -A INPUT -p tcp --dport 8443 -j DROP