├── .gitignore ├── Dockerfile ├── README.md ├── app ├── main.js ├── package-lock.json └── package.json ├── docker-compose.yml └── exploit ├── index.html ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tools -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/README.md -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/app/main.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/app/package.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exploit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/exploit/index.html -------------------------------------------------------------------------------- /exploit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JorianWoltjer/nodejs-file-write-rce/HEAD/exploit/main.py -------------------------------------------------------------------------------- /exploit/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pwntools --------------------------------------------------------------------------------