Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
URL key-value cache.
Node.js >= 0.10
is required; < 4.0
will need an Object.assign
polyfill. To install, type this at the command line:
npm install urlcache
var UrlCache = require("urlcache");
var cache = new UrlCache(options);
Note: all instances of url
can be either a String
or a url.parse()
-compatible Object
.
Removes the url
key-value pair. If the url
argument is not defined, all pairs will be removed.
Returns the stored value of url
. If no such value exists, undefined
will be returned.
Returns the number of stored key-value pairs.
Stores value
(any type) into url
key. Optionally, define expiryTime
to override options.expiryTime
.
cache.set("url", {"key":"value"});
cache.get("url"); //=> {"key":"value"}
cache.set("url", new Promise(function(resolve, reject) {
// set value after some delayed event
setTimeout(function() {
resolve("value");
}, 500);
});
Promise.resolve(cache.get("url")).then(function(value) {
console.log(value); //=> "value"
});
Type: Object
Default value: see urlobj.parse() options
A map of protocol default ports for options.normalizeUrls
.
Type: Number
Default value: Infinity
The number of milliseconds in which a cached value should be considered valid.
Type: Boolean
Default value: true
When true
, will remove unnecessary URL parts in order to avoid duplicates in cache.
Type: Boolean
Default Value: true
When true
, will remove #hashes
from URLs. They are most likely not useful to you because they are local to the document that contains them.
.length()
and removed Object.assign()
polyfillPromise
-based APIoptions.defaultPorts
, more testsFAQs
URL key-value cache.
The npm package urlcache receives a total of 9,940 weekly downloads. As such, urlcache popularity was classified as popular.
We found that urlcache 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.