
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).
redis-delete-pattern
Advanced tools
Delete a set of keys from a pattern in Redis
This was built to make removing a set of cached related items possible in one fell swoop.
Install the module with: npm install redis-delete-pattern
// Create a redis client
var redis = require('redis');
var redisDeletePattern = require('redis-delete-pattern');
var client = redis.createClient();
// Set up some data (pattern `model-{{id}}` in cache)
client.set('model-1234', 'hello');
client.set('model-5678', 'world');
// Fetch some data
client.get('model-1234', console.log); // null, 'hello'
client.get('model-5678', console.log); // null, 'world'
// Delete cached model data
redisDeletePattern({
redis: redis,
pattern: 'model-*'
}, function handleError (err) {
// Fetch our keys but find nothing
client.get('model-1234', console.log); // null, null
client.get('model-5678', console.log); // null, null
});
redis-delete-pattern
presents redisDeletePattern
as its module.exports
.
redisDeletePattern(params, cb)
Function that deletes list of keys that match a pattern from Redis
Object
, container for parameters
Function
, error-first, (err)
, callback function to handle errors
Error|null
, if there was an error, this will be itIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via grunt and test via npm test
.
Copyright (c) 2014 Uber Technologies, Inc.
Licensed under the MIT license.
FAQs
Delete a set of keys from a pattern in Redis
The npm package redis-delete-pattern receives a total of 357 weekly downloads. As such, redis-delete-pattern popularity was classified as not popular.
We found that redis-delete-pattern 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.