Open Kage-Yami opened 4 years ago
Hi @Kage-Yami
The src
value of a script
tag could be set to any external script, so gives us a lot of vectors to cover here:
We have a few options when it comes to supporting external scripts in CSP 3.0:
script-src
configAt the moment, I am leaning towards the first option, although I am unsure as to how frequently developers would want to use this feature.
To anyone reading this: Maybe add a 🎉 to this comment if you'd like to stick with the 1st option, 👍 if you would like to see the 2nd or 😄 if you'd like to see the 3rd. This should give us a better sense of developer needs, and then I will accept pull requests!
Hmm, fair points. Definitely agree that (3) is right out.
I'd vote for a (2b): default to (1), but have a config setting to enable (2) - idea being that if a dev is enabling it, they likely should've read the doco outlining the limitations; config setting can be verbose (e.g. hashLocalExternal
) to give devs enough pause to look up what it means if they encounter it enabled first.
I'm assuming that "Local-External" here is anything bundled (e.g. node_modules
imported into entry scripts), and "Web-External" is any explicitly specified <script>
blocks - though I can't think of where those might exist outside of a template (which I assume are not touched by csp-html-webpack-plugin
), so where would the risk be coming from?
I think we're on the same page here :)
If we're only including hashes from assets which are added as 'local-external' script srcs, then there is no risk there. Implementation steps here would be to:
The potential risk would be introduced if we were looking to add hashes for 'web-external' scripts too. Since we wouldn't be able to calculate the hashes for these assets as webpack emits them, the only way to add them to the csp policy would be to manually calculate them and add them to the policy, or download the files during webpack compilation and calculate the hashes then.
If you're open to opening a PR with what we've discussed here, I would be happy to review!
Unfortunately, hashing of external scripts is currently only supported in Chromium-based browsers (see web-platform-tests). This means that while hashed external scripts would load e.g. in Chrome and Edge, they'd get blocked in Firefox and Safari. Right now I'm not aware of any fallbacks you could use to make sure that these scripts still load in browsers not supporting hashes of external scripts.
We'd really like to use hashes for "external" scripts - ie our Webpack generated scripts. The only environment that matters to us is Chromium-based (Electron) and we have no truly external scripts.
Is there any way to get this to work currently? I guess no?
At the moment, I am leaning towards the first option, although I am unsure as to how frequently developers would want to use this feature.
Please don't require developers to manually assign hashes. They'll never do it.
The second option may be confusing to developers initially, but would provide far more security since it would actually get used.
The third option sounds like a significant security risk.
Users always have the option to use nonce
instead of hashes, so I think that covering every use case of hashes is less important than covering the most standard use case - which is wanting hashes for the Webpack generated assets.
(Though I should note that we can't get __webpack_nonce__
working, so nonce
doesn't provide as much security as one would hope. If we could get that working it would be a good alternative to hashing.)
I spent an hour or so trying to implement this earlier today, and whilst I'm totally unfamiliar with Webpack, I couldn't work out a way to do it – you need the final content of each JS file in order to hash it, but you then need to modify the HTML in order to insert the hashes.
assetEmitted
hook to calculate file hashes, you're too late to output the hashes anywherebeforeEmit
hook to modify the HTML, you don't yet know the contents of the JS files to produce the hashesOn the other hand, webpack-subresource-integrity seems like it does a similar kind of thing, so I suspect I'm just trying to use the wrong hooks.
Any movement on this? Few single issues could do as much to enhance security across a wide range of projects as this one.
@AnujRNair any thoughts on a path forward?
I hate to be a pain bumping this thread again, but I have to ask since I think this would be such a big deal for so many projects, any update on this? The status on the issue is both "In Review" and "In Development". Is this actually under development? Planned? Still under review?
I thought this PR has been out there for almost a year: https://github.com/slackhq/csp-html-webpack-plugin/pull/87
We would really like to see this feature implemented.
Hashes are supported on script-src
because it applies to both inline and elem scripts generically.
Hashes for elem scripts is not currently supported by CSP lv 3, which is what most browsers are currently at. Hashes currently only work for inline scripts and styling according to W3C specs.
Description
According to Mozilla's documentation, CSP3 allows for the
<hash-algorithm>-<base64-value>
attribute ofscript-src
to be applied for external scripts.As I understand it (based on reading #35 and trying out the plugin myself), hashes are not generated and included for external scripts, only inline scripts.
It'd be nice if they could be included for external scripts too. (Maybe via a default-
false
configuration option?)What type of issue is this?
Requirements