Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@npmcorp/blankie
Advanced tools
A CSP plugin for hapi.
This plugin depends on scooter to function.
To use it:
var Hapi = require('hapi');
var Blankie = require('blankie');
var Scooter = require('scooter');
var server = new Hapi.Server();
server.register([Scooter, {
register: Blankie,
options: {} // specify options here
}], function (err) {
if (err) {
throw err;
}
server.start();
});
Options may also be set on a per-route basis:
var Hapi = require('hapi');
var Blankie = require('blankie');
var Scooter = require('scooter');
var server = new Hapi.Server();
server.route({
method: 'GET',
path: '/something',
config: {
handler: function (request, reply) {
reply('these settings are changed');
},
plugins: {
blankie: {
scriptSrc: 'self'
}
}
}
});
Note that this setting will NOT be merged with your server-wide settings.
You may also set config.plugins.blankie
equal to false
on a route to disable CSP headers completely for that route.
childSrc
: Values for child-src
directive.connectSrc
: Values for the connect-src
directive. Defaults 'self'
.defaultSrc
: Values for the default-src
directive. Defaults to 'none'
.fontSrc
: Values for the font-src
directive.formAction
: Values for the form-action
directive.frameAncestors
: Values for the frame-ancestors
directive.frameSrc
: Values for the frame-src
directive.imgSrc
: Values for the image-src
directive. Defaults to 'self'
.manifestSrc
: Values for the manifest-src
directive.mediaSrc
: Values for the media-src
directive.objectSrc
: Values for the object-src
directive.oldSafari
: Force enabling buggy CSP for Safari 5.pluginTypes
: Values for the plugin-types
directive.reflectedXss
: Value for the reflected-xss
directive. Must be one of 'allow'
, 'block'
or 'filter'
.reportOnly
: Append '-Report-Only' to the name of the CSP header to enable report only mode.reportUri
: Value for the report-uri
directive. This should be the path to a route that accepts CSP violation reports.sandbox
: Values for the sandbox
directive. May be a boolean or one of 'allow-forms'
, 'allow-same-origin'
, 'allow-scripts'
or 'allow-top-navigation'
.scriptSrc
: Values for the script-src
directive. Defaults to 'self'
.styleSrc
: Values for the style-src
directive. Defaults to 'self'
.FAQs
a content security policy plugin for hapi
We found that @npmcorp/blankie demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers 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
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.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.