Polyfills trigger CSP errors when using reporting headers
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 142k
- Forks
- 32.4k
- Avg merge
- 2d 14h
- Merged PRs (30d)
- 351
Description
Link to the code that reproduces this issue
https://github.com/mderrick/nextjs-polyfill-csp-errors
To Reproduce
- Run
npm run build - Run
npm start - View in console that
evalhas not caused an error - View in developer tools, "Application" tab -> "Reporting API" that the CSP error has been reported.
Current vs. Expected behavior
Observe that the hash (in a client component) that is importing crypto is rendered fine because Next bundles in a polyfill.
Everything looks fine but now that crypto-browserify is included in the bundle there is also an eval which is against the CSP policy set in the middleware.
// The eval that is run:
Script.prototype.runInThisContext = function() {
return eval(this.code)
}
The eval is called within a try catch, so everything looks fine in the console - however, the browser still knows that eval was called and because of the CSP reporting headers in the middleware, the browser reports the CSP errors.
I would expect that we needn't run the eval on production at all given that it will always error - that way it never gets reported.
Provide environment information
Operating System:
Platform: darwin
Arch: arm64
Version: Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6030
Available memory (MB): 36864
Available CPU cores: 12
Binaries:
Node: 20.19.1
npm: 10.8.2
Yarn: N/A
pnpm: N/A
Relevant Packages:
next: 15.4.0-canary.61 // Latest available version is detected (15.4.0-canary.61).
eslint-config-next: N/A
react: 19.1.0
react-dom: 19.1.0
typescript: 5.8.3
Next.js Config:
output: N/A
Which area(s) are affected? (Select all that apply)
Headers, Error Handling
Which stage(s) are affected? (Select all that apply)
next start (local)
Additional context
No response
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the linked reproduction repository and run npm run build followed by npm start; inspect the middleware CSP policy and the client component importing crypto. Trace the Script.prototype.runInThisContext eval shown in the report and verify that production no longer reports the CSP violation while the crypto import still works.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, nextjs, react
- Domain
- security, web-dev
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 47/100