Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
fastify-floc-off
Advanced tools
Fastify plugin to opt out of Google's FLoC advertising-surveillance network
Fastify plugin to opt-out of Google's FLoC advertising-surveillance network
The fastify-floc-off
plugin sets the following response header and values to opt-out of Google's FLoC advertising-surveillance network:
Permissions-Policy: interest-cohort=()
You can read more about the issues surrounding Google's FLoC on EFF and Plausible Analytics.
Helmet (and in turn fastify-helmet) does not currently support Permissions-Policy
response header setting yet, so this plugin was created out of a need for an easy way to disable/opt-out of Google's FLoC network for systems at Yeovil District Hospital NHS Foundation Trust. This ensures both patients and staff accessing web applications at the hospital are not subject to Google's unsolicited tracking.
Install using npm
:
npm i fastify-floc-off
Or yarn
:
yarn add fastify-floc-off
For Fastify v3.x support, use fastify-floc-off@1.0.7
.
fastify-floc-off's test scripts use npm commands.
const Fastify = require("fastify");
const flocOff = require("fastify-floc-off");
const server = Fastify();
server.register(flocOff);
server.get("/", (req, res) => {
res.send("ok");
});
server.listen(3000);
Contributions are welcome, and any help is greatly appreciated!
See the contributing guide for details on how to get started. Please adhere to this project's Code of Conduct when contributing.
fastify-floc-off
is licensed under the MIT license.
FAQs
Fastify plugin to opt out of Google's Topics advertising-surveillance API
We found that fastify-floc-off demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.