{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "GHSA-58qx-3vcg-4xpx", "name": "ws: GHSA-58qx-3vcg-4xpx", "shortDescription": {"text": "ws: GHSA-58qx-3vcg-4xpx"}, "fullDescription": {"text": "ws: Uninitialized memory disclosure"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKR003", "name": "Compose service `wispterm-remote` image uses the latest tag", "shortDescription": {"text": "Compose service `wispterm-remote` image uses the latest tag"}, "fullDescription": {"text": "The latest tag is mutable and can change without a code review, producing different images from the same source."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "DKR007", "name": "Docker build context has no .dockerignore", "shortDescription": {"text": "Docker build context has no .dockerignore"}, "fullDescription": {"text": "Without .dockerignore, build context can include source history, local env files, dependencies, and generated artifacts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 20 (SonarSource scale). Cognitive complexi", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weig"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 20."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "SEC087", "name": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces", "shortDescription": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "fullDescription": {"text": "Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser)."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR002", "name": "[ERR002] Empty Catch Block: Empty catch blocks hide errors.", "shortDescription": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "fullDescription": {"text": "Log the error or rethrow it. Use console.error() at minimum."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC045", "name": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a latera", "shortDescription": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use obj"}, "fullDescription": {"text": "For literal data structures: use ast.literal_eval(text) \u2014 only parses literals, raises on code.\nFor formula evaluation: use asteval or simpleeval (purpose-built sandboxes with allow-lists).\nFor Odoo: use odoo.tools.safe_eval(expr, locals_dict, mode='exec').\nIf you genuinely need to execute admin-stored code: require explicit super-admin permission AND log every execution with a stack trace."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AGT012", "name": "Agent control bridge may listen on a network interface without visible auth", "shortDescription": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "fullDescription": {"text": "Agent, MCP, sidecar, and command bridge servers often start as local helpers. Binding them to 0.0.0.0 or a default all-interface listener without an authorization guard can expose tool execution or session data to the LAN."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AGT007", "name": "localStorage write failures are swallowed silently", "shortDescription": {"text": "localStorage write failures are swallowed silently"}, "fullDescription": {"text": "localStorage quotas are small and writes can fail. Catching storage errors without a user-visible warning causes silent data loss when notes, images, or snapshots exceed quota."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-GHA", "name": "GitHub Action `actions/download-artifact@v4` is 4 major version(s) behind (latest v8.0.1)", "shortDescription": {"text": "GitHub Action `actions/download-artifact@v4` is 4 major version(s) behind (latest v8.0.1)"}, "fullDescription": {"text": "`uses: actions/download-artifact@v4` is 4 major version(s) behind the latest published release v8.0.1. Old action majors run on deprecated runner images / Node versions and miss upstream fixes. This is the exact 'outdated GitHub Action' class Dependabot raises \u2014 and which Repobility had no coverage for."}, "properties": {"scanner": "repobility-dependency-currency", "category": "dependency", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED111", "name": "Bare except continues silently", "shortDescription": {"text": "Bare except continues silently"}, "fullDescription": {"text": "Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "If the image does not define USER internally, this service may run as root."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "SEC006", "name": "[SEC006] XSS Risk: Direct HTML injection without sanitization.", "shortDescription": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "fullDescription": {"text": "Use textContent instead of innerHTML. Sanitize with DOMPurify."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "low", "confidence": 0.4, "cwe": "", "owasp": ""}}, {"id": "ERR003", "name": "[ERR003] Ignored Error (Go): Ignoring error return values.", "shortDescription": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "fullDescription": {"text": "Handle the error or use errcheck linter."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-NPM", "name": "npm package `tsx` is minor version(s) behind (4.21.0 -> 4.22.4)", "shortDescription": {"text": "npm package `tsx` is minor version(s) behind (4.21.0 -> 4.22.4)"}, "fullDescription": {"text": "`tsx` is pinned/resolved at 4.21.0 but the latest stable release on the npm registry is 4.22.4 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise."}, "properties": {"scanner": "repobility-dependency-currency", "category": "dependency", "severity": "low", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED075", "name": "[MINED075] C Malloc No Check: malloc/calloc/realloc return value used without checking for NULL.", "shortDescription": {"text": "[MINED075] C Malloc No Check: malloc/calloc/realloc return value used without checking for NULL."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-690 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED098", "name": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios ", "shortDescription": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "fullDescription": {"text": "Import the library where you need it instead of attaching to window. For legitimate global registries, use a namespaced object (e.g., `window.__myApp.axios`)."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED051", "name": "[MINED051] Csharp Null Forgive: x! tells compiler \"definitely not null\" \u2014 bypasses nullable check. NRE risk if wrong.", "shortDescription": {"text": "[MINED051] Csharp Null Forgive: x! tells compiler \"definitely not null\" \u2014 bypasses nullable check. NRE risk if wrong."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 9 more): Same pattern found in 9 addit", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 6 more): Same pattern found in 6 additi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC013", "name": "[SEC013] Path Traversal \u2014 User Input in File Path (and 3 more): Same pattern found in 3 additional files. Review if need", "shortDescription": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED005", "name": "[MINED005] Lua Loadstring (and 5 more): Same pattern found in 5 additional files. Review if needed.", "shortDescription": {"text": "[MINED005] Lua Loadstring (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-95 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED070", "name": "[MINED070] Zig Undefined Init (and 61 more): Same pattern found in 61 additional files. Review if needed.", "shortDescription": {"text": "[MINED070] Zig Undefined Init (and 61 more): Same pattern found in 61 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED059", "name": "[MINED059] Rust Expect In Prod (and 81 more): Same pattern found in 81 additional files. Review if needed.", "shortDescription": {"text": "[MINED059] Rust Expect In Prod (and 81 more): Same pattern found in 81 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 30 more): Same pattern found in 30 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 30 more): Same pattern found in 30 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED048", "name": "[MINED048] Php Error Suppress (and 251 more): Same pattern found in 251 additional files. Review if needed.", "shortDescription": {"text": "[MINED048] Php Error Suppress (and 251 more): Same pattern found in 251 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKR014", "name": "Dockerfile copies the entire context without .dockerignore", "shortDescription": {"text": "Dockerfile copies the entire context without .dockerignore"}, "fullDescription": {"text": "COPY . or ADD . sends the full build context to Docker. Without .dockerignore this can include secrets, git history, and local artifacts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums).", "shortDescription": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED012", "name": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code.", "shortDescription": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED002", "name": "[MINED002] Dart Null Bang: value! throws on null. Use ?. or null check.", "shortDescription": {"text": "[MINED002] Dart Null Bang: value! throws on null. Use ?. or null check."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that int", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTM"}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "Action `actions/download-artifact` pinned to mutable ref `@v4`", "shortDescription": {"text": "Action `actions/download-artifact` pinned to mutable ref `@v4`"}, "fullDescription": {"text": "`uses: actions/download-artifact@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED130", "name": "Lockfile pulls package from off-canonical host `registry.npmmirror.com`", "shortDescription": {"text": "Lockfile pulls package from off-canonical host `registry.npmmirror.com`"}, "fullDescription": {"text": "`package-lock.json` resolved URL for `node_modules/@emnapi/core` is `https://registry.npmmirror.com/@emnapi/core/-/core-1.10.0.tgz...` \u2014 host `registry.npmmirror.com` is not the canonical registry. Could be a mirror compromise, dependency confusion attack, or a forgotten private registry."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "Dockerfile FROM `node:22-alpine` not pinned by digest", "shortDescription": {"text": "Dockerfile FROM `node:22-alpine` not pinned by digest"}, "fullDescription": {"text": "`FROM node:22-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "`self.assertIn` used but never assigned in __init__", "shortDescription": {"text": "`self.assertIn` used but never assigned in __init__"}, "fullDescription": {"text": "Method `test_default_emits_wispterm_osc_fallback` of class `KittyGraphicsEmitTests` reads `self.assertIn`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "generic-api-key", "name": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", "shortDescription": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "fullDescription": {"text": "Gitleaks detected a committed secret or credential pattern."}, "properties": {"scanner": "gitleaks", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1028"}, "properties": {"repository": "xuzhougeng/wispterm", "repoUrl": "https://github.com/xuzhougeng/wispterm", "branch": "main"}, "results": [{"ruleId": "GHSA-58qx-3vcg-4xpx", "level": "warning", "message": {"text": "ws: GHSA-58qx-3vcg-4xpx"}, "properties": {"repobilityId": 96523, "scanner": "osv-scanner", "fingerprint": "8d7baabb03e1b3d3cbdddafc2f0895d3829ba41c5f759f3423d7641c16021049", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-45736"], "package": "ws", "rule_id": "GHSA-58qx-3vcg-4xpx", "scanner": "osv-scanner", "correlation_key": "vuln|ws|CVE-2026-45736|remote/package-lock.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `wispterm-remote` image uses the latest tag"}, "properties": {"repobilityId": 96515, "scanner": "repobility-docker", "fingerprint": "03d65e5f3ff2b87eeb0d022f367a89b3273fa093b303c5bb7e80b02c009de3a6", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "wispterm-remote:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|03d65e5f3ff2b87eeb0d022f367a89b3273fa093b303c5bb7e80b02c009de3a6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 96514, "scanner": "repobility-docker", "fingerprint": "c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Dockerfile exists but repository root has no .dockerignore.", "evidence": {"rule_id": "DKR007", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: for=5, if=5, nested_bonus=9, ternary=1."}, "properties": {"repobilityId": 96512, "scanner": "repobility-threat-engine", "fingerprint": "9bde28df81d9e706f7d62f9c75b206597f5949b973d404a59ce872890d5dc5df", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 20 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 5, "for": 5, "ternary": 1, "nested_bonus": 9}, "complexity": 20, "correlation_key": "fp|9bde28df81d9e706f7d62f9c75b206597f5949b973d404a59ce872890d5dc5df"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "wiki/check_wiki.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "SEC087", "level": "warning", "message": {"text": "[SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0)."}, "properties": {"repobilityId": 96486, "scanner": "repobility-threat-engine", "fingerprint": "798acb27a71d518787608238db40b45af89c83ecfe92dac4063ad0f973fde342", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Math.random() * 2 ** 32))).toString(\"base64\"),\n      ...extraHeaders,\n    };\n    if (this.token", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC087", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|798acb27a71d518787608238db40b45af89c83ecfe92dac4063ad0f973fde342"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/bridge/weixin/client.ts"}, "region": {"startLine": 82}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 96485, "scanner": "repobility-threat-engine", "fingerprint": "1879aa40eeccf6b98d02827a641e841770fd548551af4d0f80f9aac77a3b658f", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1879aa40eeccf6b98d02827a641e841770fd548551af4d0f80f9aac77a3b658f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/bridge/weixin/binding.ts"}, "region": {"startLine": 111}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 96475, "scanner": "repobility-threat-engine", "fingerprint": "4ff8c664266b6eb4a23ad245a3712ca13c6fe942f9259ed433fcf7edb4dd1747", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|16|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/ai_chat_transcript.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 96448, "scanner": "repobility-agent-runtime", "fingerprint": "b7d6f5196dae60b9850985998fbc0e6d32e236394ec3ec3839aaaed57ffd2d83", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|b7d6f5196dae60b9850985998fbc0e6d32e236394ec3ec3839aaaed57ffd2d83"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/index.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "AGT007", "level": "warning", "message": {"text": "localStorage write failures are swallowed silently"}, "properties": {"repobilityId": 96447, "scanner": "repobility-agent-runtime", "fingerprint": "4b31ced2e9dbc650ef18e7471d8657bd5fa69df489af19b3be12fdbc0c6d3b71", "category": "quality", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File writes to localStorage and has an empty or ignore-only catch block without QuotaExceededError handling.", "evidence": {"rule_id": "AGT007", "scanner": "repobility-agent-runtime", "references": ["https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API"], "correlation_key": "fp|4b31ced2e9dbc650ef18e7471d8657bd5fa69df489af19b3be12fdbc0c6d3b71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/storage.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 96446, "scanner": "repobility-agent-runtime", "fingerprint": "493a522dea74f1d768bfc347f5ddcb7ce3ac1c375d3ae49bb307e98dd1b13c61", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|493a522dea74f1d768bfc347f5ddcb7ce3ac1c375d3ae49bb307e98dd1b13c61"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/superpowers/specs/2026-06-04-agent-working-directory-sandbox-design.md"}, "region": {"startLine": 179}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/download-artifact@v4` is 4 major version(s) behind (latest v8.0.1)"}, "properties": {"repobilityId": 96445, "scanner": "repobility-dependency-currency", "fingerprint": "ba19c1b188206668624e3835a4ec98fa7adc1db9e02071f9b01c2b69e0edd6b0", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "4 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/download-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v8.0.1", "correlation_key": "fp|ba19c1b188206668624e3835a4ec98fa7adc1db9e02071f9b01c2b69e0edd6b0", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 191}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/upload-artifact@v4` is 3 major version(s) behind (latest v7.0.1)"}, "properties": {"repobilityId": 96444, "scanner": "repobility-dependency-currency", "fingerprint": "9b5957b1a0d356f2a459336d058a23bd188ed500a6b82a655e34fbb717960f1b", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "3 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/upload-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v7.0.1", "correlation_key": "fp|9b5957b1a0d356f2a459336d058a23bd188ed500a6b82a655e34fbb717960f1b", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 167}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/cache@v4` is 1 major version(s) behind (latest v5.0.5)"}, "properties": {"repobilityId": 96443, "scanner": "repobility-dependency-currency", "fingerprint": "2f45138f6315957f2f2064e7adeb307c7126d1b66045e585cb9fc89e6dc47fb5", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/cache", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.5", "correlation_key": "fp|2f45138f6315957f2f2064e7adeb307c7126d1b66045e585cb9fc89e6dc47fb5", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 47}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/checkout@v4` is 2 major version(s) behind (latest v6.0.3)"}, "properties": {"repobilityId": 96441, "scanner": "repobility-dependency-currency", "fingerprint": "f8217026ab70609e80ea6bf79df2570320d2b821b5dd544bad78aede4ba98924", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/checkout", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.3", "correlation_key": "fp|f8217026ab70609e80ea6bf79df2570320d2b821b5dd544bad78aede4ba98924", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 30}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/upload-artifact@v4` is 3 major version(s) behind (latest v7.0.1)"}, "properties": {"repobilityId": 96440, "scanner": "repobility-dependency-currency", "fingerprint": "3672bd407d4d8a18974c742ddb12323dc59b8578a5584ac40f641493077a60b1", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "3 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/upload-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v7.0.1", "correlation_key": "fp|3672bd407d4d8a18974c742ddb12323dc59b8578a5584ac40f641493077a60b1", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 188}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/cache@v4` is 1 major version(s) behind (latest v5.0.5)"}, "properties": {"repobilityId": 96439, "scanner": "repobility-dependency-currency", "fingerprint": "969ef4c8e162003baef05421cafd1fcb7a8958bb3ce212ed38fb7f2f580bba83", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/cache", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.5", "correlation_key": "fp|969ef4c8e162003baef05421cafd1fcb7a8958bb3ce212ed38fb7f2f580bba83", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 54}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/checkout@v4` is 2 major version(s) behind (latest v6.0.3)"}, "properties": {"repobilityId": 96437, "scanner": "repobility-dependency-currency", "fingerprint": "94c255328b16c94e7288fc7569c1f1609a30b1919f1733821abd909f1157b35a", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/checkout", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.3", "correlation_key": "fp|94c255328b16c94e7288fc7569c1f1609a30b1919f1733821abd909f1157b35a", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 44}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/upload-artifact@v4` is 3 major version(s) behind (latest v7.0.1)"}, "properties": {"repobilityId": 96436, "scanner": "repobility-dependency-currency", "fingerprint": "4bb6df8da18d06ffe18e475e81d901e86d27fbaae41a1d8597b70b49696e2d42", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "3 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/upload-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v7.0.1", "correlation_key": "fp|4bb6df8da18d06ffe18e475e81d901e86d27fbaae41a1d8597b70b49696e2d42", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 117}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/cache@v4` is 1 major version(s) behind (latest v5.0.5)"}, "properties": {"repobilityId": 96435, "scanner": "repobility-dependency-currency", "fingerprint": "eefa3d6c478abdd64b508a252528d77db778b6d06c19119ad61089f44ad84bb6", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/cache", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.5", "correlation_key": "fp|eefa3d6c478abdd64b508a252528d77db778b6d06c19119ad61089f44ad84bb6", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 48}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/checkout@v4` is 2 major version(s) behind (latest v6.0.3)"}, "properties": {"repobilityId": 96433, "scanner": "repobility-dependency-currency", "fingerprint": "f55bf27397c0e27a0d3d4b5a4da70097133bc69f48b4ab78bee23b8caed28069", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/checkout", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.3", "correlation_key": "fp|f55bf27397c0e27a0d3d4b5a4da70097133bc69f48b4ab78bee23b8caed28069", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/deploy-pages@v4` is 1 major version(s) behind (latest v5.0.0)"}, "properties": {"repobilityId": 96432, "scanner": "repobility-dependency-currency", "fingerprint": "373af43766ca1b38d0c62e3d4f047e1ca462f738df8cfca1deb64cefe30df426", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/deploy-pages", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.0", "correlation_key": "fp|373af43766ca1b38d0c62e3d4f047e1ca462f738df8cfca1deb64cefe30df426", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/upload-pages-artifact@v3` is 2 major version(s) behind (latest v5.0.0)"}, "properties": {"repobilityId": 96431, "scanner": "repobility-dependency-currency", "fingerprint": "1e1089b40ec35dd8962d54cb35bc565c87360fa2e48c41827d0d54141f95f499", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/upload-pages-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.0", "correlation_key": "fp|1e1089b40ec35dd8962d54cb35bc565c87360fa2e48c41827d0d54141f95f499", "current_version": "v3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 34}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/configure-pages@v5` is 1 major version(s) behind (latest v6.0.0)"}, "properties": {"repobilityId": 96430, "scanner": "repobility-dependency-currency", "fingerprint": "8f19e0d352edb8125f1e76b63674dd36af186f887633808596d3b5880be441cb", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/configure-pages", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.0", "correlation_key": "fp|8f19e0d352edb8125f1e76b63674dd36af186f887633808596d3b5880be441cb", "current_version": "v5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 31}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/checkout@v4` is 2 major version(s) behind (latest v6.0.3)"}, "properties": {"repobilityId": 96429, "scanner": "repobility-dependency-currency", "fingerprint": "980aa044119c768ef14393cc0fc113e4c7f9e8ceedaee5a1305084c041109d4d", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/checkout", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.3", "correlation_key": "fp|980aa044119c768ef14393cc0fc113e4c7f9e8ceedaee5a1305084c041109d4d", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 28}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/upload-artifact@v4` is 3 major version(s) behind (latest v7.0.1)"}, "properties": {"repobilityId": 96428, "scanner": "repobility-dependency-currency", "fingerprint": "ebe666aaae4884a52e8baeb9d8cc04e23507c11519c750b20156f5dd63f02f1d", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "3 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/upload-artifact", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v7.0.1", "correlation_key": "fp|ebe666aaae4884a52e8baeb9d8cc04e23507c11519c750b20156f5dd63f02f1d", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 169}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/cache@v4` is 1 major version(s) behind (latest v5.0.5)"}, "properties": {"repobilityId": 96427, "scanner": "repobility-dependency-currency", "fingerprint": "18caa8ee64caf0c6af89b25d8147772a369ccf84d9245171495a78861aa2132a", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/cache", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v5.0.5", "correlation_key": "fp|18caa8ee64caf0c6af89b25d8147772a369ccf84d9245171495a78861aa2132a", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 36}}}]}, {"ruleId": "DEPCUR-GHA", "level": "warning", "message": {"text": "GitHub Action `actions/checkout@v4` is 2 major version(s) behind (latest v6.0.3)"}, "properties": {"repobilityId": 96425, "scanner": "repobility-dependency-currency", "fingerprint": "00db7d258a0cce4d8f25208c9990bef9d03fdd2cf8f2c58ae11a7294abee2f30", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "2 major version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "actions/checkout", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v6.0.3", "correlation_key": "fp|00db7d258a0cce4d8f25208c9990bef9d03fdd2cf8f2c58ae11a7294abee2f30", "current_version": "v4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 96394, "scanner": "repobility-ast-engine", "fingerprint": "b4b52c0f21f11c2bd6215492a5fd37862a87266cd4a16a3fbfb8f7169d4efb6b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b4b52c0f21f11c2bd6215492a5fd37862a87266cd4a16a3fbfb8f7169d4efb6b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/imgcat.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 96382, "scanner": "repobility-ast-engine", "fingerprint": "f1e1ef42926fc46d6402d0bc2f183fabeedfaeed395ca173d5b606d5ce045990", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f1e1ef42926fc46d6402d0bc2f183fabeedfaeed395ca173d5b606d5ce045990"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/pdfcat.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 96517, "scanner": "repobility-docker", "fingerprint": "31c9fb6a992aab674e3e7e1e1d427234bd64b46541b1cc9fdc156232c6d5a57c", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "wispterm-remote", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|31c9fb6a992aab674e3e7e1e1d427234bd64b46541b1cc9fdc156232c6d5a57c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 96516, "scanner": "repobility-docker", "fingerprint": "ad8bb430ba835aff0494706fa622423343df0537534e92d26006f58ff5dba2bf", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "wispterm-remote", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|ad8bb430ba835aff0494706fa622423343df0537534e92d26006f58ff5dba2bf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `emit_png` has cognitive complexity 12 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: for=1, if=6, nested_bonus=3, ternary=2."}, "properties": {"repobilityId": 96511, "scanner": "repobility-threat-engine", "fingerprint": "ec0d1fc003a717bf2e4065d749f9bd57a94d50dd87e5d1c54feeba3879b8ced5", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 12 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "emit_png", "breakdown": {"if": 6, "for": 1, "ternary": 2, "nested_bonus": 3}, "complexity": 12, "correlation_key": "fp|ec0d1fc003a717bf2e4065d749f9bd57a94d50dd87e5d1c54feeba3879b8ced5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/kitty_graphics.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 96478, "scanner": "repobility-threat-engine", "fingerprint": "4246af86bb572c839d71b7b82374e2c83871b2a16f90ae21d74cf1ed1accd8ec", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = `", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|8|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/views/login.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 96477, "scanner": "repobility-threat-engine", "fingerprint": "873fc323c07ecf3640824e75a28b0443b48d039e70af22e8089b83e1a9274acf", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = i", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|remote/src/client/theme.ts|74|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/theme.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 96469, "scanner": "repobility-threat-engine", "fingerprint": "882ea27f965886e5442f52336aedaa1fcea9cb9c3c847f6e695fba0887934c1e", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = ftc.FT_Done_FreeType(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|882ea27f965886e5442f52336aedaa1fcea9cb9c3c847f6e695fba0887934c1e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/harfbuzz/freetype.zig"}, "region": {"startLine": 60}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 96468, "scanner": "repobility-threat-engine", "fingerprint": "d02bd64a1bc88f9fd4e952e78e3f65c5dd41bd6ba940fb7172925a0ab2bf3ff8", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = b.systemIntegrationOption(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d02bd64a1bc88f9fd4e952e78e3f65c5dd41bd6ba940fb7172925a0ab2bf3ff8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/build.zig"}, "region": {"startLine": 108}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 96467, "scanner": "repobility-threat-engine", "fingerprint": "9b1130dd0a2ed2ee2a62048a2d1b8993c14a5396b5ac338c939231e525ccca4a", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = c.FT_Done_FreeType(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9b1130dd0a2ed2ee2a62048a2d1b8993c14a5396b5ac338c939231e525ccca4a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/Library.zig"}, "region": {"startLine": 23}}}]}, {"ruleId": "DEPCUR-GHA", "level": "note", "message": {"text": "GitHub Action `mlugg/setup-zig@v2` is minor version(s) behind (latest v2.2.1)"}, "properties": {"repobilityId": 96442, "scanner": "repobility-dependency-currency", "fingerprint": "9b2b2de50083ee27d00ec2e2e59fcb1a3a9d2b9a802620d1289cce1f0698a1ff", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "mlugg/setup-zig", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v2.2.1", "correlation_key": "fp|9b2b2de50083ee27d00ec2e2e59fcb1a3a9d2b9a802620d1289cce1f0698a1ff", "current_version": "v2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 42}}}]}, {"ruleId": "DEPCUR-GHA", "level": "note", "message": {"text": "GitHub Action `mlugg/setup-zig@v2` is minor version(s) behind (latest v2.2.1)"}, "properties": {"repobilityId": 96438, "scanner": "repobility-dependency-currency", "fingerprint": "e2383d4743882ae9c702ef66de7fd9d2f2e791b548a5a159ccf65849d0b46054", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "mlugg/setup-zig", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v2.2.1", "correlation_key": "fp|e2383d4743882ae9c702ef66de7fd9d2f2e791b548a5a159ccf65849d0b46054", "current_version": "v2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 49}}}]}, {"ruleId": "DEPCUR-GHA", "level": "note", "message": {"text": "GitHub Action `mlugg/setup-zig@v2` is minor version(s) behind (latest v2.2.1)"}, "properties": {"repobilityId": 96434, "scanner": "repobility-dependency-currency", "fingerprint": "3f5f27a762c7626fea48762b26abc2999083f49e8392034bcd0f4c71fc1286b0", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "mlugg/setup-zig", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v2.2.1", "correlation_key": "fp|3f5f27a762c7626fea48762b26abc2999083f49e8392034bcd0f4c71fc1286b0", "current_version": "v2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 43}}}]}, {"ruleId": "DEPCUR-GHA", "level": "note", "message": {"text": "GitHub Action `mlugg/setup-zig@v2` is minor version(s) behind (latest v2.2.1)"}, "properties": {"repobilityId": 96426, "scanner": "repobility-dependency-currency", "fingerprint": "b32ec261d01ae53701734ccdf6e1565ce17d0a75f0527405b6544fbad8325c59", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": ["CWE-1104"], "package": "mlugg/setup-zig", "scanner": "repobility-dependency-currency", "ecosystem": "github-actions", "languages": ["yaml"], "latest_version": "v2.2.1", "correlation_key": "fp|b32ec261d01ae53701734ccdf6e1565ce17d0a75f0527405b6544fbad8325c59", "current_version": "v2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `tsx` is minor version(s) behind (4.21.0 -> 4.22.4)"}, "properties": {"repobilityId": 96424, "scanner": "repobility-dependency-currency", "fingerprint": "4a6e24fe4f5ea136b2cc9675b58488dc2db3e13bb2220d76c4e7b3f546b542fe", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "tsx", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.22.4", "correlation_key": "fp|4a6e24fe4f5ea136b2cc9675b58488dc2db3e13bb2220d76c4e7b3f546b542fe", "current_version": "4.21.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `@cloudflare/workers-types` is minor version(s) behind (4.20260507.1 -> 4.20260605.1)"}, "properties": {"repobilityId": 96423, "scanner": "repobility-dependency-currency", "fingerprint": "baf3ca808e5fc45eb4977e4545aa887647aec5dbd6432d536887337e05d29be4", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "@cloudflare/workers-types", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "4.20260605.1", "correlation_key": "fp|baf3ca808e5fc45eb4977e4545aa887647aec5dbd6432d536887337e05d29be4", "current_version": "4.20260507.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "DEPCUR-NPM", "level": "note", "message": {"text": "npm package `ws` is minor version(s) behind (8.18.0 -> 8.21.0)"}, "properties": {"repobilityId": 96422, "scanner": "repobility-dependency-currency", "fingerprint": "3ec8dbfe203e0e5bcb6c840744378453dfc9113a559ec455e41711fd76fb5f84", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "ws", "scanner": "repobility-dependency-currency", "ecosystem": "npm", "languages": ["javascript"], "latest_version": "8.21.0", "correlation_key": "fp|3ec8dbfe203e0e5bcb6c840744378453dfc9113a559ec455e41711fd76fb5f84", "current_version": "8.18.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED075", "level": "none", "message": {"text": "[MINED075] C Malloc No Check: malloc/calloc/realloc return value used without checking for NULL."}, "properties": {"repobilityId": 96507, "scanner": "repobility-threat-engine", "fingerprint": "0dd3b8019beda4bbfe0e0fa3a3fcb1e8c9fe3f92276f720372ba54c00d913fe6", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "c-malloc-no-check", "owasp": null, "cwe_ids": ["CWE-690"], "languages": ["c", "cpp"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348076+00:00", "triaged_in_corpus": 12, "observations_count": 11735, "ai_coder_pattern_id": 131}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0dd3b8019beda4bbfe0e0fa3a3fcb1e8c9fe3f92276f720372ba54c00d913fe6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/http_client_macos_bridge.m"}, "region": {"startLine": 96}}}]}, {"ruleId": "MINED075", "level": "none", "message": {"text": "[MINED075] C Malloc No Check: malloc/calloc/realloc return value used without checking for NULL."}, "properties": {"repobilityId": 96506, "scanner": "repobility-threat-engine", "fingerprint": "b19a9f33bccfe6407dae5355bb7dd646c844405ee29ce849b921dbffff8752eb", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "c-malloc-no-check", "owasp": null, "cwe_ids": ["CWE-690"], "languages": ["c", "cpp"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348076+00:00", "triaged_in_corpus": 12, "observations_count": 11735, "ai_coder_pattern_id": 131}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b19a9f33bccfe6407dae5355bb7dd646c844405ee29ce849b921dbffff8752eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/font_macos_bridge.m"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 96504, "scanner": "repobility-threat-engine", "fingerprint": "4416163a4fa1458012cc099c09ada0374338ac6f7fe831e5deac2bef33a3ece6", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4416163a4fa1458012cc099c09ada0374338ac6f7fe831e5deac2bef33a3ece6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/renderer/weixin_qr_renderer.zig"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 96503, "scanner": "repobility-threat-engine", "fingerprint": "acbfab0c6b6b780ad0759fd59273795b546a54628b9e268da54e18d16fa79cda", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|acbfab0c6b6b780ad0759fd59273795b546a54628b9e268da54e18d16fa79cda"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/appwindow/split_layout.zig"}, "region": {"startLine": 242}}}]}, {"ruleId": "MINED051", "level": "none", "message": {"text": "[MINED051] Csharp Null Forgive: x! tells compiler \"definitely not null\" \u2014 bypasses nullable check. NRE risk if wrong."}, "properties": {"repobilityId": 96502, "scanner": "repobility-threat-engine", "fingerprint": "c742e9e0b660c217ef4457394b0993d582d093b15dbb380ed4dd45a0de0992a4", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "csharp-null-forgive", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["csharp"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348020+00:00", "triaged_in_corpus": 12, "observations_count": 518114, "ai_coder_pattern_id": 173}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c742e9e0b660c217ef4457394b0993d582d093b15dbb380ed4dd45a0de0992a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/input/file_drop_path.zig"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED051", "level": "none", "message": {"text": "[MINED051] Csharp Null Forgive: x! tells compiler \"definitely not null\" \u2014 bypasses nullable check. NRE risk if wrong."}, "properties": {"repobilityId": 96501, "scanner": "repobility-threat-engine", "fingerprint": "c835ca6b175bdd63091202f88e1ed61ab551ce462ecdafb45e4957199d62b040", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "csharp-null-forgive", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["csharp"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348020+00:00", "triaged_in_corpus": 12, "observations_count": 518114, "ai_coder_pattern_id": 173}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c835ca6b175bdd63091202f88e1ed61ab551ce462ecdafb45e4957199d62b040"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/ai_chat_types.zig"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 96498, "scanner": "repobility-threat-engine", "fingerprint": "62ff231053d16ded91f5d63a99a8b7f9a8d879f1bee1b23442cfa6701d92f730", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|62ff231053d16ded91f5d63a99a8b7f9a8d879f1bee1b23442cfa6701d92f730", "aggregated_count": 2}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 96497, "scanner": "repobility-threat-engine", "fingerprint": "4a42235f9f112fc8fc2f0d8375823d99520545ee34355e1afbad3d2cb0a67ac3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4a42235f9f112fc8fc2f0d8375823d99520545ee34355e1afbad3d2cb0a67ac3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/input/preview_path.zig"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 96496, "scanner": "repobility-threat-engine", "fingerprint": "5b2e175a020523d5434bf681725b62710b5ff9e88373b6a5d7b17538c7a7f421", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5b2e175a020523d5434bf681725b62710b5ff9e88373b6a5d7b17538c7a7f421"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/html_server_model.zig"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 96495, "scanner": "repobility-threat-engine", "fingerprint": "25e3549e47fc31321f95fb09452833a60f73e12190cd250247a95be5908515b2", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "correlation_key": "fp|25e3549e47fc31321f95fb09452833a60f73e12190cd250247a95be5908515b2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/index.ts"}, "region": {"startLine": 73}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 96494, "scanner": "repobility-threat-engine", "fingerprint": "4e858a56c34b65b0912e3fe629971d6d32fcda68cee02eb1f3bab34175679dd4", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|4e858a56c34b65b0912e3fe629971d6d32fcda68cee02eb1f3bab34175679dd4"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 96490, "scanner": "repobility-threat-engine", "fingerprint": "d57f94c2e96069b4a87a7fb2ba46f76103ae7ecd579ffae7064a6551df416baa", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d57f94c2e96069b4a87a7fb2ba46f76103ae7ecd579ffae7064a6551df416baa"}}}, {"ruleId": "SEC013", "level": "none", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 96484, "scanner": "repobility-threat-engine", "fingerprint": "ed9af2be75e89f45b6214d4eb2e341f682d32cac9a9f402646dc44b0b2076655", "category": "path_traversal", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|ed9af2be75e89f45b6214d4eb2e341f682d32cac9a9f402646dc44b0b2076655"}}}, {"ruleId": "MINED005", "level": "none", "message": {"text": "[MINED005] Lua Loadstring (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "properties": {"repobilityId": 96474, "scanner": "repobility-threat-engine", "fingerprint": "bc672bfa9a09cc94cfdc0e93f8217fd8dc79e3b56f81dd52efc3e207742f6d13", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "lua-loadstring", "owasp": null, "cwe_ids": ["CWE-95"], "languages": ["lua"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347908+00:00", "triaged_in_corpus": 20, "observations_count": 291730, "ai_coder_pattern_id": 169}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|bc672bfa9a09cc94cfdc0e93f8217fd8dc79e3b56f81dd52efc3e207742f6d13", "aggregated_count": 5}}}, {"ruleId": "ERR003", "level": "none", "message": {"text": "[ERR003] Ignored Error (Go) (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 96470, "scanner": "repobility-threat-engine", "fingerprint": "069111f23d36bc8bf0988361c1723e0322165ca439dc9c9d2268210211ebc2d4", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|069111f23d36bc8bf0988361c1723e0322165ca439dc9c9d2268210211ebc2d4"}}}, {"ruleId": "MINED070", "level": "none", "message": {"text": "[MINED070] Zig Undefined Init (and 61 more): Same pattern found in 61 additional files. Review if needed."}, "properties": {"repobilityId": 96466, "scanner": "repobility-threat-engine", "fingerprint": "41a9dd6d78e9d2e22cff0132a3999bc36ce8aee580771294282ca85dfce649b4", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 61 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "zig-undefined-init", "owasp": null, "cwe_ids": [], "languages": ["zig"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348065+00:00", "triaged_in_corpus": 12, "observations_count": 36548, "ai_coder_pattern_id": 171}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|41a9dd6d78e9d2e22cff0132a3999bc36ce8aee580771294282ca85dfce649b4", "aggregated_count": 61}}}, {"ruleId": "MINED070", "level": "none", "message": {"text": "[MINED070] Zig Undefined Init: var x: T = undefined leaves memory uninitialized. Often a foot-gun."}, "properties": {"repobilityId": 96465, "scanner": "repobility-threat-engine", "fingerprint": "6bd0529091c26a3782b360b08d6d25709823886d335dafe46a5c4fc0736adfb4", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "zig-undefined-init", "owasp": null, "cwe_ids": [], "languages": ["zig"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348065+00:00", "triaged_in_corpus": 12, "observations_count": 36548, "ai_coder_pattern_id": 171}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6bd0529091c26a3782b360b08d6d25709823886d335dafe46a5c4fc0736adfb4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/harfbuzz/freetype.zig"}, "region": {"startLine": 57}}}]}, {"ruleId": "MINED070", "level": "none", "message": {"text": "[MINED070] Zig Undefined Init: var x: T = undefined leaves memory uninitialized. Often a foot-gun."}, "properties": {"repobilityId": 96464, "scanner": "repobility-threat-engine", "fingerprint": "c15a7953f2582033f80de9d7c5dba4e59516c551388dd84367c184586645bb7e", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "zig-undefined-init", "owasp": null, "cwe_ids": [], "languages": ["zig"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348065+00:00", "triaged_in_corpus": 12, "observations_count": 36548, "ai_coder_pattern_id": 171}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c15a7953f2582033f80de9d7c5dba4e59516c551388dd84367c184586645bb7e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/harfbuzz/common.zig"}, "region": {"startLine": 228}}}]}, {"ruleId": "MINED070", "level": "none", "message": {"text": "[MINED070] Zig Undefined Init: var x: T = undefined leaves memory uninitialized. Often a foot-gun."}, "properties": {"repobilityId": 96463, "scanner": "repobility-threat-engine", "fingerprint": "21dd9716546cf9c8cbe292a77a0a529c0d927d678cf9c3d4ed3821d964b17803", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "zig-undefined-init", "owasp": null, "cwe_ids": [], "languages": ["zig"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348065+00:00", "triaged_in_corpus": 12, "observations_count": 36548, "ai_coder_pattern_id": 171}, "scanner": "repobility-threat-engine", "correlation_key": "fp|21dd9716546cf9c8cbe292a77a0a529c0d927d678cf9c3d4ed3821d964b17803"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/Library.zig"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod (and 81 more): Same pattern found in 81 additional files. Review if needed."}, "properties": {"repobilityId": 96462, "scanner": "repobility-threat-engine", "fingerprint": "39ca6f15bd1561a26104f04acef60767e7e97ed7b51ddc41831a57e596468c22", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 81 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "rust-expect-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348039+00:00", "triaged_in_corpus": 12, "observations_count": 175379, "ai_coder_pattern_id": 112}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|39ca6f15bd1561a26104f04acef60767e7e97ed7b51ddc41831a57e596468c22", "aggregated_count": 81}}}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 96461, "scanner": "repobility-threat-engine", "fingerprint": "12251ec8f9cc282128c1935c0b3182dcf82656040f43fc41a8761d2047bc6692", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "rust-expect-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348039+00:00", "triaged_in_corpus": 12, "observations_count": 175379, "ai_coder_pattern_id": 112}, "scanner": "repobility-threat-engine", "correlation_key": "fp|12251ec8f9cc282128c1935c0b3182dcf82656040f43fc41a8761d2047bc6692"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/harfbuzz/common.zig"}, "region": {"startLine": 246}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 96460, "scanner": "repobility-threat-engine", "fingerprint": "1d4f90f77bc9a403ef76c80782d8ce3bf81b5b40ac5e7782ff64adffb3915a97", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "rust-expect-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348039+00:00", "triaged_in_corpus": 12, "observations_count": 175379, "ai_coder_pattern_id": 112}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1d4f90f77bc9a403ef76c80782d8ce3bf81b5b40ac5e7782ff64adffb3915a97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/harfbuzz/blob.zig"}, "region": {"startLine": 124}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 96459, "scanner": "repobility-threat-engine", "fingerprint": "548eeb3f2d28139a65f3e8b3037291079f0670c3d86b3112cac330f895485ca8", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "rust-expect-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348039+00:00", "triaged_in_corpus": 12, "observations_count": 175379, "ai_coder_pattern_id": 112}, "scanner": "repobility-threat-engine", "correlation_key": "fp|548eeb3f2d28139a65f3e8b3037291079f0670c3d86b3112cac330f895485ca8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/Library.zig"}, "region": {"startLine": 88}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 30 more): Same pattern found in 30 additional files. Review if needed."}, "properties": {"repobilityId": 96458, "scanner": "repobility-threat-engine", "fingerprint": "c130b911952ec9a0bdf2fa57e9f503e50ec23fd9af3426a4fd154015bd1aa6d7", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 30 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|c130b911952ec9a0bdf2fa57e9f503e50ec23fd9af3426a4fd154015bd1aa6d7", "aggregated_count": 30}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 96457, "scanner": "repobility-threat-engine", "fingerprint": "ed4dea2e9d59317b841a0a4506480b0d7a3fbf2e7d7d8734d054d1c27728caf0", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ed4dea2e9d59317b841a0a4506480b0d7a3fbf2e7d7d8734d054d1c27728caf0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/ai_chat_types.zig"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 96456, "scanner": "repobility-threat-engine", "fingerprint": "88263218c329bf6d774e83349dfb52d0aaf78783026eddbefd6976d5b2c5ed91", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|88263218c329bf6d774e83349dfb52d0aaf78783026eddbefd6976d5b2c5ed91"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/agent_file_edit.zig"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 96455, "scanner": "repobility-threat-engine", "fingerprint": "fc06ce46f1c1493a0eca0f093ce744d99d6f6fdb3a3b7b9cd746f9251bc0dbe3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fc06ce46f1c1493a0eca0f093ce744d99d6f6fdb3a3b7b9cd746f9251bc0dbe3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/Library.zig"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED048", "level": "none", "message": {"text": "[MINED048] Php Error Suppress (and 251 more): Same pattern found in 251 additional files. Review if needed."}, "properties": {"repobilityId": 96454, "scanner": "repobility-threat-engine", "fingerprint": "e7b4dc698ee5d73af80c2ec9e2cd5c774625b621ef4799a75c8ffb44e52956be", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 251 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "php-error-suppress", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["php"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348013+00:00", "triaged_in_corpus": 12, "observations_count": 849118, "ai_coder_pattern_id": 166}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|e7b4dc698ee5d73af80c2ec9e2cd5c774625b621ef4799a75c8ffb44e52956be", "aggregated_count": 251}}}, {"ruleId": "MINED048", "level": "none", "message": {"text": "[MINED048] Php Error Suppress: @function() suppresses errors silently. Hides real issues."}, "properties": {"repobilityId": 96453, "scanner": "repobility-threat-engine", "fingerprint": "0dd7daa9dd627723bddddc5a3b4824558e1e7cb3926e2ad2f25fb8bcf54f505f", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "php-error-suppress", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["php"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348013+00:00", "triaged_in_corpus": 12, "observations_count": 849118, "ai_coder_pattern_id": 166}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0dd7daa9dd627723bddddc5a3b4824558e1e7cb3926e2ad2f25fb8bcf54f505f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/build.zig"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED048", "level": "none", "message": {"text": "[MINED048] Php Error Suppress: @function() suppresses errors silently. Hides real issues."}, "properties": {"repobilityId": 96452, "scanner": "repobility-threat-engine", "fingerprint": "d942d77be4722aff614c31eab2a3fc03d4ef8247c0c1b6d61350e732980e3723", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "php-error-suppress", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["php"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348013+00:00", "triaged_in_corpus": 12, "observations_count": 849118, "ai_coder_pattern_id": 166}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d942d77be4722aff614c31eab2a3fc03d4ef8247c0c1b6d61350e732980e3723"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/freetype/Library.zig"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED048", "level": "none", "message": {"text": "[MINED048] Php Error Suppress: @function() suppresses errors silently. Hides real issues."}, "properties": {"repobilityId": 96451, "scanner": "repobility-threat-engine", "fingerprint": "4f2396bf5c17b9fae3fde326da61126e4c237b77a1604d98c250debe11a1749d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "php-error-suppress", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["php"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348013+00:00", "triaged_in_corpus": 12, "observations_count": 849118, "ai_coder_pattern_id": 166}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4f2396bf5c17b9fae3fde326da61126e4c237b77a1604d98c250debe11a1749d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/apple-sdk/build.zig"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 96450, "scanner": "repobility-threat-engine", "fingerprint": "ecf3641f19850864a804649371b49c051a53a3add568e7ece9cbf5542739dcce", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ecf3641f19850864a804649371b49c051a53a3add568e7ece9cbf5542739dcce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/index.ts"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 96449, "scanner": "repobility-threat-engine", "fingerprint": "92a3735ad4e2efb041667e469984711c30fbf319ea4308ab409daab3114e1a86", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|92a3735ad4e2efb041667e469984711c30fbf319ea4308ab409daab3114e1a86"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/scripts/generate-themes.mjs"}, "region": {"startLine": 89}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 96513, "scanner": "repobility-docker", "fingerprint": "2116b08c9ab18f106a6d5e55461595bc32cd6c2b5502192088a57994c09ebfb2", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|2116b08c9ab18f106a6d5e55461595bc32cd6c2b5502192088a57994c09ebfb2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/Dockerfile"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 96510, "scanner": "repobility-threat-engine", "fingerprint": "69b9d5f29945a8a33edfabd6d6c2e534eafdded4a9de5f0cf890b92bebe56830", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|69b9d5f29945a8a33edfabd6d6c2e534eafdded4a9de5f0cf890b92bebe56830"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/weixin/types.zig"}, "region": {"startLine": 64}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 96509, "scanner": "repobility-threat-engine", "fingerprint": "3938bb0353e930ec207d8b870305a98d2077c28b99ede1baf1c2c715e74b5384", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3938bb0353e930ec207d8b870305a98d2077c28b99ede1baf1c2c715e74b5384"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/weixin/media.zig"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 96508, "scanner": "repobility-threat-engine", "fingerprint": "2822cea9d87e7d99c86877dc8ef344b58f9c31925eff083aa5c1d7686c45a42f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2822cea9d87e7d99c86877dc8ef344b58f9c31925eff083aa5c1d7686c45a42f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/remote_file.zig"}, "region": {"startLine": 107}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 96505, "scanner": "repobility-threat-engine", "fingerprint": "bb0a55f6a5dc6658643d3ef83ee79f7f06b0ba151fd2980c6bc42fb8aa002798", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|bb0a55f6a5dc6658643d3ef83ee79f7f06b0ba151fd2980c6bc42fb8aa002798"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/agent_prompt.zig"}, "region": {"startLine": 92}}}]}, {"ruleId": "MINED002", "level": "error", "message": {"text": "[MINED002] Dart Null Bang: value! throws on null. Use ?. or null check."}, "properties": {"repobilityId": 96500, "scanner": "repobility-threat-engine", "fingerprint": "e4b9f40a63f8e5db59e5a6195890b43224f3915439c0ad959ee4e4792a4a5ca3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "dart-null-bang", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["dart"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347899+00:00", "triaged_in_corpus": 15, "observations_count": 1434931, "ai_coder_pattern_id": 167}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e4b9f40a63f8e5db59e5a6195890b43224f3915439c0ad959ee4e4792a4a5ca3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/input/file_drop_path.zig"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED002", "level": "error", "message": {"text": "[MINED002] Dart Null Bang: value! throws on null. Use ?. or null check."}, "properties": {"repobilityId": 96499, "scanner": "repobility-threat-engine", "fingerprint": "3c27ee2b491f55f747541e0bb9bdb75b8620c6eb389a25e1299b1bb348a5fc52", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "dart-null-bang", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["dart"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347899+00:00", "triaged_in_corpus": 15, "observations_count": 1434931, "ai_coder_pattern_id": 167}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3c27ee2b491f55f747541e0bb9bdb75b8620c6eb389a25e1299b1bb348a5fc52"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/ai_chat_types.zig"}, "region": {"startLine": 143}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 96493, "scanner": "repobility-threat-engine", "fingerprint": "bbca7b47e17e4822f2a676010f0f8d607f0cf34d4d2bc8d5fe5d3c3dea6f1760", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "h.update(title_in);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bbca7b47e17e4822f2a676010f0f8d607f0cf34d4d2bc8d5fe5d3c3dea6f1760"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/notification.zig"}, "region": {"startLine": 98}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 96492, "scanner": "repobility-threat-engine", "fingerprint": "c03ebea76706fe01e5d4f031432c78e1e30aa8dd2eb2f967ae0bd22ec33833ef", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "this.browsers.delete(socket);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c03ebea76706fe01e5d4f031432c78e1e30aa8dd2eb2f967ae0bd22ec33833ef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/worker.ts"}, "region": {"startLine": 133}}}]}, {"ruleId": "SEC128", "level": "error", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns an unhandled Promise. The outer function resolves before the inner work completes \u2014 DB writes lost, emails not sent, race conditions. This is one of the top-3 errors AI coders make: they understand async-shape but drop the await keyword when chaining multiple ops. Surfaces as flaky tests or silently dropped data in production."}, "properties": {"repobilityId": 96491, "scanner": "repobility-threat-engine", "fingerprint": "6bec2d3bb08d48b053fb9b737d1c6116cc692007c830ba21e58e6e1e8533efcd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "socket.destroy();", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6bec2d3bb08d48b053fb9b737d1c6116cc692007c830ba21e58e6e1e8533efcd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/index.ts"}, "region": {"startLine": 106}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 96489, "scanner": "repobility-threat-engine", "fingerprint": "9c90a710c95ed0175f7baedaec7d0af9a11a3e95619c8cccf274c5589124f41a", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(a", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9c90a710c95ed0175f7baedaec7d0af9a11a3e95619c8cccf274c5589124f41a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/html_server_model.zig"}, "region": {"startLine": 55}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 96488, "scanner": "repobility-threat-engine", "fingerprint": "6fdb812ee5c8c72562cd5c800217dc7ee3a83527b60894dd496d215b759336fa", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6fdb812ee5c8c72562cd5c800217dc7ee3a83527b60894dd496d215b759336fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/browser_url.zig"}, "region": {"startLine": 12}}}]}, {"ruleId": "SEC029", "level": "error", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches."}, "properties": {"repobilityId": 96487, "scanner": "repobility-threat-engine", "fingerprint": "189659fe4d36ff986fb8acda803d5d7a2f7f5b4cc9ace120a8f3a399123ca00c", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|189659fe4d36ff986fb8acda803d5d7a2f7f5b4cc9ace120a8f3a399123ca00c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/worker.ts"}, "region": {"startLine": 35}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 96483, "scanner": "repobility-threat-engine", "fingerprint": "2a2920bc1447cd074a25aee39c3f0aaff08e5ff9f7312e2266662d281992c479", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(allocator: std.mem.Allocator, request", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|6|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/open_url_macos.zig"}, "region": {"startLine": 6}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 96482, "scanner": "repobility-threat-engine", "fingerprint": "ec15c4d1535ed08f016329fb904114540dd838b991fb8b924a6baf1ca918e5ef", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(allocator: std.mem.Allocator, request: Request", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|src/platform/open_url.zig|38|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/platform/open_url.zig"}, "region": {"startLine": 38}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 96481, "scanner": "repobility-threat-engine", "fingerprint": "4cbe1ce83c7897e8b77c91e1cb6975bd60920ff8e897c71d3658da9645fd551c", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "Open(nextAiAgentOpenRequest", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|98|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/bridge/weixin/agent.ts"}, "region": {"startLine": 98}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 96480, "scanner": "repobility-threat-engine", "fingerprint": "7dee9c9bb075e89b47e07cbb1b948e4e9c92c1bf4bb0407bdd13350787982e75", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(({ key, session }, index) => `${index + 1}. ${maskSessionKey(key)} ${session.isWispTermConnected", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7dee9c9bb075e89b47e07cbb1b948e4e9c92c1bf4bb0407bdd13350787982e75"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/bridge/weixin/agent.ts"}, "region": {"startLine": 175}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 96479, "scanner": "repobility-threat-engine", "fingerprint": "9aa94edb75912a895e2ec75e879b1b447a189d647d85e500b646732690db4279", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".innerHTML = `\n    <section class=\"shell auth-shell\">\n      ${themeToggleMarkup(\"theme-toggle-floati", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9aa94edb75912a895e2ec75e879b1b447a189d647d85e500b646732690db4279"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/views/login.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 96476, "scanner": "repobility-threat-engine", "fingerprint": "398649a0dd8245663dd263564cbfe9a57f0f671b6a106b91c9b1c1da1cf5bf3c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(line", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|398649a0dd8245663dd263564cbfe9a57f0f671b6a106b91c9b1c1da1cf5bf3c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/client/ai_chat_transcript.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/download-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96421, "scanner": "repobility-supply-chain", "fingerprint": "afd9277999f117b5982c37f10b60b5f48bf7b9462e40a93d89dc412b64b0ba9d", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|afd9277999f117b5982c37f10b60b5f48bf7b9462e40a93d89dc412b64b0ba9d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 191}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96420, "scanner": "repobility-supply-chain", "fingerprint": "918b993158ec4f3440c2bb7e579585ceb095733f2907632edc813668a451e18c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|918b993158ec4f3440c2bb7e579585ceb095733f2907632edc813668a451e18c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 188}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96419, "scanner": "repobility-supply-chain", "fingerprint": "af7be77999fff6d76b5a315f3f8ff7f59ac26ed1b26b3688fae400f59a621151", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|af7be77999fff6d76b5a315f3f8ff7f59ac26ed1b26b3688fae400f59a621151"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 167}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96418, "scanner": "repobility-supply-chain", "fingerprint": "57acdffde7d6902d0fb542f36aea7b01f27080ffbfc9d5aa56e8e777c37c15a7", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|57acdffde7d6902d0fb542f36aea7b01f27080ffbfc9d5aa56e8e777c37c15a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `mlugg/setup-zig` pinned to mutable ref `@v2`"}, "properties": {"repobilityId": 96417, "scanner": "repobility-supply-chain", "fingerprint": "dec6fcf3ac276eea0b0d0ce2d5b1afe4a2f50f9e058e7bb9fab55717aa4008d8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dec6fcf3ac276eea0b0d0ce2d5b1afe4a2f50f9e058e7bb9fab55717aa4008d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96416, "scanner": "repobility-supply-chain", "fingerprint": "27ab5cc8954327653f7e264aa391dd1c41d1434589654535d54592ad92ba60c0", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|27ab5cc8954327653f7e264aa391dd1c41d1434589654535d54592ad92ba60c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release.yml"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96415, "scanner": "repobility-supply-chain", "fingerprint": "8718b0eaba29a7f71615f9949e473b24470ac906bea16aa369da1ab5ae6c3190", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|8718b0eaba29a7f71615f9949e473b24470ac906bea16aa369da1ab5ae6c3190"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 188}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96414, "scanner": "repobility-supply-chain", "fingerprint": "c519e6b269d1a41698af36b21984df8a1cc9069320b7003251de1c581c80031e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c519e6b269d1a41698af36b21984df8a1cc9069320b7003251de1c581c80031e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `mlugg/setup-zig` pinned to mutable ref `@v2`"}, "properties": {"repobilityId": 96413, "scanner": "repobility-supply-chain", "fingerprint": "e07dfbc1d4486d33900fa2da6424ca85e8b8de26c5c921a000091e5f0cf04725", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e07dfbc1d4486d33900fa2da6424ca85e8b8de26c5c921a000091e5f0cf04725"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96412, "scanner": "repobility-supply-chain", "fingerprint": "bf4845632deab4c6689462b51f7688cec38efed472c6e2ee1855bb360d14fdd8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|bf4845632deab4c6689462b51f7688cec38efed472c6e2ee1855bb360d14fdd8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-release-x86_64.yml"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96411, "scanner": "repobility-supply-chain", "fingerprint": "df8626a0a943103b51fdd188f02e2bdb798a912596fa03920e29dbea08c7d782", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|df8626a0a943103b51fdd188f02e2bdb798a912596fa03920e29dbea08c7d782"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 117}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96410, "scanner": "repobility-supply-chain", "fingerprint": "98ab7dd4e0486d51453ac91c626621ab4a561dd0a34806d7cb26b7617454d0de", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|98ab7dd4e0486d51453ac91c626621ab4a561dd0a34806d7cb26b7617454d0de"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `mlugg/setup-zig` pinned to mutable ref `@v2`"}, "properties": {"repobilityId": 96409, "scanner": "repobility-supply-chain", "fingerprint": "3f0ad0e34ca3599c426c0aa257d7263af400ce89addf0d270b143662b3178411", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3f0ad0e34ca3599c426c0aa257d7263af400ce89addf0d270b143662b3178411"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96408, "scanner": "repobility-supply-chain", "fingerprint": "c80c6ba29e2830e313a7852ff796888c257a0916d58a61e2f76694fc3d4ccc7b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c80c6ba29e2830e313a7852ff796888c257a0916d58a61e2f76694fc3d4ccc7b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/macos-debug.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/deploy-pages` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96407, "scanner": "repobility-supply-chain", "fingerprint": "a9840f1032f312646534178611dde84f9fed4b0a55c5efd1a6e88cf72e44dd40", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a9840f1032f312646534178611dde84f9fed4b0a55c5efd1a6e88cf72e44dd40"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-pages-artifact` pinned to mutable ref `@v3`"}, "properties": {"repobilityId": 96406, "scanner": "repobility-supply-chain", "fingerprint": "e3c9384a355a1bccf314d7fd08f3bca3ebac15ca286f6f61d337ec0ab5bf41f8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e3c9384a355a1bccf314d7fd08f3bca3ebac15ca286f6f61d337ec0ab5bf41f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/configure-pages` pinned to mutable ref `@v5`"}, "properties": {"repobilityId": 96405, "scanner": "repobility-supply-chain", "fingerprint": "104495dd33857e366b79e4ef3aca28e2201b2ff9fadf2569a63c107c44736efa", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|104495dd33857e366b79e4ef3aca28e2201b2ff9fadf2569a63c107c44736efa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 31}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96404, "scanner": "repobility-supply-chain", "fingerprint": "785a870adc5e4930338d6f94a38e4ec2a9cebc9bf36ce86e68cf61fde043d165", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|785a870adc5e4930338d6f94a38e4ec2a9cebc9bf36ce86e68cf61fde043d165"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/pages.yml"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96403, "scanner": "repobility-supply-chain", "fingerprint": "3bc83ba607ec1c09e58147953464eda54f963cc67445c1fda6aeb965c77f829f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3bc83ba607ec1c09e58147953464eda54f963cc67445c1fda6aeb965c77f829f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 183}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96402, "scanner": "repobility-supply-chain", "fingerprint": "f4d15cb67f999d4af49609801cbae1bd2e1d80b0f1ef5cbbc2c78deb2462e937", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f4d15cb67f999d4af49609801cbae1bd2e1d80b0f1ef5cbbc2c78deb2462e937"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 176}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/upload-artifact` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96401, "scanner": "repobility-supply-chain", "fingerprint": "682c8fc78fc6a037b6849a85465ec1bb939fa2aadee4ed29698eee899976091f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|682c8fc78fc6a037b6849a85465ec1bb939fa2aadee4ed29698eee899976091f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 169}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96400, "scanner": "repobility-supply-chain", "fingerprint": "a4883ed54341ce17396c0daaebcc8c3b37dadfd55d27184b7046ef5b44a3232a", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a4883ed54341ce17396c0daaebcc8c3b37dadfd55d27184b7046ef5b44a3232a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `mlugg/setup-zig` pinned to mutable ref `@v2`"}, "properties": {"repobilityId": 96399, "scanner": "repobility-supply-chain", "fingerprint": "10d04a67d0687eac3d21be788e9b23b7234603fb356a87f27c292d167e824171", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|10d04a67d0687eac3d21be788e9b23b7234603fb356a87f27c292d167e824171"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v4`"}, "properties": {"repobilityId": 96398, "scanner": "repobility-supply-chain", "fingerprint": "8a17a609947cf4753730cc8862374459604625b01dcb6986ec308392689731bb", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-mutable-ref", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|8a17a609947cf4753730cc8862374459604625b01dcb6986ec308392689731bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-release.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED130", "level": "error", "message": {"text": "Lockfile pulls package from off-canonical host `registry.npmmirror.com`"}, "properties": {"repobilityId": 96397, "scanner": "repobility-supply-chain", "fingerprint": "0644742ea8451260c430c081061b5ebce9af4336675c74df27c2616f7420c42e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-lockfile-off-registry", "owasp": null, "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0644742ea8451260c430c081061b5ebce9af4336675c74df27c2616f7420c42e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/package-lock.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "Dockerfile FROM `node:22-alpine` not pinned by digest"}, "properties": {"repobilityId": 96396, "scanner": "repobility-supply-chain", "fingerprint": "2c66c9c1ccee95b55e35229e15f04c5eb36b1c52a673a77fed1ecaa4c04bbe5b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|2c66c9c1ccee95b55e35229e15f04c5eb36b1c52a673a77fed1ecaa4c04bbe5b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/Dockerfile"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "Dockerfile FROM `node:22-alpine` not pinned by digest"}, "properties": {"repobilityId": 96395, "scanner": "repobility-supply-chain", "fingerprint": "bb628c403bf73f4b870237af62dc88593c9f1c0d5c399526b7ab7646faccaa86", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|bb628c403bf73f4b870237af62dc88593c9f1c0d5c399526b7ab7646faccaa86"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/Dockerfile"}, "region": {"startLine": 3}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96393, "scanner": "repobility-ast-engine", "fingerprint": "35a05f4a47901e92f4b2e0706079fecd8ec01600a03a73297a57adfddf115c6e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|35a05f4a47901e92f4b2e0706079fecd8ec01600a03a73297a57adfddf115c6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96392, "scanner": "repobility-ast-engine", "fingerprint": "28f7dd46213a69445f00541b3b5fd11f45f3b58b3663eaa93feef699e1dbd2a0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|28f7dd46213a69445f00541b3b5fd11f45f3b58b3663eaa93feef699e1dbd2a0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertEqual` used but never assigned in __init__"}, "properties": {"repobilityId": 96391, "scanner": "repobility-ast-engine", "fingerprint": "80698cfdbf028ea5981bb87426aa3936df5f894908c1316599935563fd144477", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|80698cfdbf028ea5981bb87426aa3936df5f894908c1316599935563fd144477"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96390, "scanner": "repobility-ast-engine", "fingerprint": "9da5c0cc5f98fade945fc15fe4390b7ff2e5845abf1f409c0eaf9b649d84a61c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9da5c0cc5f98fade945fc15fe4390b7ff2e5845abf1f409c0eaf9b649d84a61c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96389, "scanner": "repobility-ast-engine", "fingerprint": "6064d52d4ad7159018b5f37d90ead36160d2206eb9a227ae6ab0e11737835d73", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6064d52d4ad7159018b5f37d90ead36160d2206eb9a227ae6ab0e11737835d73"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertEqual` used but never assigned in __init__"}, "properties": {"repobilityId": 96388, "scanner": "repobility-ast-engine", "fingerprint": "1906f0f2e7221da1d317b1a230899f6ba70db0261b62e7b1f21c5581b52f394a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1906f0f2e7221da1d317b1a230899f6ba70db0261b62e7b1f21c5581b52f394a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96387, "scanner": "repobility-ast-engine", "fingerprint": "6e41ac46bfa21ce2aef36761d8443c4a6bc46a18211d2ddd9fbb76624484779e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6e41ac46bfa21ce2aef36761d8443c4a6bc46a18211d2ddd9fbb76624484779e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertNotIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96386, "scanner": "repobility-ast-engine", "fingerprint": "e0cabc3ab1b48e949c8ed53d5ee20f9fdbfd5ba8e3b3209f2604932f1f37453d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e0cabc3ab1b48e949c8ed53d5ee20f9fdbfd5ba8e3b3209f2604932f1f37453d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96385, "scanner": "repobility-ast-engine", "fingerprint": "3cef84af09a3561d67ac2ecf653f763f82b04bba2320db2640784a6beeda99e9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3cef84af09a3561d67ac2ecf653f763f82b04bba2320db2640784a6beeda99e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96384, "scanner": "repobility-ast-engine", "fingerprint": "956cf83d788924cbcaa23c2a937bc9b1f4ca74d27e38e9fcb479f4b7d01dce99", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|956cf83d788924cbcaa23c2a937bc9b1f4ca74d27e38e9fcb479f4b7d01dce99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.assertIn` used but never assigned in __init__"}, "properties": {"repobilityId": 96383, "scanner": "repobility-ast-engine", "fingerprint": "aa861ec981d5bb919a19a25b898e423b4cda6485eb583daf49f6a00e1ff53496", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|aa861ec981d5bb919a19a25b898e423b4cda6485eb583daf49f6a00e1ff53496"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tools/test_kitty_graphics.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 96522, "scanner": "gitleaks", "fingerprint": "7f14240e5f1f3645953f782ecbd88dff7837224c5eb2c6640e884bbde344a708", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "key = \"REDACTED\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|src/remote_client.zig|73|key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/remote_client.zig"}, "region": {"startLine": 737}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 96521, "scanner": "gitleaks", "fingerprint": "96ad39a5ee1fee548524587e914092b879f54268ddf11b82b3e9c61ed10562e2", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "token=<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|src/remote_snapshot.zig|16|token redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/remote_snapshot.zig"}, "region": {"startLine": 161}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 96520, "scanner": "gitleaks", "fingerprint": "a241f5bc81e4b91ac8d95e9b7d74f08b52600820167e08a02b720502154bfeee", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "LOCAL_MOCK_SESSION_SIGNING_SECRET =\n  \"<redacted>\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|1|token redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/src/server/dev_mock.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 96519, "scanner": "gitleaks", "fingerprint": "a7a1d6dfbc5d5c66cfcb65778866487c9559e789c5cbc91b9ace37f1f1e4ec16", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "env.SESSION_SIGNING_SECRET, \"REDACTED\"", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|1|env.session_signing_secret redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "remote/test/server/dev_mock.test.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "generic-api-key", "level": "error", "message": {"text": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations."}, "properties": {"repobilityId": 96518, "scanner": "gitleaks", "fingerprint": "89ec93dd7d4f6658a35c504404e48fbe13766ed9c874ffe5c2ce03d034ac7781", "category": "credential_exposure", "severity": "critical", "confidence": 0.95, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "SESSION_SIGNING_SECRET=<redacted>", "rule_id": "generic-api-key", "scanner": "gitleaks", "detector": "generic-api-key", "correlation_key": "secret|token|97|session_signing_secret redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/superpowers/plans/2026-05-09-remote-mobile-console.md"}, "region": {"startLine": 977}}}]}, {"ruleId": "MINED005", "level": "error", "message": {"text": "[MINED005] Lua Loadstring: loadstring/load executes Lua code. Code injection."}, "properties": {"repobilityId": 96473, "scanner": "repobility-threat-engine", "fingerprint": "c3f4048e0299dbdba7b2d11d6ec87648a9e8e5620d1d2ea1fe3eb7e94ccb0102", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "lua-loadstring", "owasp": null, "cwe_ids": ["CWE-95"], "languages": ["lua"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347908+00:00", "triaged_in_corpus": 20, "observations_count": 291730, "ai_coder_pattern_id": 169}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c3f4048e0299dbdba7b2d11d6ec87648a9e8e5620d1d2ea1fe3eb7e94ccb0102"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/ai_history_cache.zig"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED005", "level": "error", "message": {"text": "[MINED005] Lua Loadstring: loadstring/load executes Lua code. Code injection."}, "properties": {"repobilityId": 96472, "scanner": "repobility-threat-engine", "fingerprint": "24ba553bd2eee73c2452040e779370ffda35ff7722cea692c65e322ebe79f354", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "lua-loadstring", "owasp": null, "cwe_ids": ["CWE-95"], "languages": ["lua"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347908+00:00", "triaged_in_corpus": 20, "observations_count": 291730, "ai_coder_pattern_id": 169}, "scanner": "repobility-threat-engine", "correlation_key": "fp|24ba553bd2eee73c2452040e779370ffda35ff7722cea692c65e322ebe79f354"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/RendererThread.zig"}, "region": {"startLine": 97}}}]}, {"ruleId": "MINED005", "level": "error", "message": {"text": "[MINED005] Lua Loadstring: loadstring/load executes Lua code. Code injection."}, "properties": {"repobilityId": 96471, "scanner": "repobility-threat-engine", "fingerprint": "e2fb28441749427bf0933cfd52504cfa583f0ced0f81a2e9a0f438fd58d0456a", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "lua-loadstring", "owasp": null, "cwe_ids": ["CWE-95"], "languages": ["lua"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347908+00:00", "triaged_in_corpus": 20, "observations_count": 291730, "ai_coder_pattern_id": 169}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e2fb28441749427bf0933cfd52504cfa583f0ced0f81a2e9a0f438fd58d0456a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/opengl/glad.zig"}, "region": {"startLine": 15}}}]}]}]}