Port 8530 is the WSUS (Windows Server Update Services) HTTP port for distributing Windows updates within an organization. Domain-joined machines download updates from the internal WSUS server on port 8530 instead of from Microsoft directly. Use port 8531 (HTTPS) for encrypted update delivery and certificate pinning.
Port Number
8530
Protocol
TCP
Service
Windows Server Update Services HTTP
Range
IANA Registered (1024–49151)
Check if WSUS URL uses HTTP (8530) or HTTPS (8531) – HTTP = vulnerable
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v WUServerTest WSUS HTTP connectivity (should be migrated to 8531)
curl -I http://wsus-server:8530/ClientWebService/client.asmxPowerShell: verify WSUS server port and SSL status
Get-WsusServer | Select-Object Name,PortNumber,IsSSLVerify TLS certificate is bound to WSUS HTTPS port
netsh http show sslcert ipport=0.0.0.0:8531wuauclt /detectnow /reportnow
Get-WsusUpdate -Approval Unapproved
GPO: Set intranet update service: http://wsus:8530WSUS was introduced with Windows Server 2003 SP1 (2005) as a free alternative to SMS/SCCM for patch management. Port 8530 (HTTP) and 8531 (HTTPS) were chosen because 80/443 were typically occupied by other IIS sites. The 'WSUS attack' was first demonstrated at BlackHat 2015 by Paul Stone and Alex Chapman, showing that HTTP WSUS allows arbitrary code execution via fake updates. Despite being known for nearly a decade, many organizations still use HTTP WSUS because the HTTPS migration requires certificate infrastructure and GPO changes.
How do I migrate WSUS from port 8530 to 8531 (HTTPS)?
Steps: (1) Obtain an internal CA certificate for the WSUS server hostname. (2) In IIS Manager, bind the cert to the WSUS Administration site on port 8531. (3) In the WSUS console: Server Options > Update Source > Require SSL (check the box). (4) Run: WsusUtil.exe configuressl wsus.domain.com. (5) Update Group Policy: Computer Config > Admin Templates > Windows Update > Specify intranet update service = https://wsus.domain.com:8531. (6) Force gpupdate on clients and verify in Windows Update logs.
Is WSUS still needed with Windows Update for Business?
Windows Update for Business (WUfB) delivers updates directly from Microsoft CDN over HTTPS – eliminating the local WSUS server and its attack surface entirely. WUfB is recommended for organizations that don't need: update approval workflows, offline/air-gapped networks, or bandwidth optimization via local caching. WSUS remains necessary for: disconnected environments, compliance requiring pre-approval, and SCCM-integrated patching.