├── README.md ├── poc.py └── test-server ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── bun.lock ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/README.md -------------------------------------------------------------------------------- /poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/poc.py -------------------------------------------------------------------------------- /test-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/.gitignore -------------------------------------------------------------------------------- /test-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/README.md -------------------------------------------------------------------------------- /test-server/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/app/favicon.ico -------------------------------------------------------------------------------- /test-server/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/app/globals.css -------------------------------------------------------------------------------- /test-server/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/app/layout.tsx -------------------------------------------------------------------------------- /test-server/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/app/page.tsx -------------------------------------------------------------------------------- /test-server/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/bun.lock -------------------------------------------------------------------------------- /test-server/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/eslint.config.mjs -------------------------------------------------------------------------------- /test-server/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/next.config.ts -------------------------------------------------------------------------------- /test-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/package.json -------------------------------------------------------------------------------- /test-server/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/postcss.config.mjs -------------------------------------------------------------------------------- /test-server/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/public/file.svg -------------------------------------------------------------------------------- /test-server/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/public/globe.svg -------------------------------------------------------------------------------- /test-server/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/public/next.svg -------------------------------------------------------------------------------- /test-server/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/public/vercel.svg -------------------------------------------------------------------------------- /test-server/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/public/window.svg -------------------------------------------------------------------------------- /test-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanft/CVE-2025-55182/HEAD/test-server/tsconfig.json --------------------------------------------------------------------------------