CVE-2025-55182 (React2Shell) New Detection Profiles for Burp... #1665
+50
−0
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
This post presents CVE-2025-55182 ("React2Shell"), a critical CVSS 10.0 RCE vulnerability (CWE-502: Deserialization of Untrusted Data) in the React Server Components (RSC) Flight protocol, heavily affecting Next.js applications. It also announces three dedicated Burp Bounty Pro detection profiles that provide safe, protocol-aware checks (in-band math-based PoC, Windows-specific variant, and out-of-band DNS/HTTP callback) for identifying vulnerable deployments.
How React Se...
🔧 Technical Details
Prototype-pollution RCE chain via React Server Components Flight protocol
The core trick is abusing the React Server Components Flight protocol’s reference syntax during deserialization to perform JavaScript prototype pollution and escalate to full RCE. An attacker sends malicious multipart/form-data where Flight references like
$1:__proto__:thencause the deserializer to assign a controlledthenproperty onObject.prototype. In the same payload, properties such as_formData.getare set to$1:constructor:constructor, exploiting the patternobject.constructor.constructorto obtain theFunctionconstructor. Usingprocess.mainModulefrom this execution context, the attacker callsprocess.mainModule.require('child_process').execSync('COMMAND'), running arbitrary OS commands under the Node.js process account. By throwing aNEXT_REDIRECTer...🤖 Agent Actions
Summary:
prototype-pollution-to-rce.mdwith a dedicated section on the React Server Components Flight prototype-pollution chain (CVE-2025-55182/React2Shell), covering the multipart Flight reference abuse,constructor.constructorpivot, andNEXT_REDIRECT-based exfiltration, plus a sample payload.Tests: Not run (documentation update only).
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.