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.
A cache that stores key-value pairs with a time limit for each entry.
npm install cache-zap
import CacheZap from 'cache-zap';
const cache = new CacheZap();
cache.set('foo', 'bar', 1000); // key, value, time in milliseconds
cache.get('foo'); // 'bar'
cache.size(); // 1
setTimeout(() => {
cache.get('foo'); // undefined
cache.size(); // 0
}, 1000);
Set a key-value pair with a time limit for the entry.
key
: The key of the entry.value
: The value of the entry.duration
: The duration in milliseconds for which the entry should be valid.Get the value of an entry.
key
: The key of the entry.Delete an entry.
key
: The key of the entry.Clear all entries.
Get the number of entries.
FAQs
A cache that stores key-value pairs with a time limit for each entry.
The npm package cache-zap receives a total of 1 weekly downloads. As such, cache-zap popularity was classified as not popular.
We found that cache-zap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.