
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
content-security-policy
Advanced tools
Middleware to add Content-Security-Policy header according to http://www.w3.org/TR/CSP/
$ npm install content-security-policy --save
$ npm install --dev
$ npm test
const csp = require('content-security-policy');
const express = require('express');
const app = express();
const cspPolicy = {
'report-uri': '/reporting',
'default-src': csp.SRC_NONE,
'script-src': [ csp.SRC_SELF, csp.SRC_DATA ]
};
const globalCSP = csp.getCSP(csp.STARTER_OPTIONS);
const localCSP = csp.getCSP(cspPolicy);
// This will apply this policy to all requests if no local policy is set
app.use(globalCSP);
app.get('/', (req, res) => {
res.send('Using global content security policy!');
});
// This will apply the local policy just to this path, overriding the globla policy
app.get('/local', localCSP, (req, res) => {
res.send('Using path local content security policy!');
});
app.listen(3000, () => {
console.log('Example app listening on port 3000!');
});
FAQs
Middleware to add Content-Security-Policy header.
The npm package content-security-policy receives a total of 1,747 weekly downloads. As such, content-security-policy popularity was classified as popular.
We found that content-security-policy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.