
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
@rss/common-nodejs
Advanced tools
RSS shared Node.js library for cross cutting concerns.
$ npm install @rss/common-nodejs
TokenHelper must be initialized before calling methods on it.
const { env, TokenHelper } = require('@rss/common-nodejs');
TokenHelper.initialize({
tokenClientName: env.TOKEN_CLIENT_NAME,
tokenClientKey: env.TOKEN_CLIENT_KEY,
tokenServerURL: env.TOKEN_SERVER_URL,
redis: { host: env.REDIS_HOST } // Optional. Ff not provided it will use in memory NodeCache
});
const appClientToken = await TokenHelper.clientToken();
The RSS authentication strategy authenticates users using a token passed in on the Authorization request header.
The strategy requires a verify callback, which accepts a valid decoded token and calls done providing a user.
passport.use(new Strategy({ tokenHelper: TokenHelper }, (decodedToken, done) => {
// load user
const user = decodedToken;
return done(null, user);
}));
Use passport.authenticate(), specifying the 'rss' strategy, to
authenticate requests.
app.post('/api/sample', passport.authenticate('rss', { usage: 'CLIENT', session: false }), (req, res) => {
res.redirect('/');
});
This strategy takes an hash value with the following options
session - Options, save user to session - should be set to falseusage - Optional, what token type is acceptable. Default to all but can limit to [CLIENT] or [USER,CLIENT]FAQs
RSS shared Node.js library
We found that @rss/common-nodejs demonstrated a healthy version release cadence and project activity because the last version was released less than 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
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.