Port 7002 is the default Oracle WebLogic managed server SSL port. While port 7001 hosts the admin server, managed servers in a WebLogic cluster typically use port 7002 for application traffic. Subject to the same deserialization vulnerabilities as port 7001 – restrict to internal networks and apply patches promptly.
Port Number
7002
Protocol
TCP
Service
Oracle WebLogic Managed Server
Range
IANA Registered (1024–49151)
Check TLS configuration on WebLogic managed server port
openssl s_client -connect host:7002 -servername host </dev/null 2>&1 | grep -E '(Protocol|Cipher|subject)'Test basic HTTPS connectivity to managed server
curl -sk https://host:7002/ -o /dev/null -w '%{http_code}'Audit TLS versions and cipher suites on WebLogic SSL port
nmap -sV -p 7002 --script ssl-enum-ciphers targetcurl -k https://host:7002/app/
nmap -p 7002 --script ssl-enum-ciphers target
wlst.sh: connect('admin','pass','t3s://host:7002')Port 7002 has been the WebLogic managed server SSL port since WebLogic 8.x (early 2000s). In WebLogic's architecture, the admin server (7001) deploys and monitors applications on managed servers (7002+). Clustered deployments use sequential ports (7003, 7004, etc.) for additional managed servers. The separation was designed for operational clarity but provides no security isolation – all ports share the same vulnerable codebase.
Can I secure port 7002 by just enabling TLS?
TLS protects against network sniffing but does NOT prevent exploitation. The T3S protocol (T3 over TLS) on port 7002 carries the same deserialization payloads as plain T3 on 7001. You need: WAF blocking exploit paths, connection filters restricting source IPs, disabled T3S from external networks, and current Critical Patch Updates. TLS is necessary but not sufficient.