
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
get-pixels-updated
Advanced tools
An updated version of get-pixels that patches the CVE-2020-8175 security issue.
Given a URL/path, grab all the pixels in an image and return the result as an ndarray. Written in 100% JavaScript, works both in browserify and in node.js and has no external native dependencies.
Currently the following file formats are supported:
PNGJPEGGIFvar getPixels = require("get-pixels-updated")
getPixels("lena.png", function(err, pixels) {
if(err) {
console.log("Bad image path")
return
}
console.log("got pixels", pixels.shape.slice())
})
npm install get-pixels-updated
require("get-pixels-updated")(url[, type], cb(err, pixels))Reads all the pixels from url into an ndarray.
url is the path to the file. It can be a relative path, an http url, a data url, or an in-memory Buffer.type is an optional mime type for the image (required when using a Buffer)cb(err, pixels) is a callback which gets triggered once the image is loaded.Returns An ndarray of pixels in raster order having shape equal to [width, height, channels].
Note For animated GIFs, a 4D array is returned with shape [numFrames, width, height, 4], where each frame is a slice of the final array.
Original code from get-pixels, updated by sysollie to fix the CVE-2020-8175 security issue. Code used and relicensed under and in accordance with the MIT license (original | new).
FAQs
An updated version of get-pixels that patches the CVE-2020-8175 security issue.
We found that get-pixels-updated 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
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain