<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Michael Kayode Onyekwere</title>
    <description>The latest articles on DEV Community by Michael Kayode Onyekwere (@michael_onyekwere).</description>
    <link>https://dev.to/michael_onyekwere</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3811816%2F04986db6-d6fd-41d5-a2a5-be996dc4580e.png</url>
      <title>DEV Community: Michael Kayode Onyekwere</title>
      <link>https://dev.to/michael_onyekwere</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/michael_onyekwere"/>
    <language>en</language>
    <item>
      <title>Four iteration rounds on a security scanner I run, all of them visible. Here is what the loop actually looks like.</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Thu, 21 May 2026 15:04:52 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/four-iteration-rounds-on-a-security-scanner-i-run-all-of-them-visible-here-is-what-the-loop-198b</link>
      <guid>https://dev.to/michael_onyekwere/four-iteration-rounds-on-a-security-scanner-i-run-all-of-them-visible-here-is-what-the-loop-198b</guid>
      <description>&lt;h1&gt;
  
  
  Four iteration rounds on a security scanner I run, all of them visible. Here is what the loop actually looks like.
&lt;/h1&gt;

&lt;p&gt;This is a worked example of running a continuous security scanner on a public surface and being wrong, in both directions, in close succession. The scanner is AgentScore, which scans MCP packages on npm and publishes a public security record. Over four days in mid-May 2026 it went through three corrections: an over-flagged class, a too-broad mitigator pass that produced a false negative on a known-credential-leak package, and a fresh sample-check that uncovered new sanitiser patterns we had not yet recognised. Each correction is in the public changelog. None of them was silent.&lt;/p&gt;

&lt;p&gt;The point of the post is the loop, not the resolution.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the data looked like on 2026-05-15
&lt;/h2&gt;

&lt;p&gt;A class-tracker counts how many MCP packages have HIGH &lt;code&gt;command_injection&lt;/code&gt; findings in a rolling 7-day window. Mid-April that number was a handful. Mid-May it was 31 distinct packages. Most were in the browser, CLI, or terminal-automation segment, where shell execution is genuinely common because the packages drive other CLIs.&lt;/p&gt;

&lt;p&gt;The first hypothesis was real maintainer drift: maybe enough package authors in this segment were writing unsafe &lt;code&gt;${...}&lt;/code&gt; shell wrappers that the public-record arc had a story.&lt;/p&gt;

&lt;p&gt;The second hypothesis, which became more probable when one more advisory took the count to 31 distinct packages, was that the scanner's regex was over-flagging legitimate template-literal patterns. Thirty distinct maintainers all genuinely shipping unsafe shell exec in 30 days, in a community of ~1,300 packages, would be an ecosystem failure. More likely the scanner had a false-positive class.&lt;/p&gt;

&lt;p&gt;The actual answer, after four rounds of work over 96 hours, turned out to be mixed. Some of the 31 were false positives the scanner could downgrade with new context-aware mitigators. Some were real static-analysis hits in single-user CLI threat models that the scanner correctly continued to flag. The post is about how I got from "31 packages, hypothesis unclear" to "scanner correctly distinguishes which is which" and what each iteration round had to fix.&lt;/p&gt;

&lt;h2&gt;
  
  
  Round 1: the initial sample audit
&lt;/h2&gt;

&lt;p&gt;The first move on 2026-05-16 was to manually inspect a sample of the flagged packages. Five were picked across the class: &lt;code&gt;safari-mcp&lt;/code&gt;, &lt;code&gt;brave-real-browser-mcp-server&lt;/code&gt;, &lt;code&gt;memoir-cli&lt;/code&gt;, &lt;code&gt;s3db.js&lt;/code&gt;, and &lt;code&gt;claude-flow&lt;/code&gt;. Each was rescanned by hand against the regex that originally flagged them.&lt;/p&gt;

&lt;p&gt;Of the five samples, four had patterns the scanner was catching incorrectly. Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A postinstall script invoking &lt;code&gt;codesign&lt;/code&gt; against an internal helper path constructed via &lt;code&gt;path.join(__dirname, ...)&lt;/code&gt;. Not user-controllable.&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;this.exec(\&lt;/code&gt;SELECT ${fields} FROM ...&lt;code&gt;)&lt;/code&gt; SQL query in a sqlite client. Not a child process call at all.&lt;/li&gt;
&lt;li&gt;Hardcoded ALL_CAPS module constants like &lt;code&gt;${REPO_URL}&lt;/code&gt; interpolated for readability. Not user input.&lt;/li&gt;
&lt;li&gt;A numeric ID from a GitHub webhook payload (&lt;code&gt;event.pull_request.number&lt;/code&gt;). Cannot carry shell metacharacters.&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;.md&lt;/code&gt; file titled &lt;code&gt;v3-security-architect.md&lt;/code&gt; with the line literally annotated &lt;code&gt;// ❌ Dangerous: shell injection possible&lt;/code&gt; as a teaching example. The scanner caught a security tutorial.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Initial estimated false-positive rate on the sample: high, but the number itself ended up being revised twice over the next 48 hours as the scope of "false positive" tightened.&lt;/p&gt;

&lt;h2&gt;
  
  
  Rounds 2 and 3: shipping the fix, then catching the fix's bugs
&lt;/h2&gt;

&lt;p&gt;Three corrective passes shipped within hours of each other on 2026-05-16. Each was followed by external review that caught a structural issue in the previous one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pattern-level mitigators (round 1 of these three).&lt;/strong&gt; Seven extensions to the existing sanitizer category (recognise &lt;code&gt;this.exec&lt;/code&gt;, &lt;code&gt;__dirname&lt;/code&gt;, &lt;code&gt;${ALL_CAPS}&lt;/code&gt;, numeric coercion, code-signing toolchain, npm auto-update patterns) plus a new &lt;code&gt;documentation_context&lt;/code&gt; category for markdown code fences and anti-pattern annotations. A local verifier reported 100% suppression on the five-package sample.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Per-file iteration (round 2, caught by review): the 100% was an artifact.&lt;/strong&gt; The scanner had been reading the gunzipped tarball as one buffer and running mitigators against a ±2000 character window in that buffer. A README heading three files away could downgrade a real finding in another file. The fix: walk the tar archive entry-by-entry, run mitigators against each file's own content only. Re-verification: still 100%.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;All-matches per file (round 3, caught by review again): even per-file, single-match-per-file was masking.&lt;/strong&gt; The scanner ran each pattern as a single &lt;code&gt;.exec()&lt;/code&gt; per file, so an early benign shell call in a file would silently hide a later real unsafe one in the same file. Replaced with an all-matches walk that scores each match independently and keeps the worst-severity result. Re-verification: 75 percent, not 100.&lt;/p&gt;

&lt;p&gt;The honest number was 75. &lt;code&gt;memoir-cli@3.6.1&lt;/code&gt; actually does contain &lt;code&gt;exec(\&lt;/code&gt;open "${url}"&lt;code&gt;)&lt;/code&gt; in &lt;code&gt;upgrade.js&lt;/code&gt; and &lt;code&gt;execSync(\&lt;/code&gt;git clone ${config.gitRepo} .&lt;code&gt;)&lt;/code&gt; in &lt;code&gt;diff.js&lt;/code&gt;. In a single-user CLI threat model these are benign because the user is attacking only themselves. But the scanner cannot infer the threat model from static analysis, and the flag is correct at that level.&lt;/p&gt;

&lt;p&gt;The previous "100%" claim was a measurement bug, not progress.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I did with the historic advisories
&lt;/h2&gt;

&lt;p&gt;Two paths were possible.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option A&lt;/strong&gt;: rewrite each of the affected advisories to the corrected severity. Clean for the casual reader. But quietly editing past records contradicts the public-correction-loop principle that is literally on the methodology page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option B&lt;/strong&gt;: keep the original advisories visible at their original severity, add a correction record at the top of the advisories page pointing readers to the mitigator changelog, and let the live &lt;code&gt;/report/&amp;lt;package&amp;gt;&lt;/code&gt; pages reflect the corrected severity once the monitor cron re-scans each affected package over the following 3-4 days.&lt;/p&gt;

&lt;p&gt;I took Option B. The yellow correction banner on &lt;code&gt;/security/advisories&lt;/code&gt; reads:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The scanner shipped a precision pass on 2026-05-16 targeting a self-detected false-positive class in browser/CLI/terminal MCP packages. Advisories below published before that pass on the affected class remain visible at their original severity. The live &lt;code&gt;/report/&amp;lt;package&amp;gt;&lt;/code&gt; page will reflect the corrected severity once the monitor cron rescans that package. Until then, the cached scan-history value on the report page may still show the pre-mitigator severity. We do not silently rewrite the public record.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The mitigator changelog at &lt;code&gt;/scanner/precision&lt;/code&gt; carries the May 16 mitigator-pass entry AND a follow-up entry documenting the per-file iteration and the corrected 75 percent suppression number. Both are on the public surface. Neither was edited after the fact.&lt;/p&gt;

&lt;h2&gt;
  
  
  What rounds 1 to 3 proved
&lt;/h2&gt;

&lt;p&gt;It did not prove the scanner was correct. It proved three other things.&lt;/p&gt;

&lt;p&gt;One: the in-class running count plus a sample audit is enough to detect a false-positive class before it does serious damage to credibility. I caught this in a 30-day window with no maintainer pushing back.&lt;/p&gt;

&lt;p&gt;Two: the iteration loop works on me, not just on the packages I scan. The same &lt;code&gt;/scanner/precision&lt;/code&gt; page that documents mitigators shipped in response to maintainers like Agions and HomenShum now carries an entry where the trigger was my own internal review.&lt;/p&gt;

&lt;p&gt;Three: refusing to silently rewrite history is uncomfortable but it is the only credibility move. A reader who finds an old advisory on a package and a corrected scan on the live report page can see the gap and the correction note explaining it. They do not have to trust that the system always told the truth. They can read both versions and decide.&lt;/p&gt;

&lt;h2&gt;
  
  
  Round 4 (the false-negative correction, 48 hours later)
&lt;/h2&gt;

&lt;p&gt;The work above was substantially complete after the 2026-05-16 fix. Two days later it needed an update, because the fix itself had introduced a false negative.&lt;/p&gt;

&lt;p&gt;The new &lt;code&gt;documentation_context&lt;/code&gt; mitigator category shipped on 2026-05-16 included a markdown-heading pattern &lt;code&gt;/^#{1,4}\s+\S/m&lt;/code&gt;. That regex matches markdown headings. It also matches YAML comments, shell-script comments, TOML headers, and anything else that starts with &lt;code&gt;#&lt;/code&gt;. Without a filename gate, the category fired on any file that happened to contain a &lt;code&gt;#&lt;/code&gt;-prefixed line within 2000 characters of a real finding.&lt;/p&gt;

&lt;p&gt;Concrete miss: &lt;code&gt;fa-mcp-sdk&lt;/code&gt;, the package whose &lt;code&gt;config/local.yaml&lt;/code&gt; we publicly disclosed in late April for shipping credentials in the published tarball, scored 30 / HIGH on every scan from April 25 through May 13. On May 17 a fresh scan with the new v2.2 ruleset returned 65 / ELEVATED. The CRITICAL &lt;code&gt;hardcoded_secret&lt;/code&gt; finding was now MEDIUM. Looking at it on May 18 morning, the digest showed a score recovery that looked like maintainer action after four weeks of silence. It was not. The YAML file's own header comments matched the markdown-heading regex, the documentation_context mitigator fired, and the credentials we'd publicly disclosed were silently downgraded by our own scanner.&lt;/p&gt;

&lt;p&gt;Two other packages had the same effect with materially-changed public severity (&lt;code&gt;mcpbrowser&lt;/code&gt; and &lt;code&gt;opencode-gitlab-dap&lt;/code&gt;). Four more had the same misfire but their findings were already correctly downgraded by parallel sanitizer mitigators, so the public score did not move.&lt;/p&gt;

&lt;p&gt;The fix was a six-line patch: a &lt;code&gt;CATEGORY_FILE_GATES&lt;/code&gt; table that requires &lt;code&gt;documentation_context&lt;/code&gt; patterns to fire only on files whose extension is &lt;code&gt;.md&lt;/code&gt;, &lt;code&gt;.mdx&lt;/code&gt;, &lt;code&gt;.markdown&lt;/code&gt;, &lt;code&gt;.rst&lt;/code&gt;, &lt;code&gt;.txt&lt;/code&gt;, &lt;code&gt;.adoc&lt;/code&gt;, or &lt;code&gt;.asciidoc&lt;/code&gt;. Other mitigator categories were not file-gated because their patterns are tied to language syntax that does not overlap with comment characters in other languages.&lt;/p&gt;

&lt;p&gt;Within the same morning, I rescanned the seven affected packages with the fixed scanner and pushed the corrected scan_history rows. fa-mcp-sdk is back at 45 / HIGH with the CRITICAL credential finding restored. The /scanner/precision changelog carries a new entry documenting the fix exactly the same way the original false-positive entry was documented two days earlier.&lt;/p&gt;

&lt;p&gt;So now the public correction record contains two entries: one for an over-correction on the false-positive side that affected 31 advisories, and one for an under-correction on the false-negative side that affected 3 public scores. Both visible. Neither rewritten silently.&lt;/p&gt;

&lt;p&gt;The pattern this surfaces: precision passes on a scanner have a natural overshoot. You catch a class of false positives, you ship mitigators, the mitigators are slightly too broad, you catch the resulting false negatives, you tighten. The thing that makes this a credibility move rather than a credibility cost is doing all of it on the public surface, where readers can audit the shape of the correction loop rather than trust that we always told them the truth.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's reproducible
&lt;/h2&gt;

&lt;p&gt;The mitigator commits are public. The 5-package sample is version-pinned in &lt;code&gt;scripts/verify-mitigators.cjs&lt;/code&gt; so the precision claim can be reproduced. The pattern tracker is at &lt;code&gt;scripts/track-command-injection-pattern.cjs&lt;/code&gt;. The corrected scanner is at &lt;code&gt;SCANNER_VERSION = 2.2&lt;/code&gt; in &lt;code&gt;src/lib/kya/scanner.js&lt;/code&gt;, with the May 18 file-gate fix in the same file. The list of 7 affected packages and their corrected scores is in the /scanner/precision changelog entry dated 2026-05-18.&lt;/p&gt;

&lt;p&gt;The 31 historic advisories are still at &lt;code&gt;/security/advisories&lt;/code&gt; with the correction banner pointing at the changelog.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the tracker count actually stabilised at
&lt;/h2&gt;

&lt;p&gt;Three days after the May 16 mitigator pass, the running count in the browser/CLI command_injection class dropped from 31 to 14 in 48 hours. We expected it to keep dropping toward zero as the v2.2 scanner propagated through the corpus.&lt;/p&gt;

&lt;p&gt;It did not. The count moved back up to around 20 and stayed there.&lt;/p&gt;

&lt;p&gt;The naive read of that is "the fix did not work." The honest read is different. The tracker counts packages with HIGH command_injection findings the scanner did NOT downgrade. If the v2.2 + file-gate mitigators are working, FPs disappear from the count and only real-pattern hits remain. The count stabilising at roughly 20 means the underlying rate at which real template-literal shell-exec patterns appear in new browser/CLI MCP publishes is about 20 packages per rolling 7-day window. That is the ecosystem's actual signal, not our scanner's failure.&lt;/p&gt;

&lt;p&gt;To verify, we sampled 5 packages from the post-fix corpus: beecork, memex-mvp, @piyushdua/engram-dev, agentic-flow, @kevinrabun/judges. Manual inspection of each:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;beecork&lt;/strong&gt; wraps a user-config-derived &lt;code&gt;bin&lt;/code&gt; name into &lt;code&gt;execSync(\&lt;/code&gt;${whichCmd} ${bin}&lt;code&gt;)&lt;/code&gt; in &lt;code&gt;dist/cli/doctor.js&lt;/code&gt;. Real static-analysis hit. The threat model is single-user CLI (the user is configuring their own tool), so the practical risk is low, but the scanner correctly cannot infer that.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;memex-mvp&lt;/strong&gt; does &lt;code&gt;execSync(\&lt;/code&gt;launchctl unload ${JSON.stringify(PLIST_PATH)}&lt;code&gt;)&lt;/code&gt;. &lt;code&gt;JSON.stringify&lt;/code&gt; wraps the value in escaped double quotes, which is a shell-safe quoting technique. False positive that the scanner did not yet recognise as a sanitiser.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;@piyushdua/engram-dev&lt;/strong&gt; does &lt;code&gt;execSync(\&lt;/code&gt;git worktree remove ${shellQuote(record.path)}&lt;code&gt;)&lt;/code&gt;. The maintainer is explicitly wrapping input in &lt;code&gt;shellQuote()&lt;/code&gt;. False positive that the scanner did not yet recognise as a sanitiser.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;agentic-flow&lt;/strong&gt; does &lt;code&gt;execSync(\&lt;/code&gt;gh ${args.join(' ')}&lt;code&gt;)&lt;/code&gt; in &lt;code&gt;.claude/helpers/github-safe.js&lt;/code&gt;. &lt;code&gt;args&lt;/code&gt; is &lt;code&gt;process.argv&lt;/code&gt;. Real static-analysis hit in a CLI threat model.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;@kevinrabun/judges&lt;/strong&gt; is a code-judging benchmark tool. The dangerous-looking code is embedded as STRING LITERALS in a fixture array (&lt;code&gt;expectedRuleIds: ["AUTH-001", ...]&lt;/code&gt;), specifically as test corpus for the tool to detect. False positive that the scanner did not yet recognise as a fixture marker pattern.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3 of 5 are false positives the scanner could downgrade with additional mitigator patterns. 2 of 5 are real interpolation-into-shell patterns the scanner correctly keeps flagged at HIGH.&lt;/p&gt;

&lt;p&gt;The third precision pass shipped today, 2026-05-19, adds the missing mitigators:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;shellQuote()&lt;/code&gt;, &lt;code&gt;shell_quote&lt;/code&gt;, &lt;code&gt;shq.quote(&lt;/code&gt;, &lt;code&gt;require('shell-quote')&lt;/code&gt; as sanitiser patterns&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;${JSON.stringify(...)}&lt;/code&gt; directly inside the interpolation slot as a sanitiser pattern&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;expectedRuleIds:&lt;/code&gt;, &lt;code&gt;dangerousPatterns:&lt;/code&gt;, &lt;code&gt;benchmarkCases:&lt;/code&gt; as test-fixture markers&lt;/li&gt;
&lt;li&gt;File-path heuristics for &lt;code&gt;benchmark*.js&lt;/code&gt;, &lt;code&gt;rules*.js&lt;/code&gt;, &lt;code&gt;judges*.js&lt;/code&gt; that contain detection corpora&lt;/li&gt;
&lt;li&gt;A meta-template marker: source containing both backslash-escaped backticks and backslash-escaped &lt;code&gt;${&lt;/code&gt; interpolation markers in close proximity. That combination means the surrounding string is a template literal embedded as string data, e.g. a code-judging tool's test fixture where the dangerous-looking code is corpus to be detected rather than executable code.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After this third pass, the 5-package post-fix sample suppression rate is 60 percent. Two stay at HIGH because they really are real-pattern hits in single-user CLI threat models. The remaining count in the tracker now reflects something closer to the genuine rate of real template-literal shell exec in new browser/CLI MCP publishes, not measurement noise.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the iteration loop actually looks like
&lt;/h2&gt;

&lt;p&gt;Four rounds of precision work in 96 hours:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Round&lt;/th&gt;
&lt;th&gt;Date&lt;/th&gt;
&lt;th&gt;What it corrected&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2026-05-16&lt;/td&gt;
&lt;td&gt;Initial mitigator set: this.exec, path.join, ALL_CAPS, numeric coercion, codesign, npm auto-update, plus a &lt;code&gt;documentation_context&lt;/code&gt; category for markdown anti-pattern examples.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;2026-05-16&lt;/td&gt;
&lt;td&gt;Per-file iteration (mitigators only see same-file context), all-matches-per-file (an early benign call cannot mask a later real one), GNU/pax tar parsing, version-pinned verification.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;2026-05-18&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;documentation_context&lt;/code&gt; only fires on &lt;code&gt;.md&lt;/code&gt;, &lt;code&gt;.mdx&lt;/code&gt;, &lt;code&gt;.rst&lt;/code&gt;, &lt;code&gt;.txt&lt;/code&gt; files. The previous loose form was matching YAML &lt;code&gt;#&lt;/code&gt; comments as if they were markdown headings, which silently downgraded &lt;code&gt;fa-mcp-sdk&lt;/code&gt;'s CRITICAL credential finding to MEDIUM. False-negative correction, 7 packages re-scanned, public correction record kept.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;2026-05-19&lt;/td&gt;
&lt;td&gt;Sanitiser additions for &lt;code&gt;shellQuote()&lt;/code&gt;, &lt;code&gt;${JSON.stringify(...)}&lt;/code&gt;, and benchmark fixture markers. False-positive correction on the post-fix sample.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Each round was prompted by either a fresh sample audit or a peer review noticing a structural issue with the previous round. None of the rounds were silent. Each one shipped a /scanner/precision changelog entry naming what was wrong and what changed.&lt;/p&gt;

&lt;p&gt;The point is not that AgentScore got everything right. The point is that the iteration is visible. A reader who finds an old advisory on a package and a corrected scan on the live report page can see the gap and the correction note explaining it. They do not have to trust the system. They can read both versions and decide.&lt;/p&gt;

&lt;p&gt;For anyone running continuous scanning at scale on a public surface, the lesson is: the loud direction (false positives) is easier to catch than the quiet direction (false negatives), the FN risk gets harder once you start tightening, and the only thing that compounds credibility through all of it is doing the corrections in public.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;AgentScore continuously scans MCP packages on npm and publishes a public security record. Live data, advisories, and the full mitigator changelog are at &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;agentscores.xyz&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>supplychain</category>
      <category>mcp</category>
      <category>npm</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0022: `entroly-wasm` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Mon, 04 May 2026 08:20:15 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0022-entroly-wasm-risk-change-detected-c2l</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0022-entroly-wasm-risk-change-detected-c2l</guid>
      <description>&lt;p&gt;entroly-wasm updated from 0.11.0 to 0.12.0. Score changed 95/100 to 80/100 (-15). Risk: LOW to MODERATE. 3 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;entroly-wasm&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 0.11.0 to 0.12.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 95/100 to 80/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to MODERATE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; no_repository: Package has no repository link — source code is not verifiable&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_license: Package has no licence specified&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_provenance: Package is not published with provenance attestations or trusted publishing. Published by: adalako&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0022" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0022&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=entroly-wasm&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0021: `javaperf` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Sat, 02 May 2026 19:28:09 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0021-javaperf-risk-change-detected-5fne</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0021-javaperf-risk-change-detected-5fne</guid>
      <description>&lt;p&gt;javaperf updated from 1.2.2 to 1.3.0. Score changed 95/100 to 80/100 (-15). Risk: LOW to MODERATE. 1 finding.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;javaperf&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 1.2.2 to 1.3.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 95/100 to 80/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to MODERATE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0021" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0021&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=javaperf&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0020: `@staticn0va/wigolo` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Fri, 01 May 2026 13:28:21 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0020-staticn0vawigolo-risk-change-detected-37i4</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0020-staticn0vawigolo-risk-change-detected-37i4</guid>
      <description>&lt;p&gt;@staticn0va/wigolo updated from 0.6.6 to 1.0.0. Score changed 80/100 to 70/100 (-10). Risk: MODERATE to MODERATE. 2 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;@staticn0va/wigolo&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 0.6.6 to 1.0.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 80/100 to 70/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; MODERATE to MODERATE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; excessive_dependencies: Package has 26 runtime dependencies (high attack surface)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0020" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0020&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=%40staticn0va%2Fwigolo&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>Four MCP packages, four ways the supply chain shifted in two weeks of npm monitoring</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Fri, 01 May 2026 01:11:38 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/four-mcp-packages-four-ways-the-supply-chain-shifted-in-two-weeks-of-npm-monitoring-1b6o</link>
      <guid>https://dev.to/michael_onyekwere/four-mcp-packages-four-ways-the-supply-chain-shifted-in-two-weeks-of-npm-monitoring-1b6o</guid>
      <description>&lt;h1&gt;
  
  
  Four MCP packages, four ways the supply chain shifted in two weeks of npm monitoring
&lt;/h1&gt;

&lt;p&gt;By Michael K Onyekwere&lt;/p&gt;

&lt;p&gt;I monitor nearly a thousand published MCP packages on npm in real time. The pipeline polls the npm changes feed every two minutes, scans every newly-published version, and writes the result against the previous baseline. When a real package update drops the score below the confidence threshold, a public advisory is generated and the RSS feed updates.&lt;/p&gt;

&lt;p&gt;This post collects four worked examples from the last two weeks. The named packages are not malicious. The point is to make visible the kinds of routine changes a consumer would never see at install time, because the install path is &lt;code&gt;npx -y &amp;lt;package&amp;gt;&lt;/code&gt; or an equivalent unpinned &lt;code&gt;npm install&lt;/code&gt; that always pulls whatever version is current on the registry.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. prism-mcp-server: four capabilities added in one major version bump
&lt;/h2&gt;

&lt;p&gt;This is the strongest single drift event of the period.&lt;/p&gt;

&lt;p&gt;On 2026-04-27 the watch feed had &lt;code&gt;prism-mcp-server&lt;/code&gt; at version 11.6.0 with score 85 / 100, risk LOW, no findings beyond a missing-provenance note.&lt;/p&gt;

&lt;p&gt;On 2026-04-28 11:44 UTC the same package republished as version 12.5.0. The watch detect logged the diff under two seconds later. The rescan produced:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Score 85 to 65, risk LOW to ELEVATED&lt;/li&gt;
&lt;li&gt;New HIGH &lt;code&gt;command_injection&lt;/code&gt; finding: shell execution with template-literal input&lt;/li&gt;
&lt;li&gt;New MEDIUM &lt;code&gt;excessive_dependencies&lt;/code&gt; finding: 23 runtime dependencies (was lower in v11)&lt;/li&gt;
&lt;li&gt;Capability surface gained four categories that did not exist in the prior major version:

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;browser_automation&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;email_messaging&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;filesystem_read&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;shell_exec&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Consider the consumer position. Anyone with &lt;code&gt;prism-mcp-server&lt;/code&gt; installed via the typical agent-config form (&lt;code&gt;npx -y prism-mcp-server&lt;/code&gt; in &lt;code&gt;claude_desktop_config.json&lt;/code&gt; or equivalent) had their agent silently inherit four new capability categories the moment 12.5.0 hit npm. No review trigger. No opt-in. No diff against what was previously authorised.&lt;/p&gt;

&lt;p&gt;This is not a story about prism-mcp-server's publisher doing something wrong. Major version bumps are exactly when a maintainer is allowed to reshape the surface area. The point is that the consumer has no mechanism in place to notice it.&lt;/p&gt;

&lt;p&gt;The advisory &lt;code&gt;AGENTSCORE-2026-0017&lt;/code&gt; covers this case. RSS feed picked it up the same minute.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. agent-planner-mcp: four versions in nine hours
&lt;/h2&gt;

&lt;p&gt;A different shape of the same problem.&lt;/p&gt;

&lt;p&gt;On 2026-04-25 &lt;code&gt;agent-planner-mcp&lt;/code&gt; published four times in a single day:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;13:44 UTC: v0.8.1&lt;/li&gt;
&lt;li&gt;18:10 UTC: v0.9.0&lt;/li&gt;
&lt;li&gt;19:14 UTC: v0.9.1&lt;/li&gt;
&lt;li&gt;22:44 UTC: v1.0.0&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The score held at 75 / MODERATE across all four publishes. No major findings change. But each release shifted what tools the package exposed.&lt;/p&gt;

&lt;p&gt;If you reviewed v0.8.1 in the morning and were happy with what it had, by the end of the day there had been three additional surface changes you never saw, and the package had crossed a major-version boundary (v1.0.0). A &lt;code&gt;npx -y&lt;/code&gt; install on a tool that depends on agent-planner-mcp would land on whichever version was current at install time, with no way to relate that version to the one that was reviewed.&lt;/p&gt;

&lt;p&gt;This is the same pattern observed earlier in the period with &lt;code&gt;@planu/cli&lt;/code&gt;, which on 2026-04-22 shipped v1.84.0 with four new capabilities (&lt;code&gt;database_access&lt;/code&gt;, &lt;code&gt;filesystem_read&lt;/code&gt;, &lt;code&gt;search_index&lt;/code&gt;, &lt;code&gt;unknown&lt;/code&gt;) and a HIGH &lt;code&gt;command_injection&lt;/code&gt; finding, then walked the change back in v1.85.0 forty-six minutes later by removing all four capabilities. A consumer running &lt;code&gt;npx -y @planu/cli&lt;/code&gt; during that forty-six-minute window would have got the expanded surface; one running it forty-seven minutes later would have got the walked-back version. Neither knew.&lt;/p&gt;

&lt;p&gt;Two instances in two weeks rules out coincidence. Maintainers iterating in real time is normal and healthy. Consumers having no view of the iteration is the gap.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. sverklo: a quiet package, then a backlog-dump release that opens a new HIGH
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;sverklo&lt;/code&gt; had been at v0.12.5 with score 80 / MODERATE since 2026-04-19, carrying one HIGH &lt;code&gt;command_injection&lt;/code&gt; finding for nearly a week.&lt;/p&gt;

&lt;p&gt;On 2026-04-25 at 20:56 UTC the package published v0.16.0. Four minor versions in one go, the kind of release that signals a maintainer clearing a backlog. The diff:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Score 80 to 60 (MODERATE to ELEVATED)&lt;/li&gt;
&lt;li&gt;The existing HIGH &lt;code&gt;command_injection&lt;/code&gt; is still present&lt;/li&gt;
&lt;li&gt;A new HIGH &lt;code&gt;unsafe_eval&lt;/code&gt; finding has appeared&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Two HIGH findings now, where there was one before, on the same package, after a single release.&lt;/p&gt;

&lt;p&gt;This inverts a common assumption. Maintainer activity is generally treated as a positive signal in npm review heuristics: actively maintained beats abandoned. In MCP specifically, a long backlog released as one big version-skip publish expands the surface a consumer was reviewing against. The longer the gap, the wider the change in the catch-up release.&lt;/p&gt;

&lt;p&gt;If your review of &lt;code&gt;sverklo&lt;/code&gt; was based on v0.12.5, your review is now stale by two HIGH findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. nodebench-mcp: the case where the maintainer pushed back, and the scanner got better
&lt;/h2&gt;

&lt;p&gt;A different shape from the three above. This one shows what the feedback loop looks like when it works.&lt;/p&gt;

&lt;p&gt;The scanner flagged &lt;code&gt;nodebench-mcp&lt;/code&gt; v3.2.0 with two HIGH findings: &lt;code&gt;command_injection&lt;/code&gt; and &lt;code&gt;unsafe_eval&lt;/code&gt;. I filed a public issue on the maintainer's repo.&lt;/p&gt;

&lt;p&gt;The maintainer (HomenShum) reviewed both findings against source on 2026-04-26 and posted a detailed response. They:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Confirmed three real &lt;code&gt;command_injection&lt;/code&gt; sites at specific file:line references and refactored each one to argv-based &lt;code&gt;spawn&lt;/code&gt; with &lt;code&gt;shell: false&lt;/code&gt;. Released as v3.2.1.&lt;/li&gt;
&lt;li&gt;Identified the &lt;code&gt;unsafe_eval&lt;/code&gt; finding as a false positive with specific evidence: the regex matched &lt;code&gt;db.exec(\&lt;/code&gt;SQL ${var}&lt;code&gt;)&lt;/code&gt; which is &lt;code&gt;better-sqlite3&lt;/code&gt;'s tagged-template SQL, not JavaScript &lt;code&gt;eval&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The maintainer was right on both counts. The first three sites were genuinely exploitable in the agent-controllable input model and got fixed properly. The fourth was a scanner precision gap that we should not have been flagging.&lt;/p&gt;

&lt;p&gt;Same day, two scanner mitigators shipped (commit &lt;code&gt;4ee2659&lt;/code&gt;):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Database-shaped variable names calling &lt;code&gt;.exec()&lt;/code&gt; (&lt;code&gt;db&lt;/code&gt;, &lt;code&gt;database&lt;/code&gt;, &lt;code&gt;conn&lt;/code&gt;, &lt;code&gt;client&lt;/code&gt;, &lt;code&gt;pool&lt;/code&gt;, &lt;code&gt;prepared&lt;/code&gt;, &lt;code&gt;stmt&lt;/code&gt;, &lt;code&gt;sql&lt;/code&gt;, &lt;code&gt;query&lt;/code&gt;, &lt;code&gt;knex&lt;/code&gt;, &lt;code&gt;prisma&lt;/code&gt;) now downgrade &lt;code&gt;command_injection&lt;/code&gt; to LOW&lt;/li&gt;
&lt;li&gt;Files whose names contain the substring &lt;code&gt;Eval&lt;/code&gt; followed by an uppercase letter (&lt;code&gt;selfEvalTools.js&lt;/code&gt;, &lt;code&gt;llmJudgeEval.js&lt;/code&gt;) now downgrade &lt;code&gt;unsafe_eval&lt;/code&gt; to LOW because in those files the literal word &lt;code&gt;eval&lt;/code&gt; appears inside English-language strings describing the evaluation flow, not in actual JavaScript &lt;code&gt;eval()&lt;/code&gt; calls&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After the maintainer's PR landed and the mitigators shipped, &lt;code&gt;nodebench-mcp@3.2.1&lt;/code&gt; rescanned at 85 / LOW, up from 55 / ELEVATED. The full mitigator changelog is at &lt;code&gt;agentscores.xyz/scanner/precision&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;That is the feedback loop you want from a security tool. Public review goes both ways. Real findings get fixed. Scanner mistakes get challenged with evidence. The scanner improves.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this looks like to a consumer
&lt;/h2&gt;

&lt;p&gt;If you are running &lt;code&gt;npx -y&lt;/code&gt; against any MCP package in a Claude Desktop, Cursor, Continue, OpenAI agents, or custom MCP client config:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Your agent's capability surface is whatever the latest version of every transitive package decided to expose at install time. You did not approve it. It came along for the ride.&lt;/li&gt;
&lt;li&gt;A major-version bump is allowed to reshape that surface entirely. v11 to v12 in a published package can mean +4 capabilities, a new HIGH finding, or nothing at all. There is no way to tell from the install command which it will be.&lt;/li&gt;
&lt;li&gt;Multiple publishes in one day are normal during active development of an MCP package, and each one can add or remove tools. Pinning to a version reviewed in the morning does not protect you from the version reshape that landed at 22:44.&lt;/li&gt;
&lt;li&gt;A long quiet period followed by a multi-version-skip release is one of the riskier patterns, because the catch-up release folds in surface changes that would have been flagged separately across the missing reviews.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What helps
&lt;/h2&gt;

&lt;p&gt;The cheapest defence is to pin every MCP package to a specific version in your agent config. Never &lt;code&gt;npx -y package&lt;/code&gt;, always &lt;code&gt;npx -y package@x.y.z&lt;/code&gt;. Treat the pin like a lockfile entry. This is what the team at &lt;code&gt;redis/RedisInsight&lt;/code&gt; did across every MCP dependency in their config after our scan flagged the unpinned installs (&lt;code&gt;agentscores.xyz/case-study/redis&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;Beyond that, the public RSS feed at &lt;code&gt;agentscores.xyz/security/advisories&lt;/code&gt; carries every advisory as it lands, with score before, score after, version diff, and findings. If a package you depend on appears, you have minutes to evaluate the change before it hits your next install.&lt;/p&gt;

&lt;p&gt;For teams that want enforcement rather than awareness, the policy gate at &lt;code&gt;agentscores.xyz/policy-gate&lt;/code&gt; is a free GitHub Action that fails the build when an MCP dependency drops below the configured threshold. Repo-scoped exceptions land in the audit trail when you decide to accept a finding, rather than landing nowhere.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the dataset shows
&lt;/h2&gt;

&lt;p&gt;Across nearly a thousand monitored MCP packages, the npm changes feed is processed every two minutes around the clock. The watch cron sees roughly 1,000 to 2,000 monitored-package publish events per day. Most are version bumps with no meaningful score change. About 1 to 3 per day clear the confidence threshold and become public advisories. A few of those each week involve a new HIGH or CRITICAL finding.&lt;/p&gt;

&lt;p&gt;Several per week worth knowing about. None of them malicious. All of them shape what an agent built on these packages can do, without notifying anyone downstream.&lt;/p&gt;

&lt;p&gt;If you maintain or consume MCP packages and want to talk about any of this, the contact form at &lt;code&gt;agentscores.xyz/contact&lt;/code&gt; reaches me directly.&lt;/p&gt;




&lt;p&gt;By Michael K Onyekwere. AgentScore is a continuously-updated trust layer for the MCP ecosystem. The dataset, scanner, advisory feed, and policy gate are at agentscores.xyz. The full ruleset history and the public report that motivated each precision change is at agentscores.xyz/scanner/precision.&lt;/p&gt;

</description>
      <category>security</category>
      <category>supplychain</category>
      <category>mcp</category>
      <category>npm</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0019: `@cg3/prior-mcp` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Fri, 01 May 2026 00:48:35 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0019-cg3prior-mcp-risk-change-detected-2p2b</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0019-cg3prior-mcp-risk-change-detected-2p2b</guid>
      <description>&lt;p&gt;@cg3/prior-mcp updated from 0.6.4 to 0.7.0. Score changed 100/100 to 75/100 (-25). Risk: LOW to MODERATE. 2 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;@cg3/prior-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 0.6.4 to 0.7.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 100/100 to 75/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to MODERATE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_provenance: Package is not published with provenance attestations or trusted publishing. Published by: cg3llc&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0019" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0019&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=%40cg3%2Fprior-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0018: `@planu/cli` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Thu, 30 Apr 2026 22:18:10 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0018-planucli-risk-change-detected-3ng</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0018-planucli-risk-change-detected-3ng</guid>
      <description>&lt;p&gt;&lt;a class="mentioned-user" href="https://dev.to/planu"&gt;@planu&lt;/a&gt;/cli updated from 2.12.0 to 2.12.1. Score changed 85/100 to 65/100 (-20). Risk: LOW to ELEVATED. 3 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;@planu/cli&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 2.12.0 to 2.12.1&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 85/100 to 65/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to ELEVATED&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; no_repository: Package has no repository link — source code is not verifiable&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_provenance: Package is not published with provenance attestations or trusted publishing. Published by: planudev&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0018" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0018&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=%40planu%2Fcli&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0017: `prism-mcp-server` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Tue, 28 Apr 2026 11:44:15 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0017-prism-mcp-server-risk-change-detected-48na</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0017-prism-mcp-server-risk-change-detected-48na</guid>
      <description>&lt;p&gt;prism-mcp-server updated from 11.6.0 to 12.5.0. Score changed 85/100 to 65/100 (-20). Risk: LOW to ELEVATED. 3 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;prism-mcp-server&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 11.6.0 to 12.5.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 85/100 to 65/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to ELEVATED&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; excessive_dependencies: Package has 23 runtime dependencies (high attack surface)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_provenance: Package is not published with provenance attestations or trusted publishing. Published by: dmitricostenco&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0017" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0017&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=prism-mcp-server&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0016: `@jtalk22/slack-mcp` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Sun, 26 Apr 2026 15:46:09 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0016-jtalk22slack-mcp-risk-change-detected-j31</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0016-jtalk22slack-mcp-risk-change-detected-j31</guid>
      <description>&lt;p&gt;&lt;a class="mentioned-user" href="https://dev.to/jtalk22"&gt;@jtalk22&lt;/a&gt;/slack-mcp updated from 4.1.2 to 4.2.0. Score changed 90/100 to 80/100 (-10). Risk: LOW to MODERATE. 1 finding.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;@jtalk22/slack-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 4.1.2 to 4.2.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 90/100 to 80/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to MODERATE&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0016" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0016&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=%40jtalk22%2Fslack-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0015: `sverklo` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Sat, 25 Apr 2026 19:56:12 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0015-sverklo-risk-change-detected-4k6g</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0015-sverklo-risk-change-detected-4k6g</guid>
      <description>&lt;p&gt;sverklo updated from 0.12.5 to 0.16.0. Score changed 80/100 to 60/100 (-20). Risk: MODERATE to ELEVATED. 2 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;sverklo&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 0.12.5 to 0.16.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 80/100 to 60/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; MODERATE to ELEVATED&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; unsafe_eval: Uses eval() with dynamic input&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0015" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0015&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=sverklo&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0014: `aidex-mcp` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Sat, 25 Apr 2026 15:04:13 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0014-aidex-mcp-risk-change-detected-59ie</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0014-aidex-mcp-risk-change-detected-59ie</guid>
      <description>&lt;p&gt;aidex-mcp updated from 1.17.1 to 1.18.0. Score changed 70/100 to 60/100 (-10). Risk: MODERATE to ELEVATED. 4 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;aidex-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 1.17.1 to 1.18.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 70/100 to 60/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; MODERATE to ELEVATED&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; install_script: Package has 'postinstall' script: node scripts/postinstall.mjs&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; excessive_dependencies: Package has 21 runtime dependencies (high attack surface)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[HIGH]&lt;/strong&gt; command_injection: Potential command injection: shell execution with template literal input&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; no_provenance: Package is not published with provenance attestations or trusted publishing. Published by: uchalas&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0014" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0014&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=aidex-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
    <item>
      <title>AGENTSCORE-2026-0013: `vaultpilot-mcp` risk change detected</title>
      <dc:creator>Michael Kayode Onyekwere</dc:creator>
      <pubDate>Sat, 25 Apr 2026 14:32:10 +0000</pubDate>
      <link>https://dev.to/michael_onyekwere/agentscore-2026-0013-vaultpilot-mcp-risk-change-detected-4jhc</link>
      <guid>https://dev.to/michael_onyekwere/agentscore-2026-0013-vaultpilot-mcp-risk-change-detected-4jhc</guid>
      <description>&lt;p&gt;vaultpilot-mcp updated from 0.7.0 to 0.8.0. Score changed 95/100 to 85/100 (-10). Risk: LOW to LOW. 2 findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Name:&lt;/strong&gt; &lt;code&gt;vaultpilot-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Version:&lt;/strong&gt; 0.7.0 to 0.8.0&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score:&lt;/strong&gt; 95/100 to 85/100&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Risk:&lt;/strong&gt; LOW to LOW&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Findings
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[LOW]&lt;/strong&gt; install_script: Package has 'postinstall' script: patch-package&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[MEDIUM]&lt;/strong&gt; excessive_dependencies: Package has 21 runtime dependencies (high attack surface)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full advisory: &lt;a href="https://agentscores.xyz/security/advisories#AGENTSCORE-2026-0013" rel="noopener noreferrer"&gt;AGENTSCORE-2026-0013&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Verdict API: &lt;code&gt;curl https://agentscores.xyz/api/verdict?npm=vaultpilot-mcp&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Auto-published by &lt;a href="https://agentscores.xyz" rel="noopener noreferrer"&gt;AgentScore&lt;/a&gt; MCP security monitoring.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>security</category>
      <category>mcp</category>
      <category>npm</category>
      <category>supplychain</category>
    </item>
  </channel>
</rss>
