
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
node-canvas-graphics-wrapper
Advanced tools
A package that wraps a canvas element to a Java like Graphics object
A package that wraps an html canvas to Java Graphics object.
Here there is an example that draws a red line, an empty black rectangle and a green-filled circle:
var Graphics = require('node-canvas-graphics-wrapper')
// var canvas = $('#mycanvas')[0] // getting the canvas with jquery
var canvas = document.getElementById('mycanvas') // or with document.getElementById()
var viewport = { width: 1920, height: 1080 }
var g = Graphics.createFromCanvas(canvas, viewport)
g.setColor('#FF0000')
g.drawLine(100, 100, 200, 200)
g.setColor('#000000')
g.drawRect(100, 100, 50, 50)
g.setColor('#00FF00')
g.fillCircle(300, 300, 50)
FAQs
A package that wraps a canvas element to a Java like Graphics object
The npm package node-canvas-graphics-wrapper receives a total of 0 weekly downloads. As such, node-canvas-graphics-wrapper popularity was classified as not popular.
We found that node-canvas-graphics-wrapper 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.