
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
snyk-remediation
Advanced tools
Given a snyk test JSON source, create all the possible remediation paths, and optionally return the best remediation (where all vulns is fixed).
Note that this project is developed using Node @ 6
The deployed version (in npm) is compatible with node@0.10 upwards.
const remediation = require('snyk-remediation');
const fixes = remediation(vulns);
// list of upgrades
console.log(fixes.upgrade);
// list of patches
console.log(fixes.patch);
// list of vulns that have no possible remediation
console.log(fixes.unresolved);
This can also be used on the command line to experiment with:
$ snyk test snyk/goof --json | node cli
{
"unresolved": [],
"upgrade": {
"errorhandler@1.2.0": {
"upgradeTo": "errorhandler@1.4.3",
"upgrades": [
"negotiator@0.4.9"
],
"vulns": [
"npm:negotiator:20160616"
]
},
…
Important the default usage (both on the CLI and in the module) is to return the best remediation.
There are no external dependencies, only to install the development dependencies and run npm test.
FAQs
Generates the remediation options for a vulnerability report
We found that snyk-remediation 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.