A Crash, Not a Shell SolarWinds Serv-U CVE-2026-28318#2384
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-serev-u-cve-2026-28318 Content Categories: Based on the analysis, this content was categorized under "Network Services Pentesting -> 80,443 - Pentesting Web Methodology -> Special HTTP headers / HTTP Content-Encoding abuse, or a new SolarWinds Serv-U subsection under Network Services/Web". 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
Bishop Fox analyzed CVE-2026-28318, an unauthenticated denial-of-service vulnerability in SolarWinds Serv-U. The issue affects Serv-U 15.5.4 and earlier; the released detector maps vulnerable builds to <= 15.5.4.108. The fix is Serv-U 15.5.4 Hotfix 1, build 15.5.4.125 or later. SolarWinds rated the issue CVSS 7.5 with vector
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, meaning the attack is network-reachable, low-complexity, unauthentic...🔧 Technical Details
Unsupported request-body encoding as a DoS trigger: when an HTTP service accepts a body with
Content-Encoding, unsupported encodings must be rejected before decompression. If rejection logic is incorrectly tied to an unrelated feature flag, such as whether HTTP compression is enabled, attackers may reach decompression code that developers assumed was unreachable. In this case, aPOSTrequest withContent-Encoding: deflateand any non-empty body reaches Serv-U's in-memory deflate decompressor and triggers an invalidfree(), causing allocator-detected heap corruption and a process abort.Patch-behavior oracle for safe vulnerability detection: instead of sending the crashing
deflaterequest, identify whether the fix exists by probing for the generic validation gate introduced by the patch. Send a benign unauthenticatedPOSTwith a short body andContent-Encoding: identity...🤖 Agent Actions
Using repo inspection plus source verification to place the content in the most relevant existing HackTricks page.
Done.
Updated:
src/network-services-pentesting/pentesting-web/special-http-headers.mdAdded:
Content-EncodingabuseContent-Encoding: identityWhy this location:
415validation gateI verified the file diff and basic formatting after the edit.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.