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.
###Usage
src takes one hash parameter with url and expiry defined. Expiry is the number of seconds a value is non expired in Redis.
var src = require('src');
var cache = src(
{
url:'redis://user:password@example.com:9073/'
,expiry:2
}
);
Callbacks for set are optional
cache.set('key', 'value', [cb]);
get requires a callback
cache.get('key', function(err, value){
if(typeof value !== 'undefined')
console.log(value);
});
If the key has expired, err will not be used to determine this. Err will only be a non null value when an error is thrown from Redis.
If you want to delete a key from the cache explicity src provides this
functionality through cache.del
Callbacks are optional for del
cache.del('key', [cb]);
FAQs
Simple Redis Cache
We found that src 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.