CVE-2026-86206, CVE-2026-86207 N-able N-central Authenticati... - #2892
Open
carlospolop wants to merge 1 commit into
Open
carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://rapid7.com/blog/post/ve-cve-2026-86206-cve-2026-86207-n-able-n-central-authentication-bypass-fixed Content Categories: Based on the analysis, this content was categorized under "Pentesting Web -> Proxy / WAF Protections Bypass, with cross-references to Login Bypass and Web API Pentesting; a suitable new page would be 'Reverse-Proxy/Backend Path Canonicalization and Header Parser Differential Bypasses'.". 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
Overview and impact. Rapid7 Labs researcher Stephen Fewer discovered two vulnerabilities in N-able N-central while investigating the earlier N-central authentication bypass CVE-2026-18577. When chained, CVE-2026-86206 and CVE-2026-86207 allow a remote unauthenticated attacker to bypass N-central's access controls, obtain a privileged SOAP session, and create a new attacker-controlled System administrator ...
🔧 Technical Details
Reverse-proxy/backend path canonicalization bypass: When a reverse proxy applies prefix-based access controls to the raw URI while a backend server canonicalizes semicolon path parameters before servlet dispatch, insert a semicolon into a protected path segment. For example,
/dms;/services/ServerUIdoes not match a proxy block for/dms/services, but Jetty normalizes it to/dms/services/ServerUIand dispatches it to the protected SOAP servlet. The same pattern can target alternate mappings such as/internal;/dms/services2/ServerUI2. The defensive lesson is that every proxy, parser, router, and authorization filter must canonicalize and authorize the same path representation.Forwarded-header parser differential and fail-open validation: A crafted quoted-pair such as
Forwarded: for="127.0.0.\1"can produce different values in different HTTP components. One parser may ...🤖 Agent Actions
Updated
src/pentesting-web/proxy-waf-protections-bypass.mdwith:Forwardedquoted-pair parser differentials and fail-open validation.Validation:
git diff --checkpassed.mdbook buildcould not run becausemdbookis not installed.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.