
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Takes as input the name of a picture. Outputs that picture with a picture of Jesus Christ and 'Jesus loves you!' overtop of it.
Jesusify is a module that takes the path to an image and outputs that same image with a picture of Jesus Christ and the words "Jesus loves you" overtop of it. It also allows one to pass a callback function that takes two parameters: an error (null if no errors occurred) and a JIMP image object (null if an error occurred). Here is an example of its use:
var jesusify = require('jesusify');
var path = require('path');
//Take in ./images/martinLuther.jpeg, jesusify it, write it out to
//./martinLuther.png and to ./martinLuther.jpeg.
jesusify.jesusify(path.join(__dirname, "images/martinLuther.jpeg"),
path.join(__dirname, "martinLuther.png"),
function (err, image) {
if (err) {
console.error("Received error: \"" + err + "\"");
return;
}
else {
image.write("martinLuther.jpeg");
}
}
);
Important updates for version 0.3.0:
Fixed bug where callbacks were firing before images were done writing.
FAQs
Takes as input the name of a picture. Outputs that picture with a picture of Jesus Christ and 'Jesus loves you!' overtop of it.
We found that jesusify 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.