
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
react-static-plugin-csp-meta-tags
Advanced tools
A react-static plugin that adds Content-Security-Policy meta tags to your site
This plugin adds a CSP meta tag to your html files, adding hashes for inline script and style tags. You also have the option to pass a custom policy in, which will be merged with the auto generated.
In an existing react-static site run:
$ yarn add -D react-static-plugin-csp-meta-tags
Then add the plugin to your static.config.js:
export default {
plugins: [
[
'react-static-plugin-csp-meta-tags',
{
// example configuration
overwriteExisting: true,
hashingMethod: 'sha512'
}
]
]
};
The default policy currently looks like this:
{
'base-uri': ["'self'"],
'object-src': ["'none'"],
'script-src': ["'unsafe-inline'", "'self'", "'unsafe-eval'"],
'style-src': ["'unsafe-inline'", "'self'", "'unsafe-eval'"]
}
You can pass in your own policy and overwrite the default one.
In your static.config.js, you may optionally pass configuration options to the plugin.
overwriteExisting: booleanDefault value: false
Set to true to overwrite a, for whatever reason, already existing CSP meta tag.
hashExternal: booleanDefault value: false
Set to true to create hashes not just for inline script tags, but for external script files as well.
hashingMethod: 'sha256' | 'sha384' | 'sha512'Default value: sha256
policy: objectWith this you can pass in your own custom policy, which will overwrite the default policy. Note that you can pass in either a string or an array of strings to each key in the policy object.
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.