Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-55182 — A modified and a little boosted exploit for CVE-2025-55182, React2Shell: Pre-authentication Remote Code Execution in React Server Packages | Kitploit
Tools/GitHubGitHub/mikethehash/cve-2025-55182
Vulnerability AnalysisExploitationWeb Application ExploitationLearning & EducationRemote Access Tool
GitHubmikethehash/cve-2025-55182

CVE-2025-55182

A modified and a little boosted exploit for CVE-2025-55182, React2Shell: Pre-authentication Remote Code Execution in React Server Packages

View Repository
8 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-55182 - React2Shell

A modified and boosted exploit for CVE-2025-55182 a pre-authentication Remote Code Execution in React Server version 19.0, 19.1.0, 19.1.1, and 19.2.0

The vulnerability spans the following:

  • react-server-dom-webpack
  • react-server-dom-parcel
  • react-server-dom-turbopack

Patch

Using the chunk references to retrieve prototype properties is fixed with this check:

root@kitploit:~
@@ -78,7 +80,10 @@ export function preloadModule<T>(
 
 export function requireModule<T>(metadata: ClientReference<T>): T {
   const moduleExports = parcelRequire(metadata[ID]);
-  return moduleExports[metadata[NAME]];
+  if (hasOwnProperty.call(moduleExports, metadata[NAME])) {
+    return moduleExports[metadata[NAME]];
+  }
+  return (undefined: any);
 }

Credits

Author: msanft - https://github.com/msanft/CVE-2025-55182

Date: 05/12/2025 - DD/MM/YY

Editor: MikeTheHash

Edit Date: 07/12/2025 - DD/MM/YY

Disclaimer: This content was published for educational purpose only

Use it at your own risk. I assume no liability for any misuse, damage, or legal consequences resulting from its use

Related

https://github.com/msanft/CVE-2025-55182/

https://x.com/maple3142

https://nvd.nist.gov/vuln/detail/CVE-2025-55182

Download Tool