
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
fastify-xss-filter
Advanced tools
Fastify plugin to set the X-XSS-Protection header.
You may know x-xss-protection as a xss filter middleware used in helmet. And you could use it as a middleware in fastify also. So why i made this plugin?
You may find the reason in benchmark result and wish you like it. :)
This plugin has passed all x-xss-protection test cases. And no difference in options.
Via npm:
npm i fastify-xss-filter
Via yarn:
yarn add fastify-xss-filter
const fastify = require('fastify');
const fastifyXssFilter = require('fastify-xss-filter');
const app = fastify();
app.register(fastifyXssFilter, {
// Your options
});
app.listen(3000, err => {
if (err) throw err;
});
This plugin has the same options as helmet.
Set report URI in header, you may find more detail here.
Force to set header for IE whos version under 9. Default is false
.
FAQs
Fastify plugin to set the X-XSS-Protection header
The npm package fastify-xss-filter receives a total of 0 weekly downloads. As such, fastify-xss-filter popularity was classified as not popular.
We found that fastify-xss-filter 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.