Port 9443 is the IBM WebSphere application HTTPS port and WSO2 Carbon management console port. WebSphere serves deployed apps over TLS on 9443. WSO2 products (API Manager, Identity Server) serve their admin console on 9443. Both are management-sensitive – restrict access appropriately for each service.
Port Number
9443
Protocol
TCP
Service
WebSphere App HTTPS / WSO2 Management
Range
IANA Registered (1024–49151)
Identify whether port 9443 is WebSphere or WSO2 from response headers
curl -kI https://host:9443/ 2>&1 | grep -i 'server\|wso2\|websphere'Test if WSO2 Carbon admin console is accessible (200 = exposed, should be restricted)
curl -k https://host:9443/carbon/ -o /dev/null -w '%{http_code}'Inspect TLS certificate to identify the service and check for self-signed certs
openssl s_client -connect host:9443 </dev/null 2>/dev/null | openssl x509 -noout -subject -issuerDetect service, audit TLS configuration, and identify the application
nmap -sV -p 9443 --script ssl-enum-ciphers,http-title targetcurl -k https://washost:9443/myapp/
WSO2: https://host:9443/carbon/ (admin login)
openssl s_client -connect host:9443 -servername hostPort 9443 was established as the WebSphere application HTTPS port in WebSphere 5.x (2003), paired with port 9080 for HTTP. WSO2 adopted port 9443 for its Carbon admin console starting with WSO2 Carbon 4.x (2012). The dual usage means port 9443 context depends entirely on which product is deployed. CVE-2022-29464 against WSO2 was one of the most impactful vulnerabilities of 2022, with CISA adding it to the Known Exploited Vulnerabilities catalog within a week of disclosure.
How do I check if my WSO2 is vulnerable to CVE-2022-29464?
Affected versions: WSO2 API Manager 2.2.0-4.0.0, Identity Server 5.2.0-5.11.0, Enterprise Integrator 6.2.0-6.6.0. Check: curl -k 'https://host:9443/fileupload/toolsAny' – if it returns 200 or a file upload form, you are vulnerable. Fix: update to the latest version, or apply the provided patch (WSO2-2021-1738). Immediate mitigation: block /fileupload/* in your reverse proxy.
Should WSO2 API gateway and admin console share port 9443?
No. Best practice: WSO2 admin console on port 9443 restricted to internal admin network. API gateway on ports 8243 (HTTPS) and 8280 (HTTP) exposed to API consumers through a load balancer. This separation means CVE-2022-29464 style admin-surface attacks cannot reach the internet-facing API gateway ports, and API traffic DDoS does not affect admin access.