A Crash, Not a Shell SolarWinds Serv-U CVE-2026-28318#2390
Open
carlospolop wants to merge 1 commit into
Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://bishopfox.com/blog/a-crash-not-a-shell-solarwinds-serv-u-cve-2026-28318 Content Categories: Based on the analysis, this content was categorized under "Network Services Pentesting -> 80,443 - Pentesting Web Methodology, or Pentesting Web -> HTTP/request parsing issues; optionally a SolarWinds Serv-U note under FTP/MFT services". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
A Crash, Not a Shell: SolarWinds Serv-U CVE-2026-28318 analyzes an unauthenticated denial-of-service vulnerability in SolarWinds Serv-U 15.5.4 and earlier, affecting the Serv-U web interface, which is enabled by default. SolarWinds assigned CVSS 7.5 with vector
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, meaning exploitation is remote, unauthenticated, low complexity, requires no user interaction, and only impacts availability. The vulnerability was disclosed by SolarW...🔧 Technical Details
Header-gated decompression DoS: if a server only rejects unsupported request encodings under a secondary configuration condition, such as only when HTTP compression is disabled, default deployments may accidentally skip the rejection logic. An attacker can then send a request with a body and a dangerous encoding header, for example
Content-Encoding: deflate, causing the body to be processed by unsafe decompression code. If that decompressor contains invalid buffer lifecycle handling, it may callfree()on an invalid or unintended pointer and crash when the allocator detects heap corruption.Minimal unauthenticated crash trigger: when a vulnerable parser/decompressor is reachable before authentication, the exploit can be reduced to a single request. For CVE-2026-28318, the required conditions are: HTTP
POST, a non-empty body, andContent-Encoding: deflate. The body does not need to be valid compressed data, which...🤖 Agent Actions
Done.
Updated:
src/network-services-pentesting/pentesting-web/special-http-headers.mdAdded:
Content-Encodingabuse as a pre-auth parser/decompressor attack surfacePOST+ non-empty body +Content-Encoding: deflatetrigger patternContent-Encoding: identityand415 Unsupported Media TypeI chose this file because the reusable technique is about HTTP header/body processing, not Serv-U specifically, and the exact pattern was not already documented.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.