supply-chain-guard 5.18.2 → 5.19.0

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
@@ -131,7 +131,7 @@ Run the scanner as a [pre-commit](https://pre-commit.com) hook (Python-ecosystem
131
131
  ```yaml
132
132
  repos:
133
133
  - repo: https://github.com/homeofe/supply-chain-guard
134
- rev: v5.18.2
134
+ rev: v5.19.0
135
135
  hooks:
136
136
  - id: supply-chain-guard
137
137
  ```
package/dist/cli.js CHANGED
@@ -22,7 +22,7 @@ const program = new commander_1.Command();
22
22
  program
23
23
  .name("supply-chain-guard")
24
24
  .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.")
25
- .version("5.18.2");
25
+ .version("5.19.0");
26
26
  // ── scan command ────────────────────────────────────────────────────
27
27
  program
28
28
  .command("scan")
package/dist/reporter.js CHANGED
@@ -62,7 +62,7 @@ function formatJson(report) {
62
62
  function formatText(report) {
63
63
  const lines = [];
64
64
  // ── layout constants ───────────────────────────────────────────────────────
65
- const VERSION = "5.18.2";
65
+ const VERSION = "5.19.0";
66
66
  const W = 76; // visible chars between "│ " and " │" (total line = 80)
67
67
  // ── ANSI helpers ───────────────────────────────────────────────────────────
68
68
  const stripAnsi = (s) => s.replace(/\x1b\[[0-9;]*m/g, "");
@@ -497,7 +497,7 @@ function formatSarif(report) {
497
497
  tool: {
498
498
  driver: {
499
499
  name: "supply-chain-guard",
500
- version: "5.18.2",
500
+ version: "5.19.0",
501
501
  informationUri: "https://github.com/homeofe/supply-chain-guard",
502
502
  rules,
503
503
  },
@@ -559,7 +559,7 @@ function formatSbom(report) {
559
559
  timestamp: report.timestamp,
560
560
  tools: {
561
561
  components: [
562
- { type: "application", name: "supply-chain-guard", version: "5.18.2" },
562
+ { type: "application", name: "supply-chain-guard", version: "5.19.0" },
563
563
  ],
564
564
  },
565
565
  component: {
@@ -677,7 +677,7 @@ function formatGitlab(report) {
677
677
  name: "supply-chain-guard",
678
678
  url: "https://github.com/homeofe/supply-chain-guard",
679
679
  vendor: { name: "supply-chain-guard" },
680
- version: "5.18.2",
680
+ version: "5.19.0",
681
681
  };
682
682
  const vulnerabilities = report.findings
683
683
  .filter((f) => !f.suppressed)
@@ -907,7 +907,7 @@ footer{text-align:center;padding:24px;color:#94a3b8;font-size:13px}
907
907
  ` : ""}
908
908
 
909
909
  <footer>
910
- Generated by <a href="https://github.com/homeofe/supply-chain-guard">supply-chain-guard</a> v5.18.2
910
+ Generated by <a href="https://github.com/homeofe/supply-chain-guard">supply-chain-guard</a> v5.19.0
911
911
  </footer>
912
912
  </div>
913
913
  <script>
package/dist/scanner.js CHANGED
@@ -90,7 +90,7 @@ const slsa_verifier_js_1 = require("./slsa-verifier.js");
90
90
  const dependency_confusion_js_1 = require("./dependency-confusion.js");
91
91
  const mcp_scanner_js_1 = require("./mcp-scanner.js");
92
92
  const skills_scanner_js_1 = require("./skills-scanner.js");
93
- const TOOL_VERSION = "5.18.2";
93
+ const TOOL_VERSION = "5.19.0";
94
94
  /**
95
95
  * Exact files that contain this package's own inert detector definitions or
96
96
  * regression fixtures.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supply-chain-guard",
3
- "version": "5.18.2",
3
+ "version": "5.19.0",
4
4
  "mcpName": "io.github.homeofe/supply-chain-guard",
5
5
  "description": "Open-source supply-chain security scanner for npm, PyPI, Cargo, Go, RubyGems, Composer, NuGet, Docker, VS Code extensions, GitHub Actions, IaC and Solana C2. Detects GlassWorm, Shai-Hulud, PPE attacks, dependency confusion and 350+ threat indicators across all major lockfile formats (npm, pnpm, yarn, bun). Generates CycloneDX 1.6 SBOMs, grades SLSA provenance (in-toto/DSSE structural validation), and correlates findings into attack-chain incidents.",
6
6
  "main": "dist/index.js",