Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
An all in one solution for image manipulation for discord.js and eris devs.
A powerfull module that allow you to generate awesome images. This is an extension to discord-image-generation with a bunch more functions. :P
You can download it from npmjs.
First install it using either
npm i imange --save
or
yarn add imange
Now create a script in your discord.js project with the name of the image effect you want to have for eg: bobross.js
Now make your usual command handler stuff and then import imange and discord's Message Attachment as so:
const imange = require("imange")
const { MessageAttachment } = require("discord.js")
Then add the effect itself:
const img = await new imange.[[EFFECT]]().getImage(
message.author.displayAvatarURL(
{
dynamic: false,
format: "png"
}
)
);
const attach = new MessageAttachment(img, "[[EFFECT]].png");
return message.channel.send(attach);
Replace the [[EFFECT]] with the name of one of the effects stated below Eg:
const img = await new imange.Ad().getImage(
message.author.displayAvatarURL(
{
dynamic: false,
format: "png"
}
)
);
const attach = new Discord.MessageAttachment(img, "ad.png");
return message.channel.send(attach);
Result:
Some effects require more than one input for these you will have to give it more of them as such:
const img = await new imange.DoubleStonk().getImage(
message.author.displayAvatarURL(
{
dynamic: false,
format: "png"
},
message.mentions.users.first().displayAvatarURL(
{
dynamic: false,
format: "png"
}
)
const attach = new Discord.MessageAttachment(img, "ad.png");
return message.channel.send(attach);
Note how the DoubleStonk().getImage has been provided with two user avatars!
Result:
Type | No. images required | Effect Name |
---|---|---|
PNG | 1 | Ad |
PNG | 1 | Affect |
PNG | 1 | Approved |
PNG | 1 | Beautiful |
PNG | 1 | Biden |
PNG | 1 | Trump |
PNG | 1 | Bobross |
PNG | 1 | Captcha |
PNG | 1 | ConfusedStonk |
PNG | 2 | DoubleStonk |
PNG | 1 | NotStonk |
PNG | 1 | Stonk |
PNG | 1 | Facepalm |
PNG | 1 | Hitler |
PNG | 1 | Jail |
PNG | 1 | Karaba |
PNG | 2 | Kiss |
PNG | 1 | ConfusedStonk |
PNG | 1 | Mms |
PNG | 1 | Money |
PNG | 3 | Podium |
PNG | 1 | Poutine |
PNG | 1 | Rip |
PNG | 2 | Spank |
PNG | 1 | Tattoo |
PNG | 1 | Thomas |
PNG | 1 | Trash |
PNG | 1 | Wanted |
PNG | 1 | Crush |
PNG | 1 | Delete |
PNG | 1 | DiscordBlack |
PNG | 1 | DiscordBlue |
PNG | 2 | Bat Slap |
PNG | 2 | Bed |
PNG | 3 | Distracted |
TEXT | 0 | LisaPresentation |
GIF | 1 | Trigger |
GIF | 2 | Blink |
FILTERS | 1 | Blur |
FILTERS | 1 | Gay |
FILTERS | 1 | Greyscale |
FILTERS | 1 | Invert |
FILTERS | 1 | Lesbian |
FILTERS | 1 | Nonbinary |
FILTERS | 1 | Sepia |
FAQs
An all in one solution for image manipulation for discord.js and eris devs.
The npm package imange receives a total of 0 weekly downloads. As such, imange popularity was classified as not popular.
We found that imange 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 researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.