
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
canvg-browser
Advanced tools
A port of canvg that properly works in the browser as CommonJS module.
rgbcolor
and stackblur
are required in the CommonJS way, toonpm install canvg-browser --save
Put a canvas on your page:
<canvas id="canvas" width="200px" height="200px"></canvas>
var canvg = require('canvg-browser'),
canvas = document.getElementById('canvas');
var svg = '<svg height="100" width="100"><circle cx="50" cy="50" r="40" stroke="black" /></svg>';
var options = {
log: false,
ignoreMouse: true
};
canvg(canvas, svg, options);
You can call canvg without parameters to replace all svg images on a page. See the example.
There is also a built in extension method to the canvas context to draw svgs similar to the way drawImage works:
var c = document.getElementById('canvas');
var ctx = c.getContext('2d');
ctx.drawSvg(SVG_XML_OR_PATH_TO_SVG, dx, dy, dw, dh);
FAQs
Javascript SVG parser and renderer on Canvas, adapted for CommonJS
The npm package canvg-browser receives a total of 3,480 weekly downloads. As such, canvg-browser popularity was classified as popular.
We found that canvg-browser 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.