
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
csp-headers
Advanced tools
Connect middleware that allows you to define a csp policy as a JS object.
tl;dr
var connect = require('connect'),
csp = require('csp');
var app = connect();
var config = {
directives: {
'default-src': 'self'
}
};
var port = process.env.port || 3001;
var policy = createCSP(config);
var app = connect();
app.use(policy)
.listen(port);
Check your headers:
$ curl -I http://localhost:3001/
curl -I 127.0.0.1:3001
HTTP/1.1 200 OK
Content-Security-Policy: default-src 'self'
Accept-Ranges: bytes
Date: Fri, 19 Dec 2014 00:01:33 GMT
Cache-Control: public, max-age=0
Last-Modified: Thu, 18 Dec 2014 23:36:49 GMT
ETag: W/"504-3820769223"
Content-Type: text/html; charset=UTF-8
Content-Length: 1284
Connection: keep-alive
Firefox's Web Console includes a category for security messages can be somewhat helpful for debugging your csp policy:
FAQs
Connect middleware for adding csp policies to your site.
The npm package csp-headers receives a total of 1 weekly downloads. As such, csp-headers popularity was classified as not popular.
We found that csp-headers 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.