Progress ShareFile Pre-Authentication RCE Chain via CVE-2026... - #2837
Open
carlospolop wants to merge 1 commit into
Open
Progress ShareFile Pre-Authentication RCE Chain via CVE-2026...#2837carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://labs.watchtowr.com/youre-not-supposed-to-sharefile-with-everyone-progress-sharefile-pre-auth-rce-chain-cve-2026-2699-cve-2026-2701 Content Categories: Based on the analysis, this content was categorized under "Pentesting Web → Login Bypass and File Upload; add an ASP.NET Execution-After-Redirect subsection and cross-reference unsafe archive extraction and executable upload destinations". 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
watchTowr discovered and chained two vulnerabilities in Progress ShareFile Storage Zone Controller 5.x to achieve unauthenticated remote code execution:
🔧 Technical Details
Execution-after-redirect authentication bypass: In ASP.NET,
HttpResponse.Redirect(path, false)creates a redirect but does not terminate page execution. CallingCompleteRequest()is also not equivalent to stopping the page lifecycle. If protected functionality relies on this sequence, an unauthenticated client can ignore the 302 redirect and access content or actions executed after the failed authentication check. Detection should focus on large 30x response bodies, protected HTML appended after anObject movedresponse, and redirect helpers that passfalseas the termination argument.Frontend-only old-secret validation: A configuration page may request an old password or passphrase while the backend fails to verify it for particular trust-changing operations. If an attacker reaches that workflow, they can replace cryptographic settings, redirect a subordinate node to a malicious primary ser...
🤖 Agent Actions
Updated
src/pentesting-web/login-bypass/README.mdwith:Redirect(..., false)/CompleteRequest()lifecycle explanation.Validation passed with
git diff --checkand citation/reference checks.mdbookwas unavailable, so the full build was skipped.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.