
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
alt-session
Advanced tools
This module provides your apps with asynchronous Session API with data stored in Redis.
The asynchronous approach allows you to access session data on-demand, instead of saving-restoring it on every request regardless of whether data is actually being used or not. It is also super-friendly to asynchronous control flow libraries (like async).
npm install alt-session
Add middleware after cookie parser:
app.use(require('alt-session', {
redis: {
host: 'localhost',
port: 6390,
auth_pass: 'optional'
},
session: {
dbIndex: 0, // for selecting Redis database
tti: 300, // time to idle before session is removed from Redis, in seconds
prefix: 'sess', // custom key prefix for Redis storage
secure: true, // for setting cookie.secure option
domain: 'optional' // for custom cookie domain
}
}));
Store session data:
req.session.set('myKey', 'myValue', function(err) {
if (err)
return next(err);
// Success
});
Retrieve single key:
req.session.get('myKey', function(err, myValue) {
if (err)
return next(err);
// Success
});
Retrieve multiple keys:
req.session.mget(['myKey1', 'myKey2'], function(err, session) {
if (err)
return next(err);
// Success
// session.myKey1
// session.myKey2
});
Remove single value:
req.session.remove('myKey', function(err) {
if (err)
return next(err);
// Success
});
Remove all values:
req.session.remove(['myKey1', 'myKey2'], function(err) {
if (err)
return next(err);
// Success
});
Invalidate (clear):
req.session.invalidate(function(err) {
if (err)
return next(err);
// Success
});
Asynchronous Session API is generally incompatible with synchronous version.
If your library depends on certain keys being available in req.session
, you might want to add simple middleware like this:
// Retrieve stuff
app.use(function(req, res, next) {
req.session.get('myKey', function(value) {
req.session.myKey = value;
next();
});
});
// Include your other middleware and routes
// Persist stuff
app.use(function(req, res, next) {
req.session.set('myKey', req.session.myKey, next);
});
FAQs
Alternative API for Express sessions (backed by Redis)
The npm package alt-session receives a total of 1 weekly downloads. As such, alt-session popularity was classified as not popular.
We found that alt-session 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.