
Research
/Security News
Intercom’s npm Package Compromised in Ongoing Mini Shai-Hulud Worm Attack
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.
@fastify/accept-negotiator
Advanced tools
A negotiator for accept-* headers.
npm i @fastify/accept-negotiator
The module exports a function that you can use for negotiating an accept-* header such as accept-encoding. It takes 2 parameters:
negotiate(header, supportedValues)
header (string, required) - The accept-header, e.g. accept-encodingsupportedValues (string[], required) - The values, which are supportedconst negotiate = require('@fastify/accept-negotiator').negotiate
const encoding = negotiate('gzip, deflate, br', ['br'])
console.log(encoding) // 'br*
The module also exports a class that you can use for negotiating an accept-* header, and use caching for better performance.
Negotiate(supportedValues)
supportedValues (string[], required) - The values, which are supportedcache ({ set: Function; get: Function; has: Function }, optional) - A Cache-Store, e.g. ES6-Map or mnemonist LRUCacheconst Negotiator = require('@fastify/accept-negotiator').Negotiator
const encodingNegotiator = new Negotiator({ supportedValues: ['br'], cache: new Map() })
const encoding = encodingNegotiator.negotiate('gzip, deflate, br')
console.log(encoding) // 'br*
Licensed under MIT.
FAQs
a negotiator for the accept-headers
The npm package @fastify/accept-negotiator receives a total of 2,072,158 weekly downloads. As such, @fastify/accept-negotiator popularity was classified as popular.
We found that @fastify/accept-negotiator 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.

Research
/Security News
Compromised intercom-client@7.0.4 npm package is tied to the ongoing Mini Shai-Hulud worm attack targeting developer and CI/CD secrets.

Research
Socket detected a malicious supply chain attack on PyPI package lightning versions 2.6.2 and 2.6.3, which execute credential-stealing malware on import.

Research
A brand-squatted TanStack npm package used postinstall scripts to steal .env files and exfiltrate developer secrets to an attacker-controlled endpoint.