
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
couchdb-jwt-store-redis
Advanced tools
This is a Redis-backed session store for use with CouchDB JWT. If performance matters to you, this session store is recommended over the built-in CouchDB store.
Install with CouchDB JWT using NPM:
npm i couchdb-jwt couchdb-jwt-store-redis --save
Pass to CouchDB JWT as a session store. Redis connection details can be passed as additional parameters.
var RedisStore = require("couchdb-jwt-store-redis");
var couchdbjwt = require("couchdb-jwt")({
session: {
store: RedisStore,
url: "redis://127.0.0.1:6379"
}
});
couchdbjwt.listen(3000);
You can pass in an existing Redis client from node_redis with the client parameter.
var RedisStore = require("couchdb-jwt-store-redis");
var client = redis.createClient();
var couchdbjwt = require("couchdb-jwt")({
session: {
store: RedisStore,
client: client
}
});
This store is also compatible with the CouchDB JWT cli.
couchdbjwt --session.store couchdb-jwt-store-redis
FAQs
A Redis-backed session store for couchdb-jwt.
We found that couchdb-jwt-store-redis 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.