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.
Pixel avatar (npm-like) generator.
This module using strings as seed for generator. There are some examples:
Some random string (with 3 colors):
admin (with 2 colors):
username (with 2 colors and bigger cells):
npm install --save avatars
Basic promise usage:
var avatars = require('avatars');
avatars()
.then(image => {
image.write("./text.png", (err) => {
if (err) throw err;
console.log("Created text.png");
});
})
.catch(e => console.error(e));
Basic callback usage:
var avatars = require('avatars');
avatars(null, function(error, image) {
if (error) throw error;
image.write("./text.png", (err) => {
if (err) throw err;
console.log("Created text.png");
});
});
First argument of avatars() is parameters object for image generation. Avatars return image object that is created by Jimp module.
Parameter | Description |
---|---|
seed | Some string that will be used as a seed for randomizer (default: random string) |
width | Width of the output image in px (default: 256) |
height | Height of the output image in px (default: 256) |
pwidth | Width of the generated pattern in cells (default: 16) |
pheight | Height of the generated pattern in cells (default: 16) |
filename | Filename to write the image (default: null) |
var avatars = require('avatars');
var params = {
seed: 'Some Random Name', // can be username, login, id etc
width: 500,
height: 500,
pwidth: 15,
pheight: 15,
filename: './test.png' // file with this name will be created
};
avatars(params)
.then(image => {
console.log("Image created");
})
.catch(e => console.error(e));
FAQs
Pixel avatar generator
We found that avatars 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.