forked from ejpir/CVE-2025-55182-research
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 928 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "react-rsc-real-poc",
"version": "1.0.0",
"description": "CVE-2025-55182 Real POC using react-server-dom-webpack@19.0.0",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "node --conditions react-server --conditions webpack src/server.js",
"start:module": "node --conditions react-server --conditions webpack src/server-module-test.js",
"exploit": "node exploit-rce-v4.js",
"exploit:all": "node exploit-all-gadgets.js",
"exploit:module": "node exploit-module-load.js",
"exploit:indirect": "node exploit-indirect-rce.js",
"exploit:persistence": "node exploit-persistence.js",
"exploit:research": "node exploit-research.js"
},
"dependencies": {
"formidable": "^3.5.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-server-dom-webpack": "19.0.0"
},
"devDependencies": {
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}