Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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 0 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.