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.
avprobemeta
Advanced tools
Simple avprobe wrapper for node
$ npm install avprobemeta
you'll also need avprobe which is available via libav-tools
package on debian-like distros
$ apt-get install libav-tools
Windows users might want to check out the official static builds http://builds.libav.org/windows/
var avprobemeta = require('avprobemeta');
// Get container format & streams
avprobemeta('./test.mp4', function(err, meta) {
console.log(JSON.stringify(meta, null, ' '));
});
// Omit container format
avprobemeta('./test.mp4', { format: false }, function(err, meta) {
console.log(JSON.stringify(meta, null, ' '));
});
// Omit streams
avprobemeta('./test.mp4', { streams: false }, function(err, meta) {
console.log(JSON.stringify(meta, null, ' '));
});
// Specify avprobe binary path
avprobemeta('./test.mp4', {cmdPath: 'C:\\PROJEKTE\\libav\\bin\\avprobe'}, function(err, meta) {
console.log(JSON.stringify(meta, null, ' '));
});
MIT licensed
FAQs
simple avprobe wrapper for node
The npm package avprobemeta receives a total of 2 weekly downloads. As such, avprobemeta popularity was classified as not popular.
We found that avprobemeta 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
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.