Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
WSUS-RCE-Mitigation-59287 — Guía de respuesta rápida y script de auditoría para CVE-2025-59287 (RCE crítica en WSUS). | Kitploit
Tools/GitHubGitHub/esteban11121/wsus-rce-mitigation-59287
Vulnerability AnalysisConfiguration AuditingLearning & EducationIncident ResponseCurated Resources
GitHubesteban11121/wsus-rce-mitigation-59287

WSUS-RCE-Mitigation-59287

Guía de respuesta rápida y script de auditoría para CVE-2025-59287 (RCE crítica en WSUS).

View Repository
110 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

🚨 CRITICAL CYBERSECURITY ALERT: RCE in WSUS (CVE-2025-59287) 🚨

CREATOR AND CREDITS: (@esteban11121) This guide has been created to help the community quickly mitigate the vulnerability.

STATUS: Active Exploitation (In-the-Wild) Confirmed.

This is a Remote Code Execution (RCE) vulnerability affecting WSUS servers, allowing unauthenticated attackers to obtain SYSTEM privileges. Immediate Out-of-Band (OOB) patching action is required.

DetailValue
IdentifierCVE-2025-59287
CVSS Severity9.8 (Critical)
Attack VectorNetwork (Remote, unauthenticated execution)
Affected ServicesWindows Server Update Services (WSUS)
Required ActionOOB Patching and Reboot

🎯 SCOPE: Vulnerable Servers

ONLY Windows servers with the WSUS Server Role (Windows Server Update Services) ENABLED are at risk.

Windows Server VersionVulnerability Status
Server 2025Vulnerable
Server 2022Vulnerable
Server 2019Vulnerable
Server 2016Vulnerable
Server 2012 / 2012 R2Vulnerable

📝 STEP BY STEP: Urgent Mitigation and Patching Plan

The goal is to secure vulnerable systems before applying the OOB update.

PHASE I: Identification and Isolation (Immediate Action)

  1. Identify Servers: Confirm the exact list of all servers running the WSUS Role.

  2. Emergency Mitigation (If Patching is not Instantaneous):

    • Option A (Recommended): Block inbound traffic to the default WSUS ports at the host or network firewall level.
      • Ports to Block: TCP 8530 (HTTP) and TCP 8531 (HTTPS).
    • Option B: Temporarily disable the WSUS Server Role/Service.
  3. Verification: Confirm that ports 8530/8531 are no longer accessible from unauthorized sources.

PHASE II: Patch Preparation and Staging

  1. SSU (Servicing Stack Update) Verification:

    • CRITICAL: Ensure the latest Servicing Stack Update (SSU) applicable to the OS version is installed. An outdated SSU can cause patch installation failures.
  2. Download the Correct OOB KB:

    • Download the OOB (Out-of-Band) package from the Microsoft Update Catalog using the KB ID corresponding to the server version.
Windows Server VersionSecurity Update Package (KB ID)
Server 2025KB5070885
Server 2022KB5070884
Server 2019KB5070883
Server 2016KB5070882
Server 2012 R2KB5070881
Server 2012KB5070880

PHASE III: Installation and Final Verification

  1. Install the KB: Run the security update package.
  2. Reboot the System: The KB is cumulative and REQUIRES a REBOOT for the mitigation to be effective.
  3. Post-Patching Verification:
    • Confirm that the KB was installed correctly.
    • IMPORTANT: If Option A or B from Phase I was applied, revert the emergency mitigation and verify that the WSUS service returns to normal operation.

🔍 Additional Attack Vector Verification

If you need to confirm whether the vulnerable component is actually listening and accessible, run this command in PowerShell to verify the ports used by the WSUS web service:

root@kitploit:~
# Verification of WSUS listening ports (Attack vector)
Get-NetTCPConnection -State Listen | Where-Object { $_.LocalPort -eq 8530 -or $_.LocalPort -eq 8531 }
Download Tool