Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cacheman-redis-promise
Advanced tools
Extension of cacheman-redis that uses promises and is able to disable cache using stub-methods
Basically an extension of cacheman-redis module that uses promises and is able to disable caching without messing up all code.
$ npm install cacheman-redis-promise
var cache = require('cacheman-redis-promise')({host: '127.0.0.1', port: 6379})
cache.set('some key', 'hello there').then(function(data) {
console.log(data); // -> 'hello there'
return cache.get('some key');
}).then(function(data) {
console.log(data); // -> 'hello there' from cache.get
return cache.del('some key');
}).then(function() {
console.log('value deleted');
});
// Or you can use fetch to simplify common cache operations
// (like get, then check and then set if there is no value)
var fn = function() {
return 'hey there';
// Or you can also return a promise here
};
// fn will be executed only if there is no value under 'some key' key
// and its result will be put into cache under this key
// But if there was value under the key, it will be returned without executing fn
cache.fetch('some key', fn).then(function(data) {
console.log(data); // -> 'hey there'
});
FAQs
Extension of cacheman-redis that uses promises and is able to disable cache using stub-methods
We found that cacheman-redis-promise 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.