OpenSSF/OSV advisory MAL-2026-5492 confirms this npm version as malicious. package.json declares `"postinstall": "node scripts/script.js"`, causing scripts/script.js to run automatically on every `npm install`. That file is the package's only functional code and is heavily obfuscated (obfuscator.io string-array with a 242-entry rotated table, RC4 decoder `String.fromCharCode(l.charCodeAt(t) ^ n[(n[r]+n[o])%256])`, control-flow flattening, webpack-bundled across 5 modules requiring...
Source
OpenSSF Malicious Packages via OSV
Summary
Malicious code in xnder-wrapper-module (npm)
Details
package.json declares `"postinstall": "node scripts/script.js"`, causing scripts/script.js to run automatically on every `npm install`. That file is the package's only functional code and is heavily obfuscated (obfuscator.io string-array with a 242-entry rotated table, RC4 decoder `String.fromCharCode(l.charCodeAt(t) ^ n[(n[r]+n[o])%256])`, control-flow flattening, webpack-bundled across 5 modules requiring path/os/fs/child_process and an HTTP client). The decoded flow constructs a URL via string concatenation tricks (`repeat('.')`, `concat('.')`), performs an HTTPS GET, writes the response body to a file under `os.tmpdir()` via `fs.writeFileSync(..., {flag:'w+'})`, and then runs `execSync(..., {windowsHide:true, cwd: os.tmpdir()})` against the dropped file — the standard fetch/drop/execute dropper shape with a sandbox-evasion flag. The package ships no other functionality; the README explicitly tells users the payload is unreviewed and recommends running it only inside a VM/Docker. Installing this package on a default `npm install` runs attacker-controlled code on the developer's machine.
## Source: ghsa-malware (4d68068055d711593139864c52e7ccec4dd81369467be5d9ba6d30d47fd6e507) Any computer that has this package installed or running should be considered fully compromised. All secrets and keys stored on that computer should be rotated immediately from a different computer. The package should be removed, but as full control of the computer may have been given to an outside entity, there is no guarantee that removing the package will remove all malicious software resulting from installing it.
Decision reason
OSV/OpenSSF confirms xnder-wrapper-module@1.0.0 as malicious package MAL-2026-5492. Malicious code in xnder-wrapper-module (npm)