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.
optimizely
Advanced tools
Runs optimizely experiments in node using either jsdom or cheerio + native node-vm
Runs optimizely experiments in node using either jsdom (node-0.10 only, full-featured, resource-hungry) or cheerio+node-vm (0.10 and 0.12, simple, lightweight)
npm install optimizely --save
// jsdom
var optimizely = require('optimizely')('jsdom');
// node vm
var optimizely = require('optimizely')('node_vm');
optimizely.setOptimizely(optimizelyCode);
// req - http request
// callback – return path out of this middleware
var originalHtml = getFinalHtmlBeforeResponse();
optimizely(req, originalHtml, function(err, modifiedHtml, extras)
{
// only pass error if html isn't returned
if (err && !html)
{
return callback(err);
}
// extras.images – array of image-src;
// extras.cookies – cookie object;
// return modified html
callback(null, html);
});
In jsdom processor trimmed version of jQuery is used, which is provided by optimizely itself and bundled with the module. In turn node_vm processor is relying on augmented cheerio module.
Module oven is used for cookie handling and it's cookie jar instance is returned in callback.
Method extras.cookies.getCookieHeader()
could be used to get cookie header formated string
and extras.cookies.getCookies()
to get list of cookie objects.
Along with creating new cookies, optimizely adds images to track performed experiments, to make it slim and less opinionated,
list of images passed to callback (extras.images
) instead of modifying html in place.
FAQs
Runs optimizely experiments in node using either jsdom or cheerio + native node-vm
The npm package optimizely receives a total of 2 weekly downloads. As such, optimizely popularity was classified as not popular.
We found that optimizely demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.