guardvibe 3.1.3 → 3.1.4

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.
@@ -53,7 +53,10 @@ export const dockerfileRules = [
53
53
  severity: "medium",
54
54
  owasp: "A05:2025 Security Misconfiguration",
55
55
  description: "ADD has extra features (URL fetch, tar extraction) that can introduce unexpected behavior. Use COPY for local files.",
56
- pattern: /ADD\s+(?!https?:\/\/)\S+\s+\S+/gi,
56
+ // Anchor to start of line + case-sensitive: Docker `ADD` instruction is uppercase and
57
+ // begins a line. Matching `add` case-insensitive caught `RUN pnpm add`, `apk add`,
58
+ // `yarn add`, etc. — package-manager subcommands inside RUN, not Docker instructions.
59
+ pattern: /^ADD\s+(?!https?:\/\/)\S+\s+\S+/gm,
57
60
  languages: ["dockerfile"],
58
61
  fix: "Use COPY instead of ADD for local files. Only use ADD for URLs or tar extraction.",
59
62
  fixCode: "# Use COPY for local files\nCOPY ./src /app/src\n# Only use ADD for remote files or tar extraction\n# ADD https://example.com/file.tar.gz /app/",
@@ -90,7 +90,10 @@ export const nextjsRules = [
90
90
  severity: "high",
91
91
  owasp: "A01:2025 Broken Access Control",
92
92
  description: "Sensitive data (tokens, secrets, internal IDs) appears to be passed from server to client component as props.",
93
- pattern: /(?:(?:^|[^a-zA-Z])(?:secret|token|password|apiKey|api_key|privateKey|private_key|internalId|ssn|creditCard|credit_card))\s*=\s*\{[\s\S]*?\}/g,
93
+ // Require no-space `=` to match JSX prop syntax (`token={value}`) and exclude JS object
94
+ // literal assignments (`apiKey = { ... }`, `token = { ... }`) common in test helpers,
95
+ // default-param destructuring, and config objects.
96
+ pattern: /(?:(?:^|[^a-zA-Z])(?:secret|token|password|apiKey|api_key|privateKey|private_key|internalId|ssn|creditCard|credit_card))=\{[\s\S]*?\}/g,
94
97
  languages: ["javascript", "typescript"],
95
98
  fix: "Never pass sensitive data as props to client components. Keep secrets server-side.",
96
99
  fixCode: "// Keep sensitive data server-side\nexport default async function Page() {\n const secret = process.env.API_SECRET;\n const publicData = await fetchData(secret);\n return <ClientComponent data={publicData} />;\n}",
@@ -471,6 +471,33 @@ export function analyzeCode(code, language, framework, filePath, configDir, rule
471
471
  // Skip destructive DDL rules (VG540-VG542) and view rules (VG439) in migration directories
472
472
  if ((rule.id.startsWith("VG54") || rule.id === "VG439") && isMigrationFile)
473
473
  continue;
474
+ // VG146 (Unquoted .env Value): only fire on `.env` / `.env.local` / `.env.production` etc.
475
+ // Bash scripts use `${VAR:-default}` and similar expansions that legitimately contain
476
+ // `{`, `}`, `:` characters; matching them as "unquoted env values" is a FP class.
477
+ if (rule.id === "VG146" && filePath && !/(?:^|\/)\.env(?:\.[\w.-]+)?$/.test(filePath))
478
+ continue;
479
+ // VG200 (Container running as root): skip when a USER directive exists anywhere in the file.
480
+ // The rule's regex with `(?:(?!^USER)[\s\S])*` is unreliable across multi-stage builds; a
481
+ // file-level check is more robust.
482
+ if (rule.id === "VG200" && /^USER\s+\S+/m.test(code))
483
+ continue;
484
+ // VG206 (Missing HEALTHCHECK): skip when a HEALTHCHECK directive exists anywhere. The
485
+ // rule's regex requires HEALTHCHECK *after* CMD/ENTRYPOINT, but Dockerfiles commonly place
486
+ // HEALTHCHECK before CMD (nginx production stage), producing FPs.
487
+ if (rule.id === "VG206" && /^HEALTHCHECK\s+/m.test(code))
488
+ continue;
489
+ // VG407 (Server Data Leaked to Client Component): skip files that ARE client components.
490
+ // Signals: the `"use client"` directive (Next.js App Router) OR usage of React state/effect
491
+ // hooks (universal client-render signal — Remix, Vite-React, Pages Router, etc.). The rule
492
+ // targets server→client prop-boundary leaks; intra-client passing of local form state to
493
+ // a child component (e.g. PasswordStrengthIndicator) is not the same boundary.
494
+ if (rule.id === "VG407") {
495
+ const head = code.slice(0, 1000);
496
+ const hasUseClient = /^\s*['"]use client['"];?\s*$/m.test(head);
497
+ const hasReactStateHooks = /\b(?:useState|useReducer|useEffect|useLayoutEffect|useRef|useMemo|useCallback|useContext|useTransition|useSyncExternalStore)\s*\(/.test(code);
498
+ if (hasUseClient || hasReactStateHooks)
499
+ continue;
500
+ }
474
501
  // Skip SQL injection rules in schema/migration .sql files (DDL, not user input)
475
502
  if (rule.id === "VG543" && (isMigrationFile || isSqlSchemaFile))
476
503
  continue;
@@ -651,12 +678,24 @@ export function analyzeCode(code, language, framework, filePath, configDir, rule
651
678
  effectiveRule = { ...effectiveRule, severity: "low" };
652
679
  }
653
680
  }
681
+ // VG202 (latest/untagged image): pre-compute `AS <alias>` names from the file so
682
+ // matches against intermediate-stage references (`FROM base AS builder`) can be
683
+ // filtered out at match time. The set is null for other rules to avoid wasted work.
684
+ const dockerStageAliases = rule.id === "VG202"
685
+ ? new Set(Array.from(code.matchAll(/^FROM\s+\S+\s+AS\s+(\w[\w.-]*)/gim)).map(m => m[1].toLowerCase()))
686
+ : null;
654
687
  let match;
655
688
  while ((match = rule.pattern.exec(code)) !== null) {
656
689
  const beforeMatch = code.substring(0, match.index);
657
690
  const lineNumber = beforeMatch.split("\n").length;
658
691
  if (isLineSuppressed(suppressions, lineNumber, rule.id))
659
692
  continue;
693
+ // VG202: skip when the FROM target matches a previous AS-alias in the same file.
694
+ if (dockerStageAliases) {
695
+ const target = match[0].replace(/^FROM\s+/i, "").split(/[:@\s]/)[0].toLowerCase();
696
+ if (dockerStageAliases.has(target))
697
+ continue;
698
+ }
660
699
  // Skip matches on comment lines and inside string literals.
661
700
  // CVE version-pin rules (VG900-VG931) are exempt — they scan package.json
662
701
  // dependency declarations where these contexts don't apply.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "guardvibe",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "mcpName": "io.github.goklab/guardvibe",
5
5
  "description": "Security MCP for vibe coding. 390 rules, 36 tools, CLI + doctor. Host security, auth coverage mapping, LLM-powered deep scan (IDOR/business logic), taint analysis, +25 AI-native rules (MCP supply-chain, RAG/vector poisoning, agent loop DoS, public-prefix LLM keys, sandbox bypass). Plus Next.js, Supabase, Clerk, Stripe, Prisma, tRPC, Hono, GraphQL, Convex, Turso, Uploadthing, AI SDK, and the full AI-generated stack.",
6
6
  "type": "module",