PkgRadar

Package evidence

[email protected]

New Account With Lifecycle Hook: package first published 3 day(s) ago, 4 total version(s), has lifecycle hook

Trust signals

Why this verdict

PkgRadar discounts a release’s score when public reputation argues against novel malware. The verdict above already reflects these — the panel just explains what was applied.

Versions published
4
First published
Jun 2026
Publisher
xylon

Recommended action

Block this update

Static evidence trips multiple high-signal indicators. Quarantine the release until the publisher validates the change or you can rule out the indicators below.

Block this release in CIcurl · GitHub Actions

Fail the build when this package version is added or upgraded. Replace $PKGRADAR_TOKEN with a Pro / Team API key from your dashboard.

curl -fsS https://pkgradar.com/gate/npm \
  -H "Authorization: Bearer $PKGRADAR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"specs":["[email protected]"],"fail_on":"high"}'

GitHub Actions step:

- name: PkgRadar gate
  run: |
    curl -fsS https://pkgradar.com/gate/npm \
      -H "Authorization: Bearer ${{ secrets.PKGRADAR_TOKEN }}" \
      -H "Content-Type: application/json" \
      -d '{"specs":["[email protected]"],"fail_on":"high"}'
Publisherxylon
Artifact bytes19,047
Previous version1.0.2
Published2026-06-08T11:30:41.785Z
SHA-256574c0c6b7b51dcdd6e6b6f29fc9e53707c6f9f82136997f1845d0d3f2818d461

Why flagged

What the scanner saw

New Lifecycle Script Vs Previous: postinstall added in 1.0.3 vs 1.0.2: "node bin/yq-skills.js init"

Not observed: package install, lifecycle script execution, or sandbox execution. PkgRadar only inspects on-disk artifacts.

Availability ledger

available

high
Last checked
highRisk
45Score
1.0.3Version
Status history (1 event)
  1. newavailable · risk high · score 45 · status changed

Evidence

Static findings

2 static · 1 from release diff · showing high-signal first.

SeverityKindPathDetailPoints
highNew Lifecycle Script Vs Previouspackage.jsonpostinstall added in 1.0.3 vs 1.0.2: "node bin/yq-skills.js init"40
highNew Account With Lifecycle Hookpackage.jsonpackage first published 3 day(s) ago, 4 total version(s), has lifecycle hook25
Show all 3 findings (low-signal and informational)
SeverityKindPathDetailPoints
highNew Lifecycle Script Vs Previouspackage.jsonpostinstall added in 1.0.3 vs 1.0.2: "node bin/yq-skills.js init"40
highNew Account With Lifecycle Hookpackage.jsonpackage first published 3 day(s) ago, 4 total version(s), has lifecycle hook25
lowInstall-time lifecycle scriptpackage.jsonpostinstall="node bin/yq-skills.js init"5

Manifest

Package metadata

Scripts3
  • postinstallnode bin/yq-skills.js init
  • testecho "Error: no test specified" && exit 0
  • websitenode -e "const http = require('http'), fs = require('fs'), path = require('path'); http.createServer((req, res) => { let p = path.join(process.cwd(), 'website', req.url === '/' ? 'index.html' : req.url); fs.readFile(p, (err, data) => { if (err) { res.writeHead(404); res.end('Not Found'); } else { let ext = path.extname(p); let mime = ext === '.html' ? 'text/html' : ext === '.css' ? 'text/css' : ext === '.js' ? 'text/javascript' : ext === '.png' ? 'image/png' : 'text/plain'; res.writeHead(200, {'Content-Type': mime}); res.end(data); } }); }).listen(3000, () => console.log('Server running at http://localhost:3000'));"