Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

1371+ Articles
150+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-28318: SolarWinds Serv-U Uncontrolled Resource Consumption (DoS)
CVE-2026-28318: SolarWinds Serv-U Uncontrolled Resource Consumption (DoS)
SECURITYHIGHCVE-2026-28318

CVE-2026-28318: SolarWinds Serv-U Uncontrolled Resource Consumption (DoS)

SolarWinds Serv-U contains an unauthenticated DoS vulnerability allowing specially crafted POST requests with Content-Encoding: deflate to crash the service…

Dylan H.

Security Team

June 5, 2026
4 min read

Affected Products

  • SolarWinds Serv-U (unpatched versions)

Executive Summary

SolarWinds Serv-U is affected by an uncontrolled resource consumption vulnerability (CVE-2026-28318) that allows an unauthenticated remote attacker to crash the Serv-U service by sending a specially crafted HTTP POST request using the Content-Encoding: deflate header. The vulnerability has been added to the CISA Known Exploited Vulnerabilities (KEV) catalog, confirming active exploitation in the wild.

Organizations running SolarWinds Serv-U for managed file transfer should apply vendor patches immediately and review network logs for exploitation indicators.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-28318
VendorSolarWinds
ProductServ-U
TypeUncontrolled Resource Consumption (CWE-400)
Attack VectorNetwork
Authentication RequiredNone
User InteractionNone
CISA KEVYes — actively exploited

Technical Details

The flaw resides in Serv-U's handling of HTTP POST requests that use Content-Encoding: deflate. When a specially crafted request is received, the server attempts to decompress the body but fails to enforce resource limits, causing uncontrolled memory or CPU consumption that crashes the Serv-U process.

Attack characteristics:

POST /ServU-endpoint HTTP/1.1
Host: target.example.com
Content-Encoding: deflate
Content-Type: application/octet-stream
Content-Length: <crafted_value>
 
[malformed deflate payload]
  • No authentication is required to trigger the crash
  • The crash takes down the Serv-U service, disrupting file transfer operations
  • Service restart restores availability but does not protect against repeat attacks

Impact

Impact AreaDescription
AvailabilityComplete loss of Serv-U service until restarted
File Transfer DisruptionManaged file transfers fail during downtime
Operational ContinuityBusiness processes dependent on Serv-U are interrupted
DoS LoopAttackers can repeatedly crash the service to maintain denial-of-service

Affected Products

SolarWinds has confirmed the vulnerability in Serv-U. Consult the SolarWinds security advisory for the precise list of affected versions and the fixed build number.


Remediation

Step 1: Apply Vendor Patch

Visit the SolarWinds security advisory and upgrade Serv-U to the patched version. Federal agencies must comply with the CISA KEV remediation deadline.

Step 2: Network-Level Mitigation (Until Patch Applied)

# Block external access to Serv-U HTTP/HTTPS ports at the perimeter firewall
# Allow only known, trusted source IPs to reach Serv-U
 
# Example iptables rule to restrict access
iptables -A INPUT -p tcp --dport 443 -s <trusted_range> -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j DROP

Step 3: Enable Process Monitoring and Auto-Restart

Configure your monitoring stack to detect Serv-U crashes and alert immediately:

# PowerShell — monitor Serv-U service and restart on crash
$service = "Serv-U"
while ($true) {
    $status = (Get-Service -Name $service).Status
    if ($status -ne 'Running') {
        Write-EventLog -LogName Application -Source "MonitorScript" `
            -EventId 9001 -Message "Serv-U crashed — restarting" -EntryType Warning
        Start-Service -Name $service
    }
    Start-Sleep -Seconds 30
}

Step 4: Review Access Logs for Exploitation Attempts

# Search Serv-U HTTP logs for suspicious deflate-encoded POST requests
grep -i "content-encoding: deflate" /var/log/servu/access.log
grep -i "POST" /var/log/servu/access.log | grep -v "authenticated"

Detection Indicators

IndicatorMeaning
Repeated Serv-U service crashesActive exploitation attempts
HTTP POST with Content-Encoding: deflate from unknown IPsCandidate exploit traffic
High CPU/memory spike before crashResource exhaustion in progress
CISA KEV alert matching CVE-2026-28318Confirmed exploited vulnerability

CISA KEV Listing

This vulnerability is listed in the CISA Known Exploited Vulnerabilities catalog. Federal civilian executive branch (FCEB) agencies are required to remediate this vulnerability by the published deadline. All organizations should treat KEV-listed vulnerabilities as high-priority patching obligations.


References

  • NIST NVD — CVE-2026-28318
  • CISA KEV Catalog
  • SolarWinds Security Advisory (consult vendor portal for latest)

Related Reading

  • CVE-2024-27890: Arista EOS gNMI Auth Bypass (CVSS 9.6)
  • CVE-2024-27892: Arista EOS OpenConfig gNMI Set Bypass (CVSS 9.6)
#SolarWinds#Serv-U#DoS#CVE-2026-28318#CISA KEV

Related Articles

SolarWinds Web Help Desk RCE Vulnerability Added to CISA KEV

Critical deserialization vulnerability in SolarWinds Web Help Desk enables unauthenticated remote code execution. CISA confirms active exploitation.

2 min read

CVE-2022-0492: Linux Kernel Improper Authentication Vulnerability

A Linux kernel vulnerability in the cgroups v1 release_agent feature allows local attackers to escalate privileges and escape containers. Added to CISA KEV…

3 min read

CVE-2024-21182: Oracle WebLogic Server Unspecified Vulnerability

Oracle WebLogic Server contains an unspecified vulnerability allowing unauthenticated attackers network access via T3 and IIOP protocols, potentially exposing…

5 min read
Back to all Security Alerts