supply-chain-guard 6.0.2 → 6.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -142,7 +142,7 @@ Run the scanner as a [pre-commit](https://pre-commit.com) hook (Python-ecosystem
142
142
  ```yaml
143
143
  repos:
144
144
  - repo: https://github.com/homeofe/supply-chain-guard
145
- rev: v6.0.2
145
+ rev: v6.0.3
146
146
  hooks:
147
147
  - id: supply-chain-guard
148
148
  ```
@@ -174,7 +174,7 @@ The hook scans the repository root on every commit and fails on high or critical
174
174
  Run the scanner without a Node toolchain via the official multi-arch image (linux/amd64, linux/arm64), published to GHCR on every release tag:
175
175
 
176
176
  ```bash
177
- docker run --rm -v ${PWD}:/scan ghcr.io/homeofe/supply-chain-guard:6.0.2 scan /scan
177
+ docker run --rm -v ${PWD}:/scan ghcr.io/homeofe/supply-chain-guard:6.0.3 scan /scan
178
178
  ```
179
179
 
180
180
  `${PWD}` works in bash, zsh, and PowerShell; in cmd.exe use `%cd%` instead.
@@ -855,7 +855,7 @@ jobs:
855
855
  runs-on: ubuntu-latest
856
856
  steps:
857
857
  - uses: actions/checkout@v4
858
- - uses: homeofe/supply-chain-guard@v6.0.2
858
+ - uses: homeofe/supply-chain-guard@v6.0.3
859
859
  with:
860
860
  fail-on: critical
861
861
  comment-on-pr: true
@@ -943,7 +943,7 @@ two are never confused. If a deliberately frozen rule set is the intent, exclude
943
943
  the rule by name:
944
944
 
945
945
  ```yaml
946
- - uses: homeofe/supply-chain-guard@v6.0.2
946
+ - uses: homeofe/supply-chain-guard@v6.0.3
947
947
  with:
948
948
  exclude-rules: THREAT_FEED_STALE
949
949
  ```
package/action.yml CHANGED
@@ -80,7 +80,7 @@ runs:
80
80
 
81
81
  - name: Install supply-chain-guard
82
82
  shell: bash
83
- run: npm install -g supply-chain-guard@6.0.2 --ignore-scripts --no-audit --no-fund
83
+ run: npm install -g supply-chain-guard@6.0.3 --ignore-scripts --no-audit --no-fund
84
84
 
85
85
  - name: Run scan
86
86
  id: scan
package/dist/cli.js CHANGED
@@ -187,7 +187,7 @@ function assertDistinctOutputPaths(options) {
187
187
  program
188
188
  .name("supply-chain-guard")
189
189
  .description("Open-source supply-chain security scanner. Detects GlassWorm and similar malware campaigns in npm packages, PyPI packages, code repos, VS Code extensions, and project dependencies.")
190
- .version("6.0.2");
190
+ .version("6.0.3");
191
191
  // ── scan command ────────────────────────────────────────────────────
192
192
  program
193
193
  .command("scan")
@@ -49,7 +49,7 @@ const path = __importStar(require("node:path"));
49
49
  const https = __importStar(require("node:https"));
50
50
  const types_js_1 = require("./types.js");
51
51
  const pattern_scanner_js_1 = require("./pattern-scanner.js");
52
- const TOOL_VERSION = "6.0.2";
52
+ const TOOL_VERSION = "6.0.3";
53
53
  const NPM_REGISTRY = "https://registry.npmjs.org";
54
54
  const NPM_DOWNLOADS_API = "https://api.npmjs.org/downloads/point/last-week";
55
55
  const PYPI_REGISTRY = "https://pypi.org/pypi";
@@ -64,7 +64,7 @@ const extracted_file_walker_js_1 = require("./extracted-file-walker.js");
64
64
  const threat_intel_js_1 = require("./threat-intel.js");
65
65
  const install_guard_js_1 = require("./install-guard.js");
66
66
  const remote_download_js_1 = require("./remote-download.js");
67
- const TOOL_VERSION = "6.0.2";
67
+ const TOOL_VERSION = "6.0.3";
68
68
  const NPM_REGISTRY = "https://registry.npmjs.org";
69
69
  const NPM_REGISTRY_HOST = "registry.npmjs.org";
70
70
  const RAW_GITHUB_HOST = "raw.githubusercontent.com";
@@ -56,7 +56,7 @@ const patterns_js_1 = require("./patterns.js");
56
56
  const pattern_scanner_js_1 = require("./pattern-scanner.js");
57
57
  const extracted_file_walker_js_1 = require("./extracted-file-walker.js");
58
58
  const remote_download_js_1 = require("./remote-download.js");
59
- const TOOL_VERSION = "6.0.2";
59
+ const TOOL_VERSION = "6.0.3";
60
60
  const PYPI_API = "https://pypi.org/pypi";
61
61
  const PYPI_METADATA_HOST = "pypi.org";
62
62
  const PYPI_ARTIFACT_HOST = "files.pythonhosted.org";
package/dist/reporter.js CHANGED
@@ -201,7 +201,7 @@ function formatJson(report) {
201
201
  function formatText(report) {
202
202
  const lines = [];
203
203
  // ── layout constants ───────────────────────────────────────────────────────
204
- const VERSION = "6.0.2";
204
+ const VERSION = "6.0.3";
205
205
  const W = 76; // visible chars between "│ " and " │" (total line = 80)
206
206
  // ── ANSI helpers ───────────────────────────────────────────────────────────
207
207
  const stripAnsi = (s) => s.replace(/\x1b\[[0-9;]*m/g, "");
@@ -576,7 +576,7 @@ function formatMarkdown(report) {
576
576
  lines.push("");
577
577
  lines.push(`| Property | Value |`);
578
578
  lines.push(`|----------|-------|`);
579
- lines.push(`| Tool | \`${mdCell(report.tool || "supply-chain-guard v6.0.2")}\` |`);
579
+ lines.push(`| Tool | \`${mdCell(report.tool || "supply-chain-guard v6.0.3")}\` |`);
580
580
  lines.push(`| Target | \`${mdCell(report.target)}\` |`);
581
581
  lines.push(`| Type | ${mdText(report.scanType)} |`);
582
582
  lines.push(`| Time | ${mdText(report.timestamp)} |`);
@@ -824,7 +824,7 @@ function formatSarif(report) {
824
824
  tool: {
825
825
  driver: {
826
826
  name: "supply-chain-guard",
827
- version: "6.0.2",
827
+ version: "6.0.3",
828
828
  informationUri: "https://github.com/homeofe/supply-chain-guard",
829
829
  rules,
830
830
  },
@@ -1033,7 +1033,7 @@ function formatSbom(report) {
1033
1033
  ...(properties.length > 0 ? { properties } : {}),
1034
1034
  };
1035
1035
  });
1036
- const annotations = buildIncidentAnnotations(report.incidents, subjectsByIncident, metadata.timestamp, metadata.tools.components[0]?.version ?? "6.0.2");
1036
+ const annotations = buildIncidentAnnotations(report.incidents, subjectsByIncident, metadata.timestamp, metadata.tools.components[0]?.version ?? "6.0.3");
1037
1037
  const withVulns = {
1038
1038
  ...document,
1039
1039
  metadata: {
@@ -1082,7 +1082,7 @@ function formatSbom(report) {
1082
1082
  ...(properties.length > 0 ? { properties } : {}),
1083
1083
  };
1084
1084
  });
1085
- const fallbackAnnotations = buildIncidentAnnotations(report.incidents, fallbackSubjectsByIncident, report.timestamp, "6.0.2");
1085
+ const fallbackAnnotations = buildIncidentAnnotations(report.incidents, fallbackSubjectsByIncident, report.timestamp, "6.0.3");
1086
1086
  const sbom = {
1087
1087
  bomFormat: "CycloneDX",
1088
1088
  specVersion: "1.6",
@@ -1092,7 +1092,7 @@ function formatSbom(report) {
1092
1092
  timestamp: report.timestamp,
1093
1093
  tools: {
1094
1094
  components: [
1095
- { type: "application", name: "supply-chain-guard", version: "6.0.2" },
1095
+ { type: "application", name: "supply-chain-guard", version: "6.0.3" },
1096
1096
  ],
1097
1097
  },
1098
1098
  component: {
@@ -1168,8 +1168,8 @@ function formatBadge(report) {
1168
1168
  label: "supply-chain-guard",
1169
1169
  message,
1170
1170
  color,
1171
- tool: report.tool || "supply-chain-guard v6.0.2",
1172
- version: report.tool ? (report.tool.includes("@") ? report.tool.split("@")[1] : report.tool.replace(/^supply-chain-guard v?/, "")) : "6.0.2",
1171
+ tool: report.tool || "supply-chain-guard v6.0.3",
1172
+ version: report.tool ? (report.tool.includes("@") ? report.tool.split("@")[1] : report.tool.replace(/^supply-chain-guard v?/, "")) : "6.0.3",
1173
1173
  timestamp: report.timestamp,
1174
1174
  commit: report.commit ?? "none",
1175
1175
  detectionSet: report.detectionSet,
@@ -1225,7 +1225,7 @@ function formatGitlab(report) {
1225
1225
  name: "supply-chain-guard",
1226
1226
  url: "https://github.com/homeofe/supply-chain-guard",
1227
1227
  vendor: { name: "supply-chain-guard" },
1228
- version: "6.0.2",
1228
+ version: "6.0.3",
1229
1229
  };
1230
1230
  const vulnerabilities = report.findings
1231
1231
  .filter((f) => !f.suppressed)
@@ -1347,7 +1347,7 @@ function formatJunit(report) {
1347
1347
  // (unreleased, issue 205): the coverage properties are ALWAYS emitted, so a JUnit
1348
1348
  // artefact states its own denominator instead of only what was found.
1349
1349
  lines.push(" <properties>");
1350
- lines.push(` <property name="supply-chain-guard:tool-version" value="${xmlEscape(report.tool || "supply-chain-guard v6.0.2")}"/>`);
1350
+ lines.push(` <property name="supply-chain-guard:tool-version" value="${xmlEscape(report.tool || "supply-chain-guard v6.0.3")}"/>`);
1351
1351
  lines.push(` <property name="supply-chain-guard:timestamp" value="${xmlEscape(report.timestamp)}"/>`);
1352
1352
  lines.push(` <property name="supply-chain-guard:commit" value="${xmlEscape(report.commit ?? "none (not a git repository)")}"/>`);
1353
1353
  if (report.detectionSet) {
@@ -1473,7 +1473,7 @@ footer{text-align:center;padding:24px;color:#94a3b8;font-size:13px}
1473
1473
  <body>
1474
1474
  <div class="container">
1475
1475
  <header>
1476
- <h1>${escapeHtml(report.tool || "supply-chain-guard v6.0.2")} Scan Report</h1>
1476
+ <h1>${escapeHtml(report.tool || "supply-chain-guard v6.0.3")} Scan Report</h1>
1477
1477
  <div class="meta">
1478
1478
  <span>Target: ${escapeHtml(report.target)}</span>
1479
1479
  <span>Type: ${report.scanType}</span>
@@ -1534,7 +1534,7 @@ footer{text-align:center;padding:24px;color:#94a3b8;font-size:13px}
1534
1534
  ` : ""}
1535
1535
 
1536
1536
  <footer>
1537
- Generated by <a href="https://github.com/homeofe/supply-chain-guard">${escapeHtml(report.tool || "supply-chain-guard v6.0.2")}</a>
1537
+ Generated by <a href="https://github.com/homeofe/supply-chain-guard">${escapeHtml(report.tool || "supply-chain-guard v6.0.3")}</a>
1538
1538
  </footer>
1539
1539
  </div>
1540
1540
  <script>
@@ -86,7 +86,7 @@ exports.generateSbomDocument = generateSbomDocument;
86
86
  const fs = __importStar(require("node:fs"));
87
87
  const path = __importStar(require("node:path"));
88
88
  const node_crypto_1 = require("node:crypto");
89
- const TOOL_VERSION = "6.0.2";
89
+ const TOOL_VERSION = "6.0.3";
90
90
  /** bom-ref of the component the document is about. */
91
91
  const SUBJECT_BOM_REF = "target";
92
92
  /** Property namespace, matching the `supply-chain-guard:scan-status` property reporter.ts adds. */
package/dist/scanner.js CHANGED
@@ -97,7 +97,7 @@ const slsa_verifier_js_1 = require("./slsa-verifier.js");
97
97
  const dependency_confusion_js_1 = require("./dependency-confusion.js");
98
98
  const mcp_scanner_js_1 = require("./mcp-scanner.js");
99
99
  const skills_scanner_js_1 = require("./skills-scanner.js");
100
- const TOOL_VERSION = "6.0.2";
100
+ const TOOL_VERSION = "6.0.3";
101
101
  /**
102
102
  * Exact files that contain this package's own inert detector definitions or
103
103
  * regression fixtures.
@@ -1 +1 @@
1
- {"version":3,"file":"threat-intel.d.ts","sourceRoot":"","sources":["../src/threat-intel.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAqB,sBAAsB,EAAE,MAAM,YAAY,CAAC;AAMrF,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,QAAQ,GAAG,IAAI,GAAG,KAAK,GAAG,MAAM,GAAG,SAAS,CAAC;IACnD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,CAAC;IAC1D,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,+EAA+E;AAC/E,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,EAAE,YAAY,CAAC,GAAG;IACvD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,6BAA6B,CAAC;AAuob5D,eAAO,MAAM,SAAS,eAAe,CAAC;AACtC,eAAO,MAAM,eAAe,qBAAqB,CAAC;AAGlD;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,kBAAkB;;;;EAI7B,CAAC;AAEH,+DAA+D;AAC/D,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,cAAc,IAAI,OAAO,EAAE,CAE1C;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,wBAAgB,iBAAiB,IAAI,SAAS,OAAO,EAAE,CAEtD;AAeD;;;;;;;;GAQG;AACH,wBAAgB,qBAAqB,IAAI,IAAI,CAE5C;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,eAAe,CAC7B,QAAQ,CAAC,EAAE,MAAM,EACjB,aAAa,CAAC,EAAE,MAAM,GACrB,OAAO,EAAE,CA+CX;AAqDD;;;;;;;;;;GAUG;AACH,wBAAsB,gBAAgB,CACpC,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,MAAM,EACjB,cAAc,GAAE,kBAAuB,GACtC,OAAO,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,CAqC3C;AAkBD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAwBhF;AAsID;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,YAAY,CAgDpE;AAED,kFAAkF;AAClF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAa7D;AASD,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,MAAM,EACf,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,OAAO,EAAE,GACd,OAAO,EAAE,CAiEX;AAMD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,eAAe,CAC7B,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,EAAE,MAAM,EAChB,IAAI,CAAC,EAAE,OAAO,EAAE,GACf,OAAO,GAAG,IAAI,CAwBhB;AAgHD;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,sBAAsB,CAiCnF"}
1
+ {"version":3,"file":"threat-intel.d.ts","sourceRoot":"","sources":["../src/threat-intel.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAqB,sBAAsB,EAAE,MAAM,YAAY,CAAC;AAMrF,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,QAAQ,GAAG,IAAI,GAAG,KAAK,GAAG,MAAM,GAAG,SAAS,CAAC;IACnD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,CAAC;IAC1D,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,+EAA+E;AAC/E,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,EAAE,YAAY,CAAC,GAAG;IACvD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,6BAA6B,CAAC;AA6yb5D,eAAO,MAAM,SAAS,eAAe,CAAC;AACtC,eAAO,MAAM,eAAe,qBAAqB,CAAC;AAGlD;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,kBAAkB;;;;EAI7B,CAAC;AAEH,+DAA+D;AAC/D,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,cAAc,IAAI,OAAO,EAAE,CAE1C;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,wBAAgB,iBAAiB,IAAI,SAAS,OAAO,EAAE,CAEtD;AAeD;;;;;;;;GAQG;AACH,wBAAgB,qBAAqB,IAAI,IAAI,CAE5C;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,eAAe,CAC7B,QAAQ,CAAC,EAAE,MAAM,EACjB,aAAa,CAAC,EAAE,MAAM,GACrB,OAAO,EAAE,CA+CX;AAqDD;;;;;;;;;;GAUG;AACH,wBAAsB,gBAAgB,CACpC,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,MAAM,EACjB,cAAc,GAAE,kBAAuB,GACtC,OAAO,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC,CAqC3C;AAkBD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAwBhF;AAsID;;;;;;GAMG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,YAAY,CAgDpE;AAED,kFAAkF;AAClF,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAa7D;AASD,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,MAAM,EACf,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,OAAO,EAAE,GACd,OAAO,EAAE,CAiEX;AAMD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,eAAe,CAC7B,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,EAAE,MAAM,EAChB,IAAI,CAAC,EAAE,OAAO,EAAE,GACf,OAAO,GAAG,IAAI,CAwBhB;AAgHD;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,sBAAsB,CAiCnF"}
@@ -13839,6 +13839,171 @@ const FEED_CHUNK_13 = [
13839
13839
  { type: "package", value: "streak-metricazbd", severity: "critical", confidence: 0.9, family: "RedShell", campaign: "RedC2", source: "TrendAI, The Hacker News", firstSeen: "2026-08-20" },
13840
13840
  { type: "ip", value: "217.60.77.63", severity: "critical", confidence: 0.85, family: "RedShell", campaign: "RedC2", source: "TrendAI", firstSeen: "2026-08-20" },
13841
13841
  { type: "hash", value: "4537b1189ce419f1a595cf47216c03f80e9170ce80dad8d9227a1e52f9cb3466", severity: "critical", confidence: 0.85, family: "RedShell", campaign: "RedC2", source: "TrendAI", firstSeen: "2026-08-20" },
13842
+ // Imported from GitHub Advisory Database (2026-08-15) - see docs/threat-feed-sources.md
13843
+ { type: "package", value: "pypi:rce-test@0.1", severity: "critical", confidence: 1.0, source: "GHSA-5j7w-88pp-6hpr, MAL-2026-14523", firstSeen: "2026-08-26" },
13844
+ { type: "package", value: "pypi:syntaxerror-package-12345@0.1", severity: "critical", confidence: 1.0, source: "GHSA-pg4p-fr45-wfxc, MAL-2026-14522", firstSeen: "2026-08-26" },
13845
+ { type: "package", value: "express-security-policy", severity: "critical", confidence: 1.0, source: "GHSA-3hxc-wppf-m25r, MAL-2026-2828", firstSeen: "2026-08-26" },
13846
+ { type: "package", value: "array-shuffler-utils-99", severity: "critical", confidence: 1.0, source: "GHSA-22jp-536p-wwgr, MAL-2026-14519", firstSeen: "2026-08-26" },
13847
+ { type: "package", value: "renovate-config-doctolib", severity: "critical", confidence: 1.0, source: "GHSA-8327-2h3c-rm8g, MAL-2026-2830", firstSeen: "2026-08-26" },
13848
+ { type: "package", value: "fivem-tool-helper-v2", severity: "critical", confidence: 1.0, source: "GHSA-qgxc-chq8-gvrg, MAL-2026-14521", firstSeen: "2026-08-26" },
13849
+ { type: "package", value: "fivem-tool-helper", severity: "critical", confidence: 1.0, source: "GHSA-7jgv-5jq7-38g6, MAL-2026-14520", firstSeen: "2026-08-26" },
13850
+ { type: "package", value: "svelte-ui-cls", severity: "critical", confidence: 1.0, source: "GHSA-q88r-gcjf-c3jc, MAL-2026-14518", firstSeen: "2026-08-25" },
13851
+ { type: "package", value: "hydration-ui-cls", severity: "critical", confidence: 1.0, source: "GHSA-596w-j9vp-pr5x, MAL-2026-14517", firstSeen: "2026-08-25" },
13852
+ { type: "package", value: "pypi:minecraft-ytreceiver@0.1.0", severity: "critical", confidence: 1.0, source: "GHSA-cj4w-748x-8w4q, MAL-2026-14516", firstSeen: "2026-08-25" },
13853
+ { type: "package", value: "pypi:minecraft-ytreceiver@0.2.0", severity: "critical", confidence: 1.0, source: "GHSA-cj4w-748x-8w4q, MAL-2026-14516", firstSeen: "2026-08-25" },
13854
+ { type: "package", value: "pypi:minecraft-ytreceiver@0.3.0", severity: "critical", confidence: 1.0, source: "GHSA-cj4w-748x-8w4q, MAL-2026-14516", firstSeen: "2026-08-25" },
13855
+ { type: "package", value: "pypi:minecraft-ytreceiver@0.4.0", severity: "critical", confidence: 1.0, source: "GHSA-cj4w-748x-8w4q, MAL-2026-14516", firstSeen: "2026-08-25" },
13856
+ { type: "package", value: "pypi:minecraft-ytreceiver@0.5.0", severity: "critical", confidence: 1.0, source: "GHSA-cj4w-748x-8w4q, MAL-2026-14516", firstSeen: "2026-08-25" },
13857
+ { type: "package", value: "wm-idp-sdk", severity: "critical", confidence: 1.0, source: "GHSA-hq9q-4jgc-997v, MAL-2026-4808", firstSeen: "2026-08-25" },
13858
+ { type: "package", value: "wm-eslint-fe", severity: "critical", confidence: 1.0, source: "GHSA-59qg-7f2g-4p3c, MAL-2026-14514", firstSeen: "2026-08-25" },
13859
+ { type: "package", value: "wm-lib-env-provider", severity: "critical", confidence: 1.0, source: "GHSA-54m9-xjx6-pf8x, MAL-2026-14515", firstSeen: "2026-08-25" },
13860
+ { type: "package", value: "vue-template-compiler-plugin", severity: "critical", confidence: 1.0, source: "GHSA-gvmg-cf54-7769, MAL-2026-3777", firstSeen: "2026-08-25" },
13861
+ { type: "package", value: "vue-compiler-sfc-plugin", severity: "critical", confidence: 1.0, source: "GHSA-v29w-qjvw-fm35, MAL-2026-4707", firstSeen: "2026-08-25" },
13862
+ { type: "package", value: "hexdrift", severity: "critical", confidence: 1.0, source: "GHSA-4p5f-gmxw-44x3, MAL-2026-14508", firstSeen: "2026-08-25" },
13863
+ { type: "package", value: "foldmap", severity: "critical", confidence: 1.0, source: "GHSA-q4hh-v9hg-92w7, MAL-2026-14507", firstSeen: "2026-08-25" },
13864
+ { type: "package", value: "vortnode", severity: "critical", confidence: 1.0, source: "GHSA-c3fw-fh7f-9h58, MAL-2026-5884", firstSeen: "2026-08-25" },
13865
+ { type: "package", value: "snapbuf", severity: "critical", confidence: 1.0, source: "GHSA-82xg-f5h2-7xf8, MAL-2026-14510", firstSeen: "2026-08-25" },
13866
+ { type: "package", value: "vite-plugin-model", severity: "critical", confidence: 1.0, source: "GHSA-p58m-2wrh-74xr, MAL-2026-10545", firstSeen: "2026-08-25" },
13867
+ { type: "package", value: "dim-hydration-ui", severity: "critical", confidence: 1.0, source: "GHSA-6797-g855-4767, MAL-2026-14429", firstSeen: "2026-08-25" },
13868
+ { type: "package", value: "dim-svelte-ui", severity: "critical", confidence: 1.0, source: "GHSA-w5m9-548m-c928, MAL-2026-14506", firstSeen: "2026-08-25" },
13869
+ { type: "package", value: "svelte-cls-ui", severity: "critical", confidence: 1.0, source: "GHSA-f6cw-gvwj-gw7f, MAL-2026-14511", firstSeen: "2026-08-25" },
13870
+ { type: "package", value: "hydration-cls-ui", severity: "critical", confidence: 1.0, source: "GHSA-q635-2q7j-grxm, MAL-2026-14489", firstSeen: "2026-08-25" },
13871
+ { type: "package", value: "vite-plugin-logo", severity: "critical", confidence: 1.0, source: "GHSA-cw37-h4jm-63xh, MAL-2026-5714", firstSeen: "2026-08-25" },
13872
+ { type: "package", value: "vite-plugin-cleaner", severity: "critical", confidence: 1.0, source: "GHSA-rx9h-69c4-qhq5, MAL-2026-13463", firstSeen: "2026-08-25" },
13873
+ { type: "package", value: "twork-data-services-proxy-prime-api-v1-account-overdraft-info@20.7.4", severity: "critical", confidence: 1.0, source: "GHSA-crw8-m6mj-q6qp, MAL-2026-12299", firstSeen: "2026-08-25" },
13874
+ { type: "package", value: "twork-data-services-sme-operations-authorizations@20.8.9", severity: "critical", confidence: 1.0, source: "GHSA-c4f8-h585-2c73, MAL-2026-12302", firstSeen: "2026-08-25" },
13875
+ { type: "package", value: "twork-data-services-aggregator-api-v2-data-view-company-company-profile-mf-data-transformer@20.5.3", severity: "critical", confidence: 1.0, source: "GHSA-337w-cgvw-mpg3, MAL-2026-11550", firstSeen: "2026-08-25" },
13876
+ { type: "package", value: "r4wk-book", severity: "critical", confidence: 1.0, source: "GHSA-jqfp-p3qc-cqm9, MAL-2026-14509", firstSeen: "2026-08-25" },
13877
+ { type: "package", value: "typedoc-xyz", severity: "critical", confidence: 1.0, source: "GHSA-v386-vp36-g4h2, MAL-2026-14513", firstSeen: "2026-08-25" },
13878
+ { type: "package", value: "twork-data-services-eacq-company-service-v2-api-v1-identifiers-crm@20.6.7", severity: "critical", confidence: 1.0, source: "GHSA-c75f-43pv-m83v, MAL-2026-12291", firstSeen: "2026-08-25" },
13879
+ { type: "package", value: "tailwind-scrollbar-hider", severity: "critical", confidence: 1.0, source: "GHSA-869j-r989-xpvr, MAL-2026-14512", firstSeen: "2026-08-25" },
13880
+ { type: "package", value: "twork-data-services-aggregator-sme-task-info@20.3.1", severity: "critical", confidence: 1.0, source: "GHSA-9rfw-4796-p982, MAL-2026-12288", firstSeen: "2026-08-25" },
13881
+ { type: "package", value: "twork-data-services-proxy-invest-symbols-list@20.4.6", severity: "critical", confidence: 1.0, source: "GHSA-c38m-2rcq-3x56, MAL-2026-12298", firstSeen: "2026-08-25" },
13882
+ { type: "package", value: "twork-data-services-customer-api-v2-customer-vip-status@20.9.7", severity: "critical", confidence: 1.0, source: "GHSA-xcx3-rr77-frhq, MAL-2026-12290", firstSeen: "2026-08-25" },
13883
+ { type: "package", value: "twork-data-services-aggregator-company-sme-main-timeline-loader-with-customers@20.3.8", severity: "critical", confidence: 1.0, source: "GHSA-cj3v-xccc-76vq, MAL-2026-12287", firstSeen: "2026-08-25" },
13884
+ { type: "package", value: "twork-products-taiga2-products-timeline@20.6.1", severity: "critical", confidence: 1.0, source: "GHSA-9qvm-6gf4-j2qh, MAL-2026-12307", firstSeen: "2026-08-25" },
13885
+ { type: "package", value: "twork-data-services-invest-box-account@20.8.8", severity: "critical", confidence: 1.0, source: "GHSA-7c2j-v8mh-f457, MAL-2026-12293", firstSeen: "2026-08-25" },
13886
+ { type: "package", value: "twork-data-services-counterfree@20.1.3", severity: "critical", confidence: 1.0, source: "GHSA-5g8h-2mx8-cxhm, MAL-2026-12289", firstSeen: "2026-08-25" },
13887
+ { type: "package", value: "twork-mf-sandbox@20.9.7", severity: "critical", confidence: 1.0, source: "GHSA-p94g-www2-hw8r, MAL-2026-12304", firstSeen: "2026-08-25" },
13888
+ { type: "package", value: "twork-data-services-procedure-engine-api-v1-procedure-info@20.6.9", severity: "critical", confidence: 1.0, source: "GHSA-2pmw-74jm-69r8, MAL-2026-12295", firstSeen: "2026-08-25" },
13889
+ { type: "package", value: "twork-data-services-getting-arrests@20.1.1", severity: "critical", confidence: 1.0, source: "GHSA-2gv9-x25v-532x, MAL-2026-12292", firstSeen: "2026-08-25" },
13890
+ { type: "package", value: "twork-data-services-role-app@20.9.6", severity: "critical", confidence: 1.0, source: "GHSA-3qwr-p55r-5cjh, MAL-2026-12300", firstSeen: "2026-08-25" },
13891
+ { type: "package", value: "twork-mf-e2e-nitro@20.8.5", severity: "critical", confidence: 1.0, source: "GHSA-3x7v-w9ww-h4vm, MAL-2026-12303", firstSeen: "2026-08-25" },
13892
+ { type: "package", value: "tw-theme-kit", severity: "critical", confidence: 1.0, source: "GHSA-g2wq-vjqj-xc3h, MAL-2026-5935", firstSeen: "2026-08-25" },
13893
+ { type: "package", value: "new-eslint", severity: "critical", confidence: 1.0, source: "GHSA-8h72-5mvw-5f6r, MAL-2026-6224", firstSeen: "2026-08-25" },
13894
+ { type: "package", value: "mjs-eslint", severity: "critical", confidence: 1.0, source: "GHSA-r6f7-88jj-mg66, MAL-2026-6223", firstSeen: "2026-08-25" },
13895
+ { type: "package", value: "travel-core-utils-object", severity: "critical", confidence: 1.0, source: "GHSA-m3rm-367q-8gf3, MAL-2026-12487", firstSeen: "2026-08-25" },
13896
+ { type: "package", value: "transform-es2015-sticky-regex", severity: "critical", confidence: 1.0, source: "GHSA-2j63-q9jc-966c, MAL-2026-10136", firstSeen: "2026-08-25" },
13897
+ { type: "package", value: "video-crate-check", severity: "critical", confidence: 1.0, source: "GHSA-gwcq-5jcj-p2x4, MAL-2026-14504", firstSeen: "2026-08-25" },
13898
+ { type: "package", value: "voice-crate-check", severity: "critical", confidence: 1.0, source: "GHSA-3vqr-jqwr-7m6q, MAL-2026-14505", firstSeen: "2026-08-25" },
13899
+ { type: "package", value: "text-crate-check", severity: "critical", confidence: 1.0, source: "GHSA-c5pr-66ph-gfp9, MAL-2026-14503", firstSeen: "2026-08-25" },
13900
+ { type: "package", value: "tinkoff-statist-browser-typed-client-test.softwarecenter.metrics@20.1.3", severity: "critical", confidence: 1.0, source: "GHSA-vwg2-5528-w9wc, MAL-2026-12278", firstSeen: "2026-08-25" },
13901
+ { type: "package", value: "tms-x-headers@20.2.9", severity: "critical", confidence: 1.0, source: "GHSA-35hv-47hh-35xx, MAL-2026-12480", firstSeen: "2026-08-25" },
13902
+ { type: "package", value: "tinkoff-statist-browser-typed-client-sme.platform.mobile.dynamicteasers.common@20.8.7", severity: "critical", confidence: 1.0, source: "GHSA-6w5q-p9g3-26hf, MAL-2026-12270", firstSeen: "2026-08-25" },
13903
+ { type: "package", value: "tinkoff-ui-angular-addon-wysiwyg@20.7.8", severity: "critical", confidence: 1.0, source: "GHSA-pmq9-57f4-g2v7, MAL-2026-12283", firstSeen: "2026-08-25" },
13904
+ { type: "package", value: "tinkoff-statist-browser-typed-client-sme.rko.conversionpayments.web@20.3.8", severity: "critical", confidence: 1.0, source: "GHSA-8g6h-h8m6-w7cq, MAL-2026-12274", firstSeen: "2026-08-25" },
13905
+ { type: "package", value: "tinkoff-statist-browser-typed-client-sme.rko.authorization.common@20.5.5", severity: "critical", confidence: 1.0, source: "GHSA-8q7h-2qw7-c3cr, MAL-2026-12273", firstSeen: "2026-08-25" },
13906
+ { type: "package", value: "tinkoff-statist-browser-typed-client-mb.product.tgeofencing@20.9.6", severity: "critical", confidence: 1.0, source: "GHSA-rg3c-9vx6-5mfh, MAL-2026-12268", firstSeen: "2026-08-25" },
13907
+ { type: "package", value: "tinkoff-terminal-kit-carousel@20.6.3", severity: "critical", confidence: 1.0, source: "GHSA-g537-jjq6-mv8m, MAL-2026-11549", firstSeen: "2026-08-25" },
13908
+ { type: "package", value: "tinkoff-statist-browser-typed-client-mb.reliability.android.events@20.5.4", severity: "critical", confidence: 1.0, source: "GHSA-4rph-fx37-hfvw, MAL-2026-12269", firstSeen: "2026-08-25" },
13909
+ { type: "package", value: "tinkoff-statist-browser-typed-client-sme.platform.web.companyprofile.metrics@20.2.7", severity: "critical", confidence: 1.0, source: "GHSA-r3q8-h34r-9h8r, MAL-2026-12272", firstSeen: "2026-08-25" },
13910
+ { type: "package", value: "tinkoff-statist-browser-typed-client-sme.rko.ta.ios.events@20.6.1", severity: "critical", confidence: 1.0, source: "GHSA-9g84-6755-r9f2, MAL-2026-12276", firstSeen: "2026-08-25" },
13911
+ { type: "package", value: "tinkoff-terminal-kit-test-commons@20.9.7", severity: "critical", confidence: 1.0, source: "GHSA-p8g2-ph77-f7r9, MAL-2026-12281", firstSeen: "2026-08-25" },
13912
+ { type: "package", value: "tinkoff-statist-browser-typed-client-leasing.admin.events", severity: "critical", confidence: 1.0, source: "GHSA-pwcq-5xh6-9383, MAL-2026-12266", firstSeen: "2026-08-25" },
13913
+ { type: "package", value: "tinkoff-statist-browser-typed-client-investing.product.pulse", severity: "critical", confidence: 1.0, source: "GHSA-953w-4w4x-wp59, MAL-2026-12262", firstSeen: "2026-08-25" },
13914
+ { type: "package", value: "tinkoff-statist-browser-typed-client-investaccounting.events.templatepage.mainpage", severity: "critical", confidence: 1.0, source: "GHSA-48jc-v3r3-h4fr, MAL-2026-12261", firstSeen: "2026-08-25" },
13915
+ { type: "package", value: "devplatform-rest-resources-v1", severity: "critical", confidence: 1.0, source: "GHSA-hmhf-45wm-x62q, MAL-2026-12745", firstSeen: "2026-08-25" },
13916
+ { type: "package", value: "tinkoff-statist-browser-typed-client-eventea.projects.smartcam", severity: "critical", confidence: 1.0, source: "GHSA-946m-r2w5-9p55, MAL-2026-12260", firstSeen: "2026-08-25" },
13917
+ { type: "package", value: "bigops-timeline", severity: "critical", confidence: 1.0, source: "GHSA-4v4p-9667-cjpw, MAL-2026-12844", firstSeen: "2026-08-25" },
13918
+ { type: "package", value: "tinkoff-statist-browser-typed-client-dwh.chimera.base", severity: "critical", confidence: 1.0, source: "GHSA-w72w-w3fh-946m, MAL-2026-12258", firstSeen: "2026-08-25" },
13919
+ { type: "package", value: "devplatform-spa", severity: "critical", confidence: 1.0, source: "GHSA-544p-6vr9-4r6g, MAL-2026-12754", firstSeen: "2026-08-25" },
13920
+ { type: "package", value: "tinkoff-statist-browser-typed-client-dss.insurance.service", severity: "critical", confidence: 1.0, source: "GHSA-h5ww-8cvp-mj62, MAL-2026-12257", firstSeen: "2026-08-25" },
13921
+ { type: "package", value: "tinkoff-statist-browser-typed-client-art.apps.reporegistry", severity: "critical", confidence: 1.0, source: "GHSA-3h58-7m84-65h5, MAL-2026-12253", firstSeen: "2026-08-25" },
13922
+ { type: "package", value: "bigops-utils", severity: "critical", confidence: 1.0, source: "GHSA-m9jg-f26q-5hmq, MAL-2026-12853", firstSeen: "2026-08-25" },
13923
+ { type: "package", value: "bigops-timers", severity: "critical", confidence: 1.0, source: "GHSA-q2qx-j3hh-f9p2, MAL-2026-12846", firstSeen: "2026-08-25" },
13924
+ { type: "package", value: "tinkoff-pwa-confac-types", severity: "critical", confidence: 1.0, source: "GHSA-6rh3-gcq9-vmhv, MAL-2026-12252", firstSeen: "2026-08-25" },
13925
+ { type: "package", value: "tinkoff-pfp-integration-mobile-slider-icons", severity: "critical", confidence: 1.0, source: "GHSA-6c78-688f-6vxq, MAL-2026-12250", firstSeen: "2026-08-25" },
13926
+ { type: "package", value: "tinkoff-pfp-block-mobile-panels", severity: "critical", confidence: 1.0, source: "GHSA-gp62-rq95-4fg5, MAL-2026-12249", firstSeen: "2026-08-25" },
13927
+ { type: "package", value: "tinkoff-pfp-atom-styles-tiles", severity: "critical", confidence: 1.0, source: "GHSA-9wpj-x935-r4fj, MAL-2026-12246", firstSeen: "2026-08-25" },
13928
+ { type: "package", value: "tinkoff-fb-rf-add-application", severity: "critical", confidence: 1.0, source: "GHSA-pvc7-jp4m-6758, MAL-2026-12242", firstSeen: "2026-08-25" },
13929
+ { type: "package", value: "tinkoff-mutual-mgm-form", severity: "critical", confidence: 1.0, source: "GHSA-6q5q-68cm-4f3c, MAL-2026-12244", firstSeen: "2026-08-25" },
13930
+ { type: "package", value: "tinkoff-component-page-loader", severity: "critical", confidence: 1.0, source: "GHSA-3p77-c6f9-pffh, MAL-2026-12239", firstSeen: "2026-08-25" },
13931
+ { type: "package", value: "bigops-statements-timeline", severity: "critical", confidence: 1.0, source: "GHSA-mrfg-393h-v67j, MAL-2026-13250", firstSeen: "2026-08-25" },
13932
+ { type: "package", value: "tinkoff-boxy-mobile-separator", severity: "critical", confidence: 1.0, source: "GHSA-rrcp-38vc-7qgw, MAL-2026-12235", firstSeen: "2026-08-25" },
13933
+ { type: "package", value: "chai-as-otc@1.0.5", severity: "critical", confidence: 1.0, source: "GHSA-25gq-jqh3-6q7g, MAL-2026-14491", firstSeen: "2026-08-25" },
13934
+ { type: "package", value: "spotify-url-infos@3.4.2", severity: "critical", confidence: 1.0, source: "GHSA-2g79-q87f-wwc9, MAL-2026-14492", firstSeen: "2026-08-25" },
13935
+ { type: "package", value: "tinkoff-boxy-mobile-documents", severity: "critical", confidence: 1.0, source: "GHSA-97hc-v95m-g3h9, MAL-2026-12234", firstSeen: "2026-08-25" },
13936
+ { type: "package", value: "tinkoff-boxy-form-desktop-sme-registration-ooo", severity: "critical", confidence: 1.0, source: "GHSA-m24w-7xcq-wvr8, MAL-2026-12231", firstSeen: "2026-08-25" },
13937
+ { type: "package", value: "devplatform-spa-plugin-s3-module-loader", severity: "critical", confidence: 1.0, source: "GHSA-gr75-3hj7-ccxp, MAL-2026-12779", firstSeen: "2026-08-25" },
13938
+ { type: "package", value: "tinkoff-boxy-desktop-icons-horizontal", severity: "critical", confidence: 1.0, source: "GHSA-gm9f-hg73-pmwf, MAL-2026-12228", firstSeen: "2026-08-25" },
13939
+ { type: "package", value: "tinkoff-boxy-desktop-features-banner", severity: "critical", confidence: 1.0, source: "GHSA-rqq4-xpvf-6ch9, MAL-2026-12048", firstSeen: "2026-08-25" },
13940
+ { type: "package", value: "tinkoff-boxy-atom-text-link", severity: "critical", confidence: 1.0, source: "GHSA-wc79-x38v-pmr3, MAL-2026-12227", firstSeen: "2026-08-25" },
13941
+ { type: "package", value: "time-webkit-tag", severity: "critical", confidence: 1.0, source: "GHSA-hq8m-4h47-frrh, MAL-2026-12226", firstSeen: "2026-08-25" },
13942
+ { type: "package", value: "time-linters-webapp-eslint-config", severity: "critical", confidence: 1.0, source: "GHSA-xm67-8mvr-77j7, MAL-2026-12479", firstSeen: "2026-08-25" },
13943
+ { type: "package", value: "tcb-web-copy-to-clipboard", severity: "critical", confidence: 1.0, source: "GHSA-3pj2-pfvc-578w, MAL-2026-12475", firstSeen: "2026-08-25" },
13944
+ { type: "package", value: "tailwind-custom-forms", severity: "critical", confidence: 1.0, source: "GHSA-4mgg-vhf5-9r79, MAL-2026-12221", firstSeen: "2026-08-25" },
13945
+ { type: "package", value: "taiga-ui-proprietary-navigation", severity: "critical", confidence: 1.0, source: "GHSA-hgqj-cv8v-7c3m, MAL-2026-12474", firstSeen: "2026-08-25" },
13946
+ { type: "package", value: "devplatform-spa-tokens", severity: "critical", confidence: 1.0, source: "GHSA-67wj-rrpv-vxwq, MAL-2026-12785", firstSeen: "2026-08-25" },
13947
+ { type: "package", value: "swift-optimizer", severity: "critical", confidence: 1.0, source: "GHSA-7vv3-8cx6-w4g3, MAL-2026-4677", firstSeen: "2026-08-25" },
13948
+ { type: "package", value: "streak-view-core", severity: "critical", confidence: 1.0, source: "GHSA-vv6v-hc8c-p5q9, MAL-2026-12471", firstSeen: "2026-08-25" },
13949
+ { type: "package", value: "svelte-streak-map", severity: "critical", confidence: 1.0, source: "GHSA-79hp-j55f-97h5, MAL-2026-14500", firstSeen: "2026-08-25" },
13950
+ { type: "package", value: "streak-metric-core", severity: "critical", confidence: 1.0, source: "GHSA-86ww-mvrj-xx43, MAL-2026-12808", firstSeen: "2026-08-25" },
13951
+ { type: "package", value: "svelte-map-metric", severity: "critical", confidence: 1.0, source: "GHSA-2p6v-xwhm-f5h6, MAL-2026-14499", firstSeen: "2026-08-25" },
13952
+ { type: "package", value: "svelte-hydration-streak", severity: "critical", confidence: 1.0, source: "GHSA-9jcj-426x-9rmq, MAL-2026-14495", firstSeen: "2026-08-25" },
13953
+ { type: "package", value: "streak-math-lib", severity: "critical", confidence: 1.0, source: "GHSA-h6vq-775w-5ccg, MAL-2026-12469", firstSeen: "2026-08-25" },
13954
+ { type: "package", value: "svelte-intake-streaks", severity: "critical", confidence: 1.0, source: "GHSA-hjjx-chqx-6225, MAL-2026-14498", firstSeen: "2026-08-25" },
13955
+ { type: "package", value: "streak-math-kit", severity: "critical", confidence: 1.0, source: "GHSA-xh5x-2q38-w88g, MAL-2026-12468", firstSeen: "2026-08-25" },
13956
+ { type: "package", value: "streak-int-lib", severity: "critical", confidence: 1.0, source: "GHSA-266j-4pvf-xhwr, MAL-2026-12467", firstSeen: "2026-08-25" },
13957
+ { type: "package", value: "streak-grid-core", severity: "critical", confidence: 1.0, source: "GHSA-jwcj-rx9q-cxm8, MAL-2026-12807", firstSeen: "2026-08-25" },
13958
+ { type: "package", value: "svelte-goal-streaks", severity: "critical", confidence: 1.0, source: "GHSA-jvfh-h9rq-x29f, MAL-2026-14494", firstSeen: "2026-08-25" },
13959
+ { type: "package", value: "streak-daykit", severity: "critical", confidence: 1.0, source: "GHSA-7vmx-4mxx-6vxr, MAL-2026-12466", firstSeen: "2026-08-25" },
13960
+ { type: "package", value: "streak-daykey-lib", severity: "critical", confidence: 1.0, source: "GHSA-v22h-w6r5-jwfx, MAL-2026-12465", firstSeen: "2026-08-25" },
13961
+ { type: "package", value: "streak-daybucket", severity: "critical", confidence: 1.0, source: "GHSA-6hxq-4f7r-8562, MAL-2026-12464", firstSeen: "2026-08-25" },
13962
+ { type: "package", value: "svelte-streak-panel", severity: "critical", confidence: 1.0, source: "GHSA-vvc8-cg5m-2pmp, MAL-2026-14501", firstSeen: "2026-08-25" },
13963
+ { type: "package", value: "svelte-streak-tracker", severity: "critical", confidence: 1.0, source: "GHSA-mvgf-wmjm-6q56, MAL-2026-14502", firstSeen: "2026-08-25" },
13964
+ { type: "package", value: "streak-day-primitives", severity: "critical", confidence: 1.0, source: "GHSA-792g-8w6v-23q8, MAL-2026-12463", firstSeen: "2026-08-25" },
13965
+ { type: "package", value: "streak-daily-core", severity: "critical", confidence: 1.0, source: "GHSA-8vjj-vq79-pf8g, MAL-2026-12461", firstSeen: "2026-08-25" },
13966
+ { type: "package", value: "svelte-insights-streak", severity: "critical", confidence: 1.0, source: "GHSA-qf7v-g3vj-m3w2, MAL-2026-14497", firstSeen: "2026-08-25" },
13967
+ { type: "package", value: "streak-count-core", severity: "critical", confidence: 1.0, source: "GHSA-6qqq-g7qr-g756, MAL-2026-12460", firstSeen: "2026-08-25" },
13968
+ { type: "package", value: "svelte-insight-streaks", severity: "critical", confidence: 1.0, source: "GHSA-m4w5-mww4-j2vr, MAL-2026-14496", firstSeen: "2026-08-25" },
13969
+ { type: "package", value: "streak-core-insights", severity: "critical", confidence: 1.0, source: "GHSA-v7qq-2qm4-hcjx, MAL-2026-12459", firstSeen: "2026-08-25" },
13970
+ { type: "package", value: "streak-core-bucket", severity: "critical", confidence: 1.0, source: "GHSA-mpp6-fx3r-vwff, MAL-2026-12806", firstSeen: "2026-08-25" },
13971
+ { type: "package", value: "svelte-daily-streaks", severity: "critical", confidence: 1.0, source: "GHSA-xvrp-wvcw-8jrp, MAL-2026-14493", firstSeen: "2026-08-25" },
13972
+ { type: "package", value: "streak-calendar-core", severity: "critical", confidence: 1.0, source: "GHSA-6vcc-7wg6-pwfr, MAL-2026-12458", firstSeen: "2026-08-25" },
13973
+ { type: "package", value: "statist-browser-typed-client-sme.platform.web.teasers", severity: "critical", confidence: 1.0, source: "GHSA-wc3c-f696-mj8v, MAL-2026-12310", firstSeen: "2026-08-25" },
13974
+ { type: "package", value: "statist-browser-typed-client-sme.platform.web.productsnavigation.events", severity: "critical", confidence: 1.0, source: "GHSA-9v23-vh6j-pcw7, MAL-2026-12214", firstSeen: "2026-08-25" },
13975
+ { type: "package", value: "statist-browser-typed-client-nfs.grocery.mobile.events", severity: "critical", confidence: 1.0, source: "GHSA-82jq-m327-383g, MAL-2026-12074", firstSeen: "2026-08-25" },
13976
+ { type: "package", value: "statist-browser-typed-client-mb.product.analytics", severity: "critical", confidence: 1.0, source: "GHSA-2947-fxx7-8vw5, MAL-2026-12211", firstSeen: "2026-08-25" },
13977
+ { type: "package", value: "mc-provider", severity: "critical", confidence: 1.0, source: "GHSA-8r2v-hr8v-g7hw, MAL-2026-14305", firstSeen: "2026-08-25" },
13978
+ { type: "package", value: "supersig", severity: "critical", confidence: 1.0, source: "GHSA-vjp6-7fgj-3cgm, MAL-2026-13461", firstSeen: "2026-08-25" },
13979
+ { type: "package", value: "mkb-manager", severity: "critical", confidence: 1.0, source: "GHSA-wvpv-8v52-pgq7, MAL-2026-14490", firstSeen: "2026-08-25" },
13980
+ { type: "package", value: "mc-registry", severity: "critical", confidence: 1.0, source: "GHSA-73h8-3qpw-h3wv, MAL-2026-14294", firstSeen: "2026-08-25" },
13981
+ { type: "package", value: "statist-browser-typed-client-hra.workplacer.events", severity: "critical", confidence: 1.0, source: "GHSA-679q-9657-vwr6, MAL-2026-12045", firstSeen: "2026-08-25" },
13982
+ { type: "package", value: "cat-embed-i18n-res@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-rhrq-fjfx-w79w, MAL-2026-14471", firstSeen: "2026-08-25" },
13983
+ { type: "package", value: "cscasereadserv-paypal@3.4.3", severity: "critical", confidence: 1.0, source: "GHSA-4mqc-vvm7-p2hw, MAL-2026-14472", firstSeen: "2026-08-25" },
13984
+ { type: "package", value: "ecobee-api@0.0.2", severity: "critical", confidence: 1.0, source: "GHSA-43wq-pqvv-wrfp, MAL-2026-14474", firstSeen: "2026-08-25" },
13985
+ { type: "package", value: "css-import-order@1.1.0", severity: "critical", confidence: 1.0, source: "GHSA-wvcf-q8gp-q5fr, MAL-2026-14473", firstSeen: "2026-08-25" },
13986
+ { type: "package", value: "ecobee-home@0.0.2", severity: "critical", confidence: 1.0, source: "GHSA-pgxr-6ccj-jvc7, MAL-2026-14475", firstSeen: "2026-08-25" },
13987
+ { type: "package", value: "vite-plugin-images-analysis@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-7v76-qr6c-f759, MAL-2026-14482", firstSeen: "2026-08-25" },
13988
+ { type: "package", value: "mham-js@1.0.4", severity: "critical", confidence: 1.0, source: "GHSA-9g9c-6h9f-qh35, MAL-2026-14478", firstSeen: "2026-08-25" },
13989
+ { type: "package", value: "vite-plugin-image-analysis@1.1.0", severity: "critical", confidence: 1.0, source: "GHSA-9frw-xww8-fcr6, MAL-2026-14480", firstSeen: "2026-08-25" },
13990
+ { type: "package", value: "vite-plugin-image-analysis@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-9frw-xww8-fcr6, MAL-2026-14480", firstSeen: "2026-08-25" },
13991
+ { type: "package", value: "vite-plugin-image-analysis@1.1.2", severity: "critical", confidence: 1.0, source: "GHSA-9frw-xww8-fcr6, MAL-2026-14480", firstSeen: "2026-08-25" },
13992
+ { type: "package", value: "js-soul@1.0.4", severity: "critical", confidence: 1.0, source: "GHSA-rmrh-vmhx-4v53, MAL-2026-14477", firstSeen: "2026-08-25" },
13993
+ { type: "package", value: "vite-plugin-image-tracker@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-gc66-9c4x-mwq7, MAL-2026-14481", firstSeen: "2026-08-25" },
13994
+ { type: "package", value: "vite-plugin-image-tracker@1.1.0", severity: "critical", confidence: 1.0, source: "GHSA-gc66-9c4x-mwq7, MAL-2026-14481", firstSeen: "2026-08-25" },
13995
+ { type: "package", value: "pypi:python-walletlibr-v@0.7.9", severity: "critical", confidence: 1.0, source: "GHSA-pfrw-v3ch-6m8x, MAL-2026-14488", firstSeen: "2026-08-25" },
13996
+ { type: "package", value: "hyperion-react-native-testapp@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-q4j8-mj3q-r8wq, MAL-2025-6727", firstSeen: "2026-08-25" },
13997
+ { type: "package", value: "modules-newline@0.0.6", severity: "critical", confidence: 1.0, source: "GHSA-5prp-v9g3-92pq, MAL-2026-14483", firstSeen: "2026-08-25" },
13998
+ { type: "package", value: "spotify-url-resolovela@3.4.2", severity: "critical", confidence: 1.0, source: "GHSA-p8q8-gj7w-c8jh, MAL-2026-14487", firstSeen: "2026-08-25" },
13999
+ { type: "package", value: "react-remove-properties@6.14.1", severity: "critical", confidence: 1.0, source: "GHSA-3ppg-c7g5-4v3h, MAL-2026-14484", firstSeen: "2026-08-25" },
14000
+ { type: "package", value: "vite-plugin-bug-tracker@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-hr7f-wpph-3wjg, MAL-2026-14479", firstSeen: "2026-08-25" },
14001
+ { type: "package", value: "vite-plugin-bug-tracker@1.1.0", severity: "critical", confidence: 1.0, source: "GHSA-hr7f-wpph-3wjg, MAL-2026-14479", firstSeen: "2026-08-25" },
14002
+ { type: "package", value: "ecobee2@0.0.2", severity: "critical", confidence: 1.0, source: "GHSA-2hx9-wh72-ghxf, MAL-2026-14476", firstSeen: "2026-08-25" },
14003
+ { type: "package", value: "secretkey-2fa@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-53gx-pc7p-ww5j, MAL-2026-14485", firstSeen: "2026-08-25" },
14004
+ { type: "package", value: "secretkey-2fa@1.0.1", severity: "critical", confidence: 1.0, source: "GHSA-53gx-pc7p-ww5j, MAL-2026-14485", firstSeen: "2026-08-25" },
14005
+ { type: "package", value: "spf-analytics@1.0.0", severity: "critical", confidence: 1.0, source: "GHSA-688c-c373-7xcv, MAL-2026-14486", firstSeen: "2026-08-25" },
14006
+ { type: "package", value: "evm-validation@1.0.4", severity: "critical", confidence: 1.0, source: "GHSA-8f2h-vv9f-2gg5, MAL-2026-14301", firstSeen: "2026-08-19" },
13842
14007
  ];
13843
14008
  // Composed from the chunks above. A single array literal of this size trips
13844
14009
  // TS2590 ("union type that is too complex to represent") in tsc; splitting it
@@ -14578,7 +14743,7 @@ function getDetectionSetProvenance(cacheDir) {
14578
14743
  // No cache or invalid cache
14579
14744
  }
14580
14745
  return {
14581
- bundledVersion: "6.0.2",
14746
+ bundledVersion: "6.0.3",
14582
14747
  bundledEntryCount: BUNDLED_FEED.length,
14583
14748
  generatedAt: exports.FEED_GENERATED_AT,
14584
14749
  cacheMerged,