{"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": "JRN003", "name": "Frontend API reference is not matched by discovered backend routes", "shortDescription": {"text": "Frontend API reference is not matched by discovered backend routes"}, "fullDescription": {"text": "Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore."}, "properties": {"scanner": "repobility-journey-contract", "category": "quality", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC009", "name": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function", "shortDescription": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /f/"}, "fullDescription": {"text": "Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "SEC046", "name": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supp", "shortDescription": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromis"}, "fullDescription": {"text": "Validate the URL is same-origin or on an explicit allowlist before assignment:\n  const u = new URL(serverUrl, location.href);\n  if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return;\n  location.assign(u);\nEven better: have the server return a path (/checkout/done) instead of a full URL, and only allow same-origin navigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC041", "name": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noref", "shortDescription": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and"}, "fullDescription": {"text": "Add rel=\"noopener noreferrer\" to every <a target=\"_blank\">:\n  <a href=\"...\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>\nFor dynamically generated links from JS, set rel on the element before appending. Even safe-looking subdomains should harden \u2014 costs nothing."}, "properties": {"scanner": "repobility-threat-engine", "category": "security", "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": "SEC134", "name": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left ", "shortDescription": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets"}, "fullDescription": {"text": "Move dummy values to fixtures / seed files. In application code, require these to come from config or fail closed. Add a CI grep that rejects 'lorem ipsum' and 'example.com' outside test files."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "QUAL003", "name": "Magic number used as default arg", "shortDescription": {"text": "Magic number used as default arg"}, "fullDescription": {"text": "Using hardcoded default values for complex configuration objects makes the code brittle and difficult to manage. Consider using a dedicated factory or builder pattern.\n\nAuto-promoted from proposal 444 on 2026-05-12. Synth confidence: 0.85. FP estimate: 0.00."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "LOG001", "name": "PII printed to stdout/stderr", "shortDescription": {"text": "PII printed to stdout/stderr"}, "fullDescription": {"text": "Logging password/token/email/ssn directly to stdout."}, "properties": {"scanner": "repobility", "category": "logging", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CONC002", "name": "Concurrency \u2014 TOCTOU race via os.path.exists+open", "shortDescription": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "fullDescription": {"text": "if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use."}, "properties": {"scanner": "repobility", "category": "race_condition", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "SUPC002", "name": "Supply chain \u2014 npm install without lockfile", "shortDescription": {"text": "Supply chain \u2014 npm install without lockfile"}, "fullDescription": {"text": "Production image runs npm install (resolves new versions on every build) instead of npm ci."}, "properties": {"scanner": "repobility", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CRYP001", "name": "Crypto \u2014 plaintext HTTP for sensitive endpoint", "shortDescription": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "fullDescription": {"text": "Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"scanner": "repobility", "category": "crypto", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "XSS001", "name": "Cross-site scripting \u2014 dangerouslySetInnerHTML", "shortDescription": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "fullDescription": {"text": "dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"scanner": "repobility", "category": "injection", "severity": "medium", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "WEB015", "name": "Public web app has no Content Security Policy", "shortDescription": {"text": "Public web app has no Content Security Policy"}, "fullDescription": {"text": "Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "AUC004", "name": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence ", "shortDescription": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PUT /zero/org/members/cred"}, "fullDescription": {"text": "An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PUT /zero/org/members/credit-cap/route."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.66, "cwe": "CWE-285", "owasp": "API5:2023 Broken Function Level Authorization"}}, {"id": "AUC001", "name": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobilit", "shortDescription": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "fullDescription": {"text": "Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Dockerfile base image has no explicit tag", "shortDescription": {"text": "Dockerfile base image has no explicit tag"}, "fullDescription": {"text": "Images without explicit tags resolve to a mutable default tag, which weakens reproducibility and review."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "DKR018", "name": "Database dump or local database file is included in Docker build context", "shortDescription": {"text": "Database dump or local database file is included in Docker build context"}, "fullDescription": {"text": "Move database dumps outside the Docker build context or exclude them with .dockerignore. Keep backup and restore artifacts in private object storage or a dedicated backup workflow."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "SEC001", "name": "[SEC001] Hardcoded Password: Hardcoded password found in source code.", "shortDescription": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "fullDescription": {"text": "Use environment variables or a secrets manager."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "AIC001", "name": "Parallel implementation file sits beside a canonical file", "shortDescription": {"text": "Parallel implementation file sits beside a canonical file"}, "fullDescription": {"text": "AI-assisted edits often create a new sibling file instead of integrating the change into the existing module. That leaves two paths for future maintainers to understand and can hide the code that is actually wired into the app."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR011", "name": "Dockerfile installs recommended OS packages", "shortDescription": {"text": "Dockerfile installs recommended OS packages"}, "fullDescription": {"text": "Add `--no-install-recommends` and explicitly list only packages the image needs."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "SEC010", "name": "[SEC010] Cloud Provider Token: Cloud provider or SaaS API token found in source code.", "shortDescription": {"text": "[SEC010] Cloud Provider Token: Cloud provider or SaaS API token found in source code."}, "fullDescription": {"text": "Remove immediately and rotate the token. Use environment variables."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "low", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC022", "name": "[SEC022] Database URL With Embedded Credential: A database connection URL contains an embedded username and password. Th", "shortDescription": {"text": "[SEC022] Database URL With Embedded Credential: A database connection URL contains an embedded username and password. These URLs are often copied into defaults, docs, and scripts, then leak working credentials."}, "fullDescription": {"text": "Remove the embedded password, require the URL from a secret store or environment variable, and rotate the database credential."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "low", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `load_registry` has cognitive complexity 9 (SonarSource scale). Cognitive ", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `load_registry` has cognitive complexity 9 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion "}, "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 9."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "low", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "QUAL005", "name": "Cluster of TODOs in one file", "shortDescription": {"text": "Cluster of TODOs in one file"}, "fullDescription": {"text": "Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "properties": {"scanner": "repobility", "category": "quality", "severity": "low", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "WEB011", "name": "Public web app has no humans.txt", "shortDescription": {"text": "Public web app has no humans.txt"}, "fullDescription": {"text": "Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "WEB008", "name": "Public docs site has no llms.txt", "shortDescription": {"text": "Public docs site has no llms.txt"}, "fullDescription": {"text": "Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "WEB002", "name": "Public web app has no sitemap", "shortDescription": {"text": "Public web app has no sitemap"}, "fullDescription": {"text": "Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "WEB001", "name": "Public web app has no robots.txt", "shortDescription": {"text": "Public web app has no robots.txt"}, "fullDescription": {"text": "Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": "Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "SEC002", "name": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code.", "shortDescription": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "fullDescription": {"text": "Use environment variables. Add the pattern to .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "low", "confidence": 0.4, "cwe": "", "owasp": ""}}, {"id": "AIC002", "name": "Source file name looks like an AI patch artifact", "shortDescription": {"text": "Source file name looks like an AI patch artifact"}, "fullDescription": {"text": "Files named as final, fixed, copy, new, or backup are often temporary patch artifacts. They may be legitimate, but they deserve review before becoming production surface area."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional fil", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "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": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED099", "name": "[MINED099] Hardcoded Secret (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED099] Hardcoded Secret (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Move the secret to an environment variable or secret manager. Rotate the exposed credential immediately \u2014 assume it is compromised."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED055", "name": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of ", "shortDescription": {"text": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of npm ci."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1357 / A06:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED058", "name": "[MINED058] React Dangerously Set Html (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED058] React Dangerously Set Html (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-79 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[MINED049] Print Pii (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 237 more): Same pattern found in 237 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 237 more): Same pattern found in 237 additional files. Review if needed."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 356 more): Same pattern found in 356 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 356 more): Same pattern found in 356 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC118", "name": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 3 more): Same pattern found in 3 additional files. ", "shortDescription": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Use `uuid.uuid4()` (random) or `secrets.token_urlsafe()` for tokens. In Go, use `uuid.NewRandom()` (google/uuid)."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 35 more): Same pattern found in 35 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 35 more): Same pattern found in 35 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": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if neede", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO ", "shortDescription": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED062", "name": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model.", "shortDescription": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 21 more): Same pattern found in 21 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 21 more): Same pattern found in 21 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": "MINED068", "name": "[MINED068] Rust Unsafe Block (and 7 more): Same pattern found in 7 additional files. Review if needed.", "shortDescription": {"text": "[MINED068] Rust Unsafe Block (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-119 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED066", "name": "[MINED066] Rust Panic Macro (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED066] Rust Panic Macro (and 4 more): Same pattern found in 4 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": "MINED059", "name": "[MINED059] Rust Expect In Prod (and 7 more): Same pattern found in 7 additional files. Review if needed.", "shortDescription": {"text": "[MINED059] Rust Expect In Prod (and 7 more): Same pattern found in 7 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": "MINED043", "name": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data.", "shortDescription": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "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": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED003", "name": "[MINED003] Rust Unwrap In Prod (and 43 more): Same pattern found in 43 additional files. Review if needed.", "shortDescription": {"text": "[MINED003] Rust Unwrap In Prod (and 43 more): Same pattern found in 43 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": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 164 more): Same pattern found in 164 ad", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 164 more): Same pattern found in 164 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": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "info", "confidence": 0.25, "cwe": "", "owasp": ""}}, {"id": "MINED126", "name": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image", "shortDescription": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow "}, "fullDescription": {"text": "Replace with `ghcr.io/vm0-ai/vm0-toolchain:20260525@sha256:<digest>`. Re-pin via Dependabot Docker scope."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3", "shortDescription": {"text": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3.0.3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/ch"}, "fullDescription": {"text": "Replace with: `uses: slackapi/slack-github-action@<40-char-sha>  # v3.0.3` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` resolves the tag at build time. The ", "shortDescription": {"text": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` 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 shou"}, "fullDescription": {"text": "Replace with: `FROM ubuntu:24.04@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_write_failure_does_not_raise: Test function `test_write_failure_does_not_raise` r", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_write_failure_does_not_raise: Test function `test_write_failure_does_not_raise` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without v"}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_later_allowed_permission_still_w", "shortDescription": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_later_allowed_permission_still_wins_after_earlier_denied_match` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, but no assignm"}, "fullDescription": {"text": "Initialize `self._assert_same_result = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN004", "name": "Consent is collected in UI without visible backend audit persistence", "shortDescription": {"text": "Consent is collected in UI without visible backend audit persistence"}, "fullDescription": {"text": "Persist consent as a backend record with subject, actor, purpose, scope, legal text version, timestamp, IP address, user agent, and revocation state."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "AUC003", "name": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby a", "shortDescription": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /f/:userId/:id/:filename."}, "fullDescription": {"text": "Add ownership, tenant, relationship, or policy checks before reading or mutating the target object."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "high", "confidence": 0.7, "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": "SEC027", "name": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not config", "shortDescription": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "fullDescription": {"text": "Pass `noent: false` to libxmljs. Avoid xml2js or pass explicit secure config. Prefer parsers that don't expand external entities at all."}, "properties": {"scanner": "repobility-threat-engine", "category": "xxe", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC114", "name": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker", "shortDescription": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker-supplied segments does NOT prevent escape from the base directory. `../../../etc/passwd` resolves cleanly."}, "fullDescription": {"text": "After joining, re-check containment: `if !strings.HasPrefix(filepath.Clean(joined), filepath.Clean(baseDir)+string(os.PathSeparator)) { error }`. In Node: `path.resolve(base, x); if (!resolved.startsWith(base + path.sep)) throw`."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported fr", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC080", "name": "[SEC080] Python: tarfile.extractall without filter: tarfile.extract*() without filter='data' allows path-traversal (CVE-", "shortDescription": {"text": "[SEC080] Python: tarfile.extractall without filter: tarfile.extract*() without filter='data' allows path-traversal (CVE-2007-4559, fixed via PEP 706 in 3.12). Ported from bandit B202 (Apache-2.0)."}, "fullDescription": {"text": "Add `filter='data'` (Python \u2265 3.12) or manually validate member paths against `os.path.abspath`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC113", "name": "[SEC113] SSH host-key verification disabled (MITM): Accepting any SSH host key on first connect lets an active MITM impe", "shortDescription": {"text": "[SEC113] SSH host-key verification disabled (MITM): Accepting any SSH host key on first connect lets an active MITM impersonate the server. Common in `paramiko.AutoAddPolicy()`."}, "fullDescription": {"text": "Python: load `~/.ssh/known_hosts` and use `paramiko.RejectPolicy()`. Go: implement a `ssh.HostKeyCallback` that compares against a known fingerprint. Java JSch: load known_hosts via `jsch.setKnownHosts(...)`."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SUPC001", "name": "Supply chain \u2014 curl | bash anti-pattern", "shortDescription": {"text": "Supply chain \u2014 curl | bash anti-pattern"}, "fullDescription": {"text": "curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"scanner": "repobility", "category": "supply_chain", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "CRYP002", "name": "Crypto \u2014 weak hash or cipher (MD5, SHA1, DES, RC4)", "shortDescription": {"text": "Crypto \u2014 weak hash or cipher (MD5, SHA1, DES, RC4)"}, "fullDescription": {"text": "MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"scanner": "repobility", "category": "crypto", "severity": "high", "confidence": 0.85, "cwe": "", "owasp": ""}}, {"id": "JRN009", "name": "Secret-like setting is echoed into a password input value", "shortDescription": {"text": "Secret-like setting is echoed into a password input value"}, "fullDescription": {"text": "Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.83, "cwe": "", "owasp": ""}}, {"id": "DKR006", "name": "Dockerfile pipes a remote script into a shell", "shortDescription": {"text": "Dockerfile pipes a remote script into a shell"}, "fullDescription": {"text": "Download the artifact, verify its checksum or signature, pin the version, and then execute it."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "SEC013", "name": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows ", "shortDescription": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "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": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "MINED133", "name": "[MINED133] Hardcoded Discord webhook URL in source: File contains a hardcoded `Discord` webhook URL: `https://discord.co", "shortDescription": {"text": "[MINED133] Hardcoded Discord webhook URL in source: File contains a hardcoded `Discord` webhook URL: `https://discord.com/api/webhooks/123/abc...`. Webhook URLs are unauthenticated POST endpoints \u2014 anyone with the URL can send messages. The"}, "fullDescription": {"text": "Move the URL to a secret manager / environment variable. Rotate the webhook immediately if this is a live URL (consider it compromised the moment it landed in git)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_requ", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrat"}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "SEC056", "name": "[SEC056] GitLab personal access token: GitLab personal access token. Ported from gitleaks gitlab-pat (MIT).", "shortDescription": {"text": "[SEC056] GitLab personal access token: GitLab personal access token. Ported from gitleaks gitlab-pat (MIT)."}, "fullDescription": {"text": "Revoke the token in GitLab -> User Settings -> Access Tokens."}, "properties": {"scanner": "repobility-threat-engine", "category": "secret", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC051", "name": "[SEC051] Stripe live/test key: Stripe API key (live or test). Live keys can charge real cards. Ported from gitleaks stri", "shortDescription": {"text": "[SEC051] Stripe live/test key: Stripe API key (live or test). Live keys can charge real cards. Ported from gitleaks stripe-access-token (MIT)."}, "fullDescription": {"text": "Roll the key in Stripe Dashboard immediately. If a live key was committed, audit Stripe events for unauthorized charges."}, "properties": {"scanner": "repobility-threat-engine", "category": "secret", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED019", "name": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates.", "shortDescription": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-94 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SECR001", "name": "Hardcoded secret in source", "shortDescription": {"text": "Hardcoded secret in source"}, "fullDescription": {"text": "API key, AWS access key, password, or private key embedded directly in source. AI assistants frequently leak demo creds."}, "properties": {"scanner": "repobility", "category": "credential_exposure", "severity": "critical", "confidence": 0.85, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/193"}, "properties": {"repository": "vm0-ai/vm0", "repoUrl": "https://github.com/vm0-ai/vm0", "branch": "main"}, "results": [{"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51293, "scanner": "repobility-journey-contract", "fingerprint": "41e59e7483706d6455b5b827becbddc2842988a974d22cdef26e47085efb1508", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/webhooks/built-in-generations/fal/{param}", "correlation_key": "fp|41e59e7483706d6455b5b827becbddc2842988a974d22cdef26e47085efb1508", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/built-in-generation-provider-webhooks.service.ts"}, "region": {"startLine": 56}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51292, "scanner": "repobility-journey-contract", "fingerprint": "491a678883fcbebb4b59b4d81847ce06e311bb67c9508fb4b81e54c3b8e4fca0", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/event-consumers/chat-assistant", "correlation_key": "fp|491a678883fcbebb4b59b4d81847ce06e311bb67c9508fb4b81e54c3b8e4fca0", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/agent-webhook-events.service.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51291, "scanner": "repobility-journey-contract", "fingerprint": "96aea12b147f7790e0716a3b1978bc8577ef011751b275730564797578dfc5f7", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/event-consumers/axiom", "correlation_key": "fp|96aea12b147f7790e0716a3b1978bc8577ef011751b275730564797578dfc5f7", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/agent-webhook-events.service.ts"}, "region": {"startLine": 62}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51290, "scanner": "repobility-journey-contract", "fingerprint": "017ec2e81aa7b7c900ae96198de7c8657ddfe5917d8fe31026990314292f46f3", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/telegram/download-file", "correlation_key": "fp|017ec2e81aa7b7c900ae96198de7c8657ddfe5917d8fe31026990314292f46f3", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-telegram.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51289, "scanner": "repobility-journey-contract", "fingerprint": "cde0fc24f3f1bed78602b07e2c81b6472c52029c78fad43d4b96d4b131134f60", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/slack/download-file", "correlation_key": "fp|cde0fc24f3f1bed78602b07e2c81b6472c52029c78fad43d4b96d4b131134f60", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-slack.ts"}, "region": {"startLine": 51}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51288, "scanner": "repobility-journey-contract", "fingerprint": "4930a693b42014ddc4762c1abf1ce319caa5370f13f0f0d169f897110a88f065", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/github/download-file", "correlation_key": "fp|4930a693b42014ddc4762c1abf1ce319caa5370f13f0f0d169f897110a88f065", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-github-download-file.ts"}, "region": {"startLine": 19}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51287, "scanner": "repobility-journey-contract", "fingerprint": "f5160cc329d9954ebb30b7a1f4cb6205fc9f87501342a69767e30cb9df58e559", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/connectors/{param}/authorize", "correlation_key": "fp|f5160cc329d9954ebb30b7a1f4cb6205fc9f87501342a69767e30cb9df58e559", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-connectors.ts"}, "region": {"startLine": 558}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51286, "scanner": "repobility-journey-contract", "fingerprint": "2ff0be9f71c8e8857dc12bc6432c243c326bd818add7d89d338d2b81ef9e3265", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/chat", "correlation_key": "fp|2ff0be9f71c8e8857dc12bc6432c243c326bd818add7d89d338d2b81ef9e3265", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-chat-messages.ts"}, "region": {"startLine": 250}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51285, "scanner": "repobility-journey-contract", "fingerprint": "82829cf7893668995d67bc2eecf93106cf8cab7e740847afcd757f2ed1fc910e", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/public/model-rankings", "correlation_key": "fp|82829cf7893668995d67bc2eecf93106cf8cab7e740847afcd757f2ed1fc910e", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/model-stats.ts"}, "region": {"startLine": 62}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51284, "scanner": "repobility-journey-contract", "fingerprint": "453d6777f28f0f0caf2f9021ba03efa011908708c7ebeaaea984c23292171f14", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/cron/aggregate-model-stats", "correlation_key": "fp|453d6777f28f0f0caf2f9021ba03efa011908708c7ebeaaea984c23292171f14", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/model-stats.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51283, "scanner": "repobility-journey-contract", "fingerprint": "0a487e627128764a13f2e437d6d008b5eb8c38c034094491914be3d107734a9c", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/telegram", "correlation_key": "fp|0a487e627128764a13f2e437d6d008b5eb8c38c034094491914be3d107734a9c", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-event-consumers-telegram-typing.ts"}, "region": {"startLine": 68}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51282, "scanner": "repobility-journey-contract", "fingerprint": "25fb883afc71aed93a90cd7a75c2ff1d0e55cc0371861e0e9e6c184ffdb6f02f", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/agentphone", "correlation_key": "fp|25fb883afc71aed93a90cd7a75c2ff1d0e55cc0371861e0e9e6c184ffdb6f02f", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-event-consumers-agentphone-typing.ts"}, "region": {"startLine": 92}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51281, "scanner": "repobility-journey-contract", "fingerprint": "a297127f32a0bb2126c389b61746125608e978876d7e3234b44c3517920d2d8f", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/chat", "correlation_key": "fp|a297127f32a0bb2126c389b61746125608e978876d7e3234b44c3517920d2d8f", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-chat.ts"}, "region": {"startLine": 164}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 51280, "scanner": "repobility-journey-contract", "fingerprint": "f69527c43ebdb191c769e9573c27ce95e751a34c9357e8391c43880a75eb64dc", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/github/app/setup/callback", "correlation_key": "fp|f69527c43ebdb191c769e9573c27ce95e751a34c9357e8391c43880a75eb64dc", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/github-oauth.ts"}, "region": {"startLine": 57}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /f/:userId/:id/:filename."}, "properties": {"repobilityId": 51279, "scanner": "repobility-access-control", "fingerprint": "4b8900d76d8415604575087d1e27f388868074918436ecd1745150ed873d8da3", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/f/:userId/:id/:filename", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|turbo/apps/web/app/f/ userid / id / filename /route.ts|45|auc009", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/f/[userId]/[id]/[filename]/route.ts"}, "region": {"startLine": 45}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 51243, "scanner": "repobility-threat-engine", "fingerprint": "6a354ebd056f7d3bd05f04f841b822125ad0a3c45ce0fd9a75c34ab5fa22f1f0", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "location.href = DESKTOP_AUTH_TOKEN_PATH", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6a354ebd056f7d3bd05f04f841b822125ad0a3c45ce0fd9a75c34ab5fa22f1f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/desktop-auth/consume/DesktopAuthConsumeClient.tsx"}, "region": {"startLine": 61}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 51242, "scanner": "repobility-threat-engine", "fingerprint": "c240ac5273d997ead13ea28ed592e7f30673dc54a602964f117cfb9f5dad52e3", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "location.href = callbackUrl", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c240ac5273d997ead13ea28ed592e7f30673dc54a602964f117cfb9f5dad52e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/desktop-auth/callback/DesktopAuthCallbackClient.tsx"}, "region": {"startLine": 87}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 51233, "scanner": "repobility-threat-engine", "fingerprint": "813f5fdcdd13a8b77f0267ad27b0a9f2b99f16292de5bb4d51b3aeb363d009a1", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.open(`${window.location.origin}${href}`, \"_blank\")", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|55|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/views/router/link.tsx"}, "region": {"startLine": 55}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 51232, "scanner": "repobility-threat-engine", "fingerprint": "593fffc811826b4f595256a9668cab97f11706a27f3361a124842a7a83a61c72", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.open(\"about:blank\", \"_blank\", popupFeatures)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|203|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/signals/zero-page/zero-github.ts"}, "region": {"startLine": 203}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 51231, "scanner": "repobility-threat-engine", "fingerprint": "ebe992815fab87ac247d62a7155e5ec4e5ddc033a82e2f27248c452a43f928ce", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.open(\n    authUrl.toString()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|27|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/signals/zero-page/telegram-login-popup.ts"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 51229, "scanner": "repobility-threat-engine", "fingerprint": "44d7abfee39f05d0027070a71442a9e6239cf4f9baaabe957e10318075cd7a0d", "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|44d7abfee39f05d0027070a71442a9e6239cf4f9baaabe957e10318075cd7a0d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/custom-eslint/rules/no-empty-promise-catch.ts"}, "region": {"startLine": 46}}}]}, {"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": 51197, "scanner": "repobility-threat-engine", "fingerprint": "9c2d4b3081133eb0d02d0eae3dde8745eaccf0beb235b3ba478d0b7e6c6d8a0d", "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|109|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/custom-eslint/rules/no-raw-msw-http.ts"}, "region": {"startLine": 109}}}]}, {"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": 51196, "scanner": "repobility-threat-engine", "fingerprint": "47d2277e042f16d458d3df3fd463a3105c8461532d8b112cc540341ecd258599", "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|205|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/sandbox/src/sandbox.rs"}, "region": {"startLine": 205}}}]}, {"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": 51195, "scanner": "repobility-threat-engine", "fingerprint": "e3e140320a27e5f45096ba95d499c8405c00a3f616b0fe4f69964514d96a25e0", "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|crates/runner/src/main.rs|68|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/main.rs"}, "region": {"startLine": 68}}}]}, {"ruleId": "SEC134", "level": "warning", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets to swap them. In production, these break demo flows, send mail to a real example.com host (it's owned by IANA), and leak that the codebase had an AI scaffolding pass."}, "properties": {"repobilityId": 51165, "scanner": "repobility-threat-engine", "fingerprint": "5756080888497332adca3119fd0115780cb60f5134677823f8c25ca37d53cdf7", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"user@example.com\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5756080888497332adca3119fd0115780cb60f5134677823f8c25ca37d53cdf7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/endpoint.rs"}, "region": {"startLine": 331}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21868, "scanner": "repobility", "fingerprint": "a1ea69bf0767dc0bc645da1c8db55ff8", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "default 5", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/logs/index.ts"}, "region": {"startLine": 245}}}]}, {"ruleId": "QUAL003", "level": "warning", "message": {"text": "Magic number used as default arg"}, "properties": {"repobilityId": 21867, "scanner": "repobility", "fingerprint": "f7f92a36c11a9754a082a72b195ebb0c", "category": "quality", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "default 7", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "magic-number-default"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/usage/__tests__/index.test.ts"}, "region": {"startLine": 30}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16947, "scanner": "repobility", "fingerprint": "f076576c1459eeaeef9f63629cb71694", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\n    `Use this token by setting: ${chalk.cyan(\"export VM0_TOKEN=<token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/auth.ts"}, "region": {"startLine": 205}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16946, "scanner": "repobility", "fingerprint": "ec60239479fe0eed8cca8b0be68e2e52", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/auth.ts"}, "region": {"startLine": 203}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16945, "scanner": "repobility", "fingerprint": "ef19acb5ef482e880b943dcd35a9f5a3", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\"Your token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/auth.ts"}, "region": {"startLine": 201}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16944, "scanner": "repobility", "fingerprint": "172f463fcdec19ce6d187d1ba1c89019", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.green(\"\u2713 Authentication token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/auth.ts"}, "region": {"startLine": 199}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16943, "scanner": "repobility", "fingerprint": "4bddcf62463cfc88ea349893073b1a64", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\"Using token", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/auth.ts"}, "region": {"startLine": 180}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16942, "scanner": "repobility", "fingerprint": "c482bb2304d4a64db241c8b052e6afc8", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.dim(`Total: ${result.secrets.length} secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 57}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16941, "scanner": "repobility", "fingerprint": "bd2af62404118a084bb0fcbe917fded5", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\n          `    ${chalk.dim(`Updated: ${new Date(secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 51}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16940, "scanner": "repobility", "fingerprint": "399296c2fe5ebb254de6dbd3f2228f0b", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(`    ${chalk.dim(secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 49}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16939, "scanner": "repobility", "fingerprint": "c69c6a6ed2a65312f3add507ab01bba5", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(`  ${chalk.cyan(secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 44}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16938, "scanner": "repobility", "fingerprint": "b46f483e0be46f33d6b3ea5a08aba89c", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.cyan(\"  vm0 secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 19}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16937, "scanner": "repobility", "fingerprint": "9e7c8dae9a2e97d9984a118e7094a1ff", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\"To add a secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16936, "scanner": "repobility", "fingerprint": "14888e5de9e9f89086adce81458e8b2f", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.dim(\"No secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/list.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16935, "scanner": "repobility", "fingerprint": "3ae43b2e93e7bda99ae30980813e00fc", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.cyan(`    ${name}: \\${{ secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/set.ts"}, "region": {"startLine": 52}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16934, "scanner": "repobility", "fingerprint": "b0278ba73186c34da57b2f5a119a5f4c", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.green(`\u2713 Secret \"${secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/secret/set.ts"}, "region": {"startLine": 48}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16933, "scanner": "repobility", "fingerprint": "98ab2a37498c4d6adec5e105141ab41e", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(chalk.dim(\"  List secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/dashboard/index.ts"}, "region": {"startLine": 27}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16932, "scanner": "repobility", "fingerprint": "f2c82d82392a5dfd849dc8a56755fcc5", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\n      chalk.yellow(\n        \"\u26a0 Missing secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/compose/index.ts"}, "region": {"startLine": 462}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16931, "scanner": "repobility", "fingerprint": "c1254bbdc0d105128b5fe68f96a9aa0a", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(\n          JSON.stringify({\n            error: `New secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/compose/index.ts"}, "region": {"startLine": 330}}}]}, {"ruleId": "LOG001", "level": "warning", "message": {"text": "PII printed to stdout/stderr"}, "properties": {"repobilityId": 16930, "scanner": "repobility", "fingerprint": "c8e6b63c9b73e4eccca722ab5620667c", "category": "logging", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "console.log(`      - ${secret", "aljefra_cwe": ["CWE-532"], "aljefra_owasp": "A09:2021", "aljefra_pattern_slug": "print-pii"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/agent/status.ts"}, "region": {"startLine": 52}}}]}, {"ruleId": "CONC002", "level": "warning", "message": {"text": "Concurrency \u2014 TOCTOU race via os.path.exists+open"}, "properties": {"repobilityId": 16268, "scanner": "repobility", "fingerprint": "c433b055dab16836d3a61744a4ecf889", "category": "race_condition", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "if os.path.exists(registry_path):\n            with open(", "aljefra_cwe": ["CWE-367"], "aljefra_owasp": null, "aljefra_pattern_slug": "toctou-os-path-exists"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/runner/scripts/deploy/mitm-addon.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15646, "scanner": "repobility", "fingerprint": "eeabb8e14d7f9782293dd148cd72f419", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/runner/scripts/deploy/Dockerfile"}, "region": {"startLine": 54}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15645, "scanner": "repobility", "fingerprint": "6f00fb47df9f1538f20f31be790d003a", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/runner/scripts/deploy/Dockerfile"}, "region": {"startLine": 50}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15644, "scanner": "repobility", "fingerprint": "2f76ab1df649987a1c4f2995856bfc75", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/scripts/rootfs.Dockerfile"}, "region": {"startLine": 54}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15643, "scanner": "repobility", "fingerprint": "236fbb2cbe3be11af8a5baa61b2878f4", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/scripts/rootfs.Dockerfile"}, "region": {"startLine": 50}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15642, "scanner": "repobility", "fingerprint": "5f9b11f8607a916bed646605b0772443", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 128}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15641, "scanner": "repobility", "fingerprint": "63a39d26a24637f55182d0f6537a68e7", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 61}}}]}, {"ruleId": "SUPC002", "level": "warning", "message": {"text": "Supply chain \u2014 npm install without lockfile"}, "properties": {"repobilityId": 15640, "scanner": "repobility", "fingerprint": "bc90df7e302b10898943621c8348a002", "category": "supply_chain", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "RUN npm install", "aljefra_cwe": ["CWE-1357"], "aljefra_owasp": "A06:2021", "aljefra_pattern_slug": "npm-install-no-lockfile"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 27}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13858, "scanner": "repobility", "fingerprint": "90ddfa2f6e7f534e93ac07169bd289ce", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/logs/index.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13857, "scanner": "repobility", "fingerprint": "df56a9a44db91711eaa12c0fc45b75ca", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.base.yml"}, "region": {"startLine": 73}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13856, "scanner": "repobility", "fingerprint": "7e109de2a23a5664063e3458e9082869", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.base.yml"}, "region": {"startLine": 72}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13855, "scanner": "repobility", "fingerprint": "4bc9ee73317061dcb2e2cf4ee00491ca", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.base.yml"}, "region": {"startLine": 51}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13854, "scanner": "repobility", "fingerprint": "029b721cc119b6834aabe09644ac6f3e", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.web-base.yml"}, "region": {"startLine": 51}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13853, "scanner": "repobility", "fingerprint": "6df456c4e8a702257c58b1692349c7a3", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.web-base.yml"}, "region": {"startLine": 23}}}]}, {"ruleId": "CRYP001", "level": "warning", "message": {"text": "Crypto \u2014 plaintext HTTP for sensitive endpoint"}, "properties": {"repobilityId": 13852, "scanner": "repobility", "fingerprint": "0fdb87c53b18165020f7d98ca46eac60", "category": "crypto", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "http://", "aljefra_cwe": ["CWE-319"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "http-not-https"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/docker-compose.web-base.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13423, "scanner": "repobility", "fingerprint": "2fd07a1c5ee1134404fe58e5692489e3", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/layout.tsx"}, "region": {"startLine": 229}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13422, "scanner": "repobility", "fingerprint": "45a0d06492495e75dffc73093102c3bc", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/layout.tsx"}, "region": {"startLine": 215}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13421, "scanner": "repobility", "fingerprint": "5315003b9ef9462c1ef065eac60145a9", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/layout.tsx"}, "region": {"startLine": 188}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13420, "scanner": "repobility", "fingerprint": "59f36ecae42e9c5754e14cc02351c4ad", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/layout.tsx"}, "region": {"startLine": 148}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13419, "scanner": "repobility", "fingerprint": "6103503a85c440c013c8c274db3aa46a", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/page.tsx"}, "region": {"startLine": 6}}}]}, {"ruleId": "XSS001", "level": "warning", "message": {"text": "Cross-site scripting \u2014 dangerouslySetInnerHTML"}, "properties": {"repobilityId": 13418, "scanner": "repobility", "fingerprint": "1ed4d57ede7350d539798f3ec3f3dbaf", "category": "injection", "severity": "medium", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "dangerouslySetInnerHTML", "aljefra_cwe": ["CWE-79"], "aljefra_owasp": "A03:2021", "aljefra_pattern_slug": "react-dangerously-set-html"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/docs/src/components/mermaid.tsx"}, "region": {"startLine": 38}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 5891, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB015", "level": "warning", "message": {"text": "Public web app has no Content Security Policy"}, "properties": {"repobilityId": 5890, "scanner": "repobility-web-presence", "fingerprint": "7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63", "category": "quality", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no CSP header, framework header config, Helmet policy, or CSP meta tag was discovered.", "evidence": {"rule_id": "WEB015", "scanner": "repobility-web-presence", "references": ["https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "index.html"}, "region": {"startLine": 1}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5883, "scanner": "repobility-journey-contract", "fingerprint": "237f5c7f3c680e25e1626ea4c3379d620358ce5088dd6ee61eff873952e278c8", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/telegram/download-file", "correlation_key": "fp|237f5c7f3c680e25e1626ea4c3379d620358ce5088dd6ee61eff873952e278c8", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/domains/integrations-telegram.ts"}, "region": {"startLine": 105}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5882, "scanner": "repobility-journey-contract", "fingerprint": "0ae786e7364eecc6b2e7c107e4a22104882d82231bb5095eaf778338ddd3ff80", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/slack/download-file", "correlation_key": "fp|0ae786e7364eecc6b2e7c107e4a22104882d82231bb5095eaf778338ddd3ff80", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/domains/integrations-slack.ts"}, "region": {"startLine": 91}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5881, "scanner": "repobility-journey-contract", "fingerprint": "0b411d5eab0c64451a7125e008cbdd8f3ab78d0d9d6331ba1dfec4b3ba3ada95", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/phone/download-file", "correlation_key": "fp|0b411d5eab0c64451a7125e008cbdd8f3ab78d0d9d6331ba1dfec4b3ba3ada95", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/lib/api/domains/integrations-phone.ts"}, "region": {"startLine": 88}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5880, "scanner": "repobility-journey-contract", "fingerprint": "9c37073fc3138d91f71e4597e0c8b31003c5355559b87fefd6c9621bfd837604", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/voice-chat", "correlation_key": "fp|9c37073fc3138d91f71e4597e0c8b31003c5355559b87fefd6c9621bfd837604", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/zero-voice-chat.service.ts"}, "region": {"startLine": 527}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5879, "scanner": "repobility-journey-contract", "fingerprint": "b13a3ea3b7f9684c617479fb42a13dec63d4ef10494f93aeda398d7c7cfcdac5", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/github/oauth/install", "correlation_key": "fp|b13a3ea3b7f9684c617479fb42a13dec63d4ef10494f93aeda398d7c7cfcdac5", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/integrations-github.service.ts"}, "region": {"startLine": 43}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5878, "scanner": "repobility-journey-contract", "fingerprint": "a16af68116e08cfb2d53048cccb7b880c35287f8161ae4dbb6198983a70a1ed0", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/chat", "correlation_key": "fp|a16af68116e08cfb2d53048cccb7b880c35287f8161ae4dbb6198983a70a1ed0", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/chat-thread-v1-send.service.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5877, "scanner": "repobility-journey-contract", "fingerprint": "99b01b4183e983f1ec5a45f26f0e37aae314dd80592fba75ae808b0eadaf595b", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/web/download-file", "correlation_key": "fp|99b01b4183e983f1ec5a45f26f0e37aae314dd80592fba75ae808b0eadaf595b", "backend_endpoint_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-web-download.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5876, "scanner": "repobility-journey-contract", "fingerprint": "d7bc0069628555aaebc1dfb3c736345d5400aed3c0edd0cf3b4a4a35475a32ad", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/telegram/download-file", "correlation_key": "fp|d7bc0069628555aaebc1dfb3c736345d5400aed3c0edd0cf3b4a4a35475a32ad", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-telegram.ts"}, "region": {"startLine": 44}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5875, "scanner": "repobility-journey-contract", "fingerprint": "4cfcb838d052eb3682c84f79e82e17b016c72c2370b725408b515c45cd94eb8c", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/zero/integrations/slack/download-file", "correlation_key": "fp|4cfcb838d052eb3682c84f79e82e17b016c72c2370b725408b515c45cd94eb8c", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-slack.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5874, "scanner": "repobility-journey-contract", "fingerprint": "c1843f66f36deb7589bee99da3b6be3d7772e6ea9d06d285c90b9576f3244eb2", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/connectors/{param}/authorize", "correlation_key": "fp|c1843f66f36deb7589bee99da3b6be3d7772e6ea9d06d285c90b9576f3244eb2", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-connectors.ts"}, "region": {"startLine": 638}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5873, "scanner": "repobility-journey-contract", "fingerprint": "db5307b32f322e9f140895859eb4d7bfe112f6b0da9088b6c6d3ebac8416e992", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/chat", "correlation_key": "fp|db5307b32f322e9f140895859eb4d7bfe112f6b0da9088b6c6d3ebac8416e992", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-chat-messages.ts"}, "region": {"startLine": 281}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5872, "scanner": "repobility-journey-contract", "fingerprint": "c6d81bd76f5a5ce00adc3f1bcf97b26c8ba0695cd9e00e7941801746bcd20946", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/vercel-sandbox/smoke", "correlation_key": "fp|c6d81bd76f5a5ce00adc3f1bcf97b26c8ba0695cd9e00e7941801746bcd20946", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/vercel-sandbox-smoke.ts"}, "region": {"startLine": 62}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5871, "scanner": "repobility-journey-contract", "fingerprint": "f8f4637f8c40399c8be71ffcd1de252fa2f42dc7544e22f0ed249d2882c8c62d", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/cron/aggregate-model-stats", "correlation_key": "fp|f8f4637f8c40399c8be71ffcd1de252fa2f42dc7544e22f0ed249d2882c8c62d", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/model-stats.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5870, "scanner": "repobility-journey-contract", "fingerprint": "cfa6d09fafbc3565f75d7807f6a26634a1df9eac053fef9acf3144ca971182ae", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/telegram", "correlation_key": "fp|cfa6d09fafbc3565f75d7807f6a26634a1df9eac053fef9acf3144ca971182ae", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-event-consumers-telegram-typing.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 5869, "scanner": "repobility-journey-contract", "fingerprint": "f0bd9ff2bc5ac4be977fb03c6c92d1b8708defb7be2acbd09be7e08e9e0f75dc", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/internal/callbacks/chat", "correlation_key": "fp|f0bd9ff2bc5ac4be977fb03c6c92d1b8708defb7be2acbd09be7e08e9e0f75dc", "backend_endpoint_count": 120}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-chat.ts"}, "region": {"startLine": 163}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /integrations/telegram/link/route."}, "properties": {"repobilityId": 5868, "scanner": "repobility-access-control", "fingerprint": "6c144bc024182be504487ad0119a0e2ae5f57d08b1679afb5e9eedce7f8fc2f5", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/link/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|380|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/link/route.ts"}, "region": {"startLine": 380}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /integrations/telegram/link/route."}, "properties": {"repobilityId": 5867, "scanner": "repobility-access-control", "fingerprint": "84cc53142b7181b157f556e449344b326cafa618f0a9741e67200daae29951eb", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/link/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|247|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/link/route.ts"}, "region": {"startLine": 247}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /integrations/telegram/link/route."}, "properties": {"repobilityId": 5866, "scanner": "repobility-access-control", "fingerprint": "ae200ee0e04240cba3c38922055c516a14c8bc12c3460390545fd91927dd70df", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/link/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|153|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/link/route.ts"}, "region": {"startLine": 153}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /integrations/telegram/auth-callback/route."}, "properties": {"repobilityId": 5865, "scanner": "repobility-access-control", "fingerprint": "4fc27c63dd4ef7183de3c09bb9c38e6d8313cdccee776caabb4204c5641bdba0", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/auth-callback/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|13|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/auth-callback/route.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /integrations/github/route."}, "properties": {"repobilityId": 5864, "scanner": "repobility-access-control", "fingerprint": "af1ea8eac5c169b97457deb5938a0ef6da49dd36a24cea0058805fa0baefda7b", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/github/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|33|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/github/route.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /integrations/telegram/route."}, "properties": {"repobilityId": 5863, "scanner": "repobility-access-control", "fingerprint": "7f54545567cca98e4070dc263cd4b6b14c8122eccb47acfa98b3e48f98becb6d", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|14|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/route.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /usage/route."}, "properties": {"repobilityId": 5862, "scanner": "repobility-access-control", "fingerprint": "b555d03bf5d0cfc7f883cc0eaffbddd13a50469b080c7931e379fffdee29c482", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/usage/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|96|cwe-285", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/usage/route.ts"}, "region": {"startLine": 96}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /device-token/route."}, "properties": {"repobilityId": 5861, "scanner": "repobility-access-control", "fingerprint": "54743d0a252de82610e9e99c91cbfaec281c532226ac41dc1bacb08d2d6f83e9", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/device-token/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|3|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/device-token/route.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /generate-image/route."}, "properties": {"repobilityId": 5860, "scanner": "repobility-access-control", "fingerprint": "d2e5ea1102684cb9fb2db433e29f1fc82d2a1fcf1925ab6fe55a69aa930b50c1", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/generate-image/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|103|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/generate-image/route.ts"}, "region": {"startLine": 103}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /monday-app-association.json."}, "properties": {"repobilityId": 5859, "scanner": "repobility-access-control", "fingerprint": "95f6fd00723c3065ca0d0d388f457fa4e946eab096305f8aff5641236daf36aa", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/monday-app-association.json", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|4|auc009", "identity_targets": ["authenticated"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/monday-app-association.json/route.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PUT /zero/org/members/credit-cap/route."}, "properties": {"repobilityId": 5858, "scanner": "repobility-access-control", "fingerprint": "247c53054fe3ea9d45418c662f94c0a2892d8088b30debd53fe36fc665b46b20", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/org/members/credit-cap/route", "method": "PUT", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|71|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/org/members/credit-cap/route.ts"}, "region": {"startLine": 71}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /zero/org/logo/route."}, "properties": {"repobilityId": 5857, "scanner": "repobility-access-control", "fingerprint": "184a3153e50d86b8597efb645608e4e695c529fd865a102a5c34c865919603cb", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/org/logo/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|115|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/org/logo/route.ts"}, "region": {"startLine": 115}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /zero/org/logo/route."}, "properties": {"repobilityId": 5856, "scanner": "repobility-access-control", "fingerprint": "6f3259789cbd27b1cc1a51f8187639589d1ecca4ae60b32fad0d3a67403e40a7", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/org/logo/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|63|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/org/logo/route.ts"}, "region": {"startLine": 63}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: POST /zero/integrations/slack/connect/route."}, "properties": {"repobilityId": 5855, "scanner": "repobility-access-control", "fingerprint": "16150a3744dc4f8faa5a13b53cb7ee613125315d7adea81e398cf1b10fadb42b", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/integrations/slack/connect/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|107|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/integrations/slack/connect/route.ts"}, "region": {"startLine": 107}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /zero/integrations/slack/route."}, "properties": {"repobilityId": 5854, "scanner": "repobility-access-control", "fingerprint": "58b6baabab89a8249c6e217b003a81b1afae77303eb7e5791d76dae367f61154", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/integrations/slack/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|141|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/integrations/slack/route.ts"}, "region": {"startLine": 141}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /integrations/telegram/:botId/route."}, "properties": {"repobilityId": 5853, "scanner": "repobility-access-control", "fingerprint": "210ab9bbcecb693f3a4b5e9829e1df4bf6a07b44f30f7df1fac878561a62502b", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/:botId/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / botid /route.ts|274|cwe-285", "identity_targets": ["authenticated", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/[botId]/route.ts"}, "region": {"startLine": 274}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /integrations/telegram/:botId/route."}, "properties": {"repobilityId": 5852, "scanner": "repobility-access-control", "fingerprint": "01f0966a8d8c8451b64ab9532fd9e7faf54750c7399866f586c7002f485d1e3d", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/:botId/route", "method": "PATCH", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / botid /route.ts|145|cwe-285", "identity_targets": ["authenticated", "owner", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/[botId]/route.ts"}, "region": {"startLine": 145}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: PATCH /integrations/github/route."}, "properties": {"repobilityId": 5851, "scanner": "repobility-access-control", "fingerprint": "2a86d3c9197d920cdb79984894555b4395fa742d9b721b06c5b754a629fa4ae5", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/github/route", "method": "PATCH", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|280|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/github/route.ts"}, "region": {"startLine": 280}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: DELETE /integrations/github/route."}, "properties": {"repobilityId": 5850, "scanner": "repobility-access-control", "fingerprint": "d6463fa5ec39ff039960a048a33996c8d4f53df5f7c798a9cfd386052eddeb1b", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/github/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|193|cwe-285", "identity_targets": ["authenticated", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/github/route.ts"}, "region": {"startLine": 193}}}]}, {"ruleId": "AUC001", "level": "warning", "message": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "properties": {"repobilityId": 5841, "scanner": "repobility-access-control", "fingerprint": "f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10", "category": "auth", "severity": "medium", "confidence": 0.92, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["Next.js"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 5839, "scanner": "repobility-docker", "fingerprint": "155e63c5e535684880a4748a8a89a9b3bf50021a6a3586f083381593c3df45a8", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "toolchain-rust", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|155e63c5e535684880a4748a8a89a9b3bf50021a6a3586f083381593c3df45a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 123}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 5833, "scanner": "repobility-docker", "fingerprint": "76ffeee72351edf778107670e7c3e72e4e7b03801eb1275c57d79a5ec23bef42", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "toolchain-rust", "rule_id": "DKR002", "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|76ffeee72351edf778107670e7c3e72e4e7b03801eb1275c57d79a5ec23bef42"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 123}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 5831, "scanner": "repobility-docker", "fingerprint": "6f6438205470d7ae085179f19a52e3fb3e04d93884eda2a2fcbf7311804de3d5", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "toolchain", "rule_id": "DKR002", "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|6f6438205470d7ae085179f19a52e3fb3e04d93884eda2a2fcbf7311804de3d5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 30}}}]}, {"ruleId": "DKR018", "level": "warning", "message": {"text": "Database dump or local database file is included in Docker build context"}, "properties": {"repobilityId": 5827, "scanner": "repobility-docker", "fingerprint": "655485f8d8d660f19955b099504360fbf5ff0f88b2be2fc7d9501b5ab7e7369f", "category": "docker", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Database-like artifacts are reachable from the Docker build context and are not ignored.", "evidence": {"rule_id": "DKR018", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/engine/storage/volumes/"], "correlation_key": "fp|655485f8d8d660f19955b099504360fbf5ff0f88b2be2fc7d9501b5ab7e7369f", "database_artifacts": [{"path": "turbo/packages/db/src/migrations/0301_drop_memory_and_artifact_snapshot.sql", "size_mb": 0.0}, {"path": "turbo/packages/db/src/migrations/0017_rename_volume_snapshots_to_artifact_snapshot.sql", "size_mb": 0.0}]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 5825, "scanner": "repobility-threat-engine", "fingerprint": "99547d72aa8a84dcf681c68194e68d8dfab87cb0e815651d9d08df7043baa7c9", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (3.9 bits) \u2014 may be placeholder or common string", "evidence": {"match": "passwd = \"<redacted>\"", "reason": "Low entropy value (3.9 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|token|26|passwd redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/vsock-guest/src/user.rs"}, "region": {"startLine": 261}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5819, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6f1304f6522f0b0d89b85a9bd5389ebb0173344a68adb2854a2e637426d1bb66", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/test-slack-state.ts", "duplicate_line": 353, "correlation_key": "fp|6f1304f6522f0b0d89b85a9bd5389ebb0173344a68adb2854a2e637426d1bb66"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/test-telegram-state.ts"}, "region": {"startLine": 99}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5818, "scanner": "repobility-ai-code-hygiene", "fingerprint": "16858c10eb351a9af419ed252b05f6eea5351a3ff78174643347e3e74da79885", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-event-consumers-chat-assistant.ts", "duplicate_line": 19, "correlation_key": "fp|16858c10eb351a9af419ed252b05f6eea5351a3ff78174643347e3e74da79885"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-event-consumers-voice-chat.ts"}, "region": {"startLine": 22}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5817, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7fc44d843735d34b29239ece803b4cfd495a346288175ab3c6f7c26d8f940d65", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-callbacks-slack-org.ts", "duplicate_line": 352, "correlation_key": "fp|7fc44d843735d34b29239ece803b4cfd495a346288175ab3c6f7c26d8f940d65"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-telegram.ts"}, "region": {"startLine": 209}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5816, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8188331a2be48e13ca9f384af84981319426c98f518b5632f4e4a285074d5bdb", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-callbacks-github-issues.ts", "duplicate_line": 72, "correlation_key": "fp|8188331a2be48e13ca9f384af84981319426c98f518b5632f4e4a285074d5bdb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-telegram.ts"}, "region": {"startLine": 78}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5813, "scanner": "repobility-ai-code-hygiene", "fingerprint": "824c91f1a59ea760ce29ea6bf4a3cd647f6fbdd55ad7ec5fdb217ebed749f4e2", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/cmd/start/job_spawn.rs", "duplicate_line": 307, "correlation_key": "fp|824c91f1a59ea760ce29ea6bf4a3cd647f6fbdd55ad7ec5fdb217ebed749f4e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/start/ownership.rs"}, "region": {"startLine": 119}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5812, "scanner": "repobility-ai-code-hygiene", "fingerprint": "155a72a3fc54650986069863feeeecc75ff1241e9d99f3e9f1ef364b2ac68066", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/cmd/start/job_spawn.rs", "duplicate_line": 304, "correlation_key": "fp|155a72a3fc54650986069863feeeecc75ff1241e9d99f3e9f1ef364b2ac68066"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/start/orphan_reap.rs"}, "region": {"startLine": 290}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5811, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6c96ed095a2b207af190b04358fccaf258398c760d004f34e779f4130bdc9594", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/cmd/start/job_lifecycle.rs", "duplicate_line": 169, "correlation_key": "fp|6c96ed095a2b207af190b04358fccaf258398c760d004f34e779f4130bdc9594"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/start/job_spawn.rs"}, "region": {"startLine": 336}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 5810, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e885321ba0df9303749b8becf146085881a037f185ebfc71f38493a6c63441d9", "category": "quality", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Source filename has a patch-style suffix and a same-directory canonical sibling exists.", "evidence": {"suffix": "v1", "rule_id": "AIC001", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195", "https://knip.dev/"], "canonical_file": "turbo/packages/api-contracts/src/contracts/chat-threads.ts", "correlation_key": "fp|e885321ba0df9303749b8becf146085881a037f185ebfc71f38493a6c63441d9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/api-contracts/src/contracts/chat-threads-v1.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 51277, "scanner": "repobility-docker", "fingerprint": "7f0e989fa26b670a619ce85b704b5ce748f8270b5ec597a082ba69fe92ee06e2", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|7f0e989fa26b670a619ce85b704b5ce748f8270b5ec597a082ba69fe92ee06e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 182}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 51276, "scanner": "repobility-docker", "fingerprint": "cf79fbb278bbd9ec2b02b9be80bd4350058d31ba38da28e0ecc513de22c8be29", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|cf79fbb278bbd9ec2b02b9be80bd4350058d31ba38da28e0ecc513de22c8be29"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 152}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 51275, "scanner": "repobility-docker", "fingerprint": "7c6dd04a088118812f9417c524063fc4946e466fe2123c5ddbf35ffc36e7ca8c", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|7c6dd04a088118812f9417c524063fc4946e466fe2123c5ddbf35ffc36e7ca8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 147}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 51274, "scanner": "repobility-docker", "fingerprint": "8656306bd0df168c489fefe2b3a6af915d737a23780f8266d085a7c9df4750e0", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|8656306bd0df168c489fefe2b3a6af915d737a23780f8266d085a7c9df4750e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 139}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51273, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d070b6967cc5e276d64f7766851565f374dcb8a1386c69ce3aa243e0eeb8cfe4", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/zero-custom-connectors-create.ts", "duplicate_line": 21, "correlation_key": "fp|d070b6967cc5e276d64f7766851565f374dcb8a1386c69ce3aa243e0eeb8cfe4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-custom-connectors-patch.ts"}, "region": {"startLine": 35}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51272, "scanner": "repobility-ai-code-hygiene", "fingerprint": "58330e90dae88bcf7885fb13b8d60a0ab6fdf0d21700ddcf5a8b77d641595d47", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/zero-claude-code-device-auth.ts", "duplicate_line": 14, "correlation_key": "fp|58330e90dae88bcf7885fb13b8d60a0ab6fdf0d21700ddcf5a8b77d641595d47"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-codex-device-auth.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51271, "scanner": "repobility-ai-code-hygiene", "fingerprint": "010494407edd2b6dfa1fdc3825c5c087fc29c4fdc316ef6de5122fc1805c7de7", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/test-slack-state.ts", "duplicate_line": 358, "correlation_key": "fp|010494407edd2b6dfa1fdc3825c5c087fc29c4fdc316ef6de5122fc1805c7de7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/test-telegram-state.ts"}, "region": {"startLine": 100}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51270, "scanner": "repobility-ai-code-hygiene", "fingerprint": "41f6eb4d37b84e47d1f213659e66e7e87c042e1f9593a849c8abf822278aaaa9", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/test-oauth-provider-device-auth.ts", "duplicate_line": 14, "correlation_key": "fp|41f6eb4d37b84e47d1f213659e66e7e87c042e1f9593a849c8abf822278aaaa9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/test-oauth-provider-token.ts"}, "region": {"startLine": 42}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51269, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7c0fe338135b0c2fa0b7327ae67748e3e957d5ec2322dc587da821917653aabc", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-event-consumers-agentphone-typing.ts", "duplicate_line": 65, "correlation_key": "fp|7c0fe338135b0c2fa0b7327ae67748e3e957d5ec2322dc587da821917653aabc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-event-consumers-telegram-typing.ts"}, "region": {"startLine": 44}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51268, "scanner": "repobility-ai-code-hygiene", "fingerprint": "692cefea89c7c9c7cacca2df02fbfb85a84a6d5b7b8220a57ce08f2e06d51848", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-callbacks-slack-org.ts", "duplicate_line": 361, "correlation_key": "fp|692cefea89c7c9c7cacca2df02fbfb85a84a6d5b7b8220a57ce08f2e06d51848"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-telegram.ts"}, "region": {"startLine": 204}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51267, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c5d8770f18ab29206b5929f387fe2e518a5ebf4219e162e88ef8d2df7514dd45", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-callbacks-agentphone.ts", "duplicate_line": 97, "correlation_key": "fp|c5d8770f18ab29206b5929f387fe2e518a5ebf4219e162e88ef8d2df7514dd45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-telegram.ts"}, "region": {"startLine": 180}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51266, "scanner": "repobility-ai-code-hygiene", "fingerprint": "724ef3e0a624c504912f1a98c9288492bff5657e760940191af60a6a02e22a78", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/internal-callbacks-github-issues.ts", "duplicate_line": 237, "correlation_key": "fp|724ef3e0a624c504912f1a98c9288492bff5657e760940191af60a6a02e22a78"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/internal-callbacks-slack-org.ts"}, "region": {"startLine": 270}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51265, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0c895ebdd6bce388da037cbe1bff707c5a8f57a8fe731927de77979615c4ceb5", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/vsock-guest/src/process.rs", "duplicate_line": 133, "correlation_key": "fp|0c895ebdd6bce388da037cbe1bff707c5a8f57a8fe731927de77979615c4ceb5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/vsock-guest/src/shell_command.rs"}, "region": {"startLine": 458}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51264, "scanner": "repobility-ai-code-hygiene", "fingerprint": "028d2e016c254bd13c0b680619f31b26ec0877d315dbedeaa13ba0876d4059aa", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/sandbox-fc/src/snapshot/output.rs", "duplicate_line": 124, "correlation_key": "fp|028d2e016c254bd13c0b680619f31b26ec0877d315dbedeaa13ba0876d4059aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/sandbox-fc/src/snapshot/provider.rs"}, "region": {"startLine": 81}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51263, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5f0e1025216e7c28981fcae0bfb921a8f832db8f0fd2ec39a1dc73a73ea28490", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/provider/mock.rs", "duplicate_line": 235, "correlation_key": "fp|5f0e1025216e7c28981fcae0bfb921a8f832db8f0fd2ec39a1dc73a73ea28490"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/provider/mod.rs"}, "region": {"startLine": 164}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51262, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f2d45d4985bb7b968ab3e490f5a6c9f59e1944579b0e7313278a8a48d026b1ed", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/cmd/start/job_spawn.rs", "duplicate_line": 570, "correlation_key": "fp|f2d45d4985bb7b968ab3e490f5a6c9f59e1944579b0e7313278a8a48d026b1ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/start/ownership.rs"}, "region": {"startLine": 111}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 51261, "scanner": "repobility-ai-code-hygiene", "fingerprint": "859f8ff6765737b0fd11060a1a7912819fa0012087d1ea8d0986ecc71b8c3202", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/cmd/start/job_lifecycle.rs", "duplicate_line": 181, "correlation_key": "fp|859f8ff6765737b0fd11060a1a7912819fa0012087d1ea8d0986ecc71b8c3202"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/start/job_spawn.rs"}, "region": {"startLine": 599}}}]}, {"ruleId": "SEC010", "level": "note", "message": {"text": "[SEC010] Cloud Provider Token: Cloud provider or SaaS API token found in source code."}, "properties": {"repobilityId": 51248, "scanner": "repobility-threat-engine", "fingerprint": "0de9f58c6eeeb5cb2d98ab29758bc34a50a6f6c6aa709bf9a9a0855df58524cc", "category": "credential_exposure", "severity": "low", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Value contains development/placeholder marker", "evidence": {"match": "xoxb-e2e-test-bot-token", "reason": "Value contains development/placeholder marker", "rule_id": "SEC010", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "secret|token|1|xoxb-e2e-test-bot-token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/api-contracts/src/contracts/test-slack-mock.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC022", "level": "note", "message": {"text": "[SEC022] Database URL With Embedded Credential: A database connection URL contains an embedded username and password. These URLs are often copied into defaults, docs, and scripts, then leak working credentials."}, "properties": {"repobilityId": 51204, "scanner": "repobility-threat-engine", "fingerprint": "924c515c16d8e73811205ad20b2054faea5343ee3e12ab4f793bc378a9359fad", "category": "credential_exposure", "severity": "low", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Value contains development/placeholder marker", "evidence": {"match": "postgresql://postgres:postgres@", "reason": "Value contains development/placeholder marker", "rule_id": "SEC022", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "secret|scripts/prepare.sh|9|token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/prepare.sh"}, "region": {"startLine": 100}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `load_registry` has cognitive complexity 9 (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: and=1, except=2, if=4, nested_bonus=2."}, "properties": {"repobilityId": 51186, "scanner": "repobility-threat-engine", "fingerprint": "443dcbcc12bce27b632b39bd3e5ff2739d63c44b05cf9669f1d21e1f7da49469", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 9 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "load_registry", "breakdown": {"if": 4, "and": 1, "except": 2, "nested_bonus": 2}, "complexity": 9, "correlation_key": "fp|443dcbcc12bce27b632b39bd3e5ff2739d63c44b05cf9669f1d21e1f7da49469"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/registry.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `_connection_header_names` has cognitive complexity 9 (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: continue=1, for=2, if=2, nested_bonus=4."}, "properties": {"repobilityId": 51185, "scanner": "repobility-threat-engine", "fingerprint": "df0509ec6cd67cbca79406caf8be85183d9a1938321c1eff5e01693df66d7ded", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 9 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "_connection_header_names", "breakdown": {"if": 2, "for": 2, "continue": 1, "nested_bonus": 4}, "complexity": 9, "correlation_key": "fp|df0509ec6cd67cbca79406caf8be85183d9a1938321c1eff5e01693df66d7ded"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/auth_base_forwarder.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `parse_source` has cognitive complexity 11 (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: continue=1, except=1, for=1, if=5, nested_bonus=3."}, "properties": {"repobilityId": 51184, "scanner": "repobility-threat-engine", "fingerprint": "83c4c8bd18d9e85b04947623670161a736328ede3903b942d0cc4af5ac04ac1f", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 11 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "parse_source", "breakdown": {"if": 5, "for": 1, "except": 1, "continue": 1, "nested_bonus": 3}, "complexity": 11, "correlation_key": "fp|83c4c8bd18d9e85b04947623670161a736328ede3903b942d0cc4af5ac04ac1f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/scripts/update-x-tlds.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22169, "scanner": "repobility", "fingerprint": "4892c606778ddc81700603e44bf3a11c", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "TODO: remove allow(dead_code) when checkpoint resume is implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/types.rs"}, "region": {"startLine": 41}}}]}, {"ruleId": "QUAL005", "level": "note", "message": {"text": "Cluster of TODOs in one file"}, "properties": {"repobilityId": 22168, "scanner": "repobility", "fingerprint": "726440c1a5a48be1d119f601f0034c5f", "category": "quality", "severity": "low", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "TODO: remove allow(dead_code) when secret injection is implement", "aljefra_cwe": null, "aljefra_owasp": null, "aljefra_pattern_slug": "todo-bomb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/types.rs"}, "region": {"startLine": 37}}}]}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 5889, "scanner": "repobility-web-presence", "fingerprint": "bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1", "category": "quality", "severity": "low", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks like a public web app but no humans.txt file or route was discovered.", "evidence": {"rule_id": "WEB011", "scanner": "repobility-web-presence", "references": ["https://github.com/Lissy93/web-check"], "correlation_key": "fp|bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "humans.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB008", "level": "note", "message": {"text": "Public docs site has no llms.txt"}, "properties": {"repobilityId": 5888, "scanner": "repobility-web-presence", "fingerprint": "cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks public and documentation-heavy but no llms.txt file or route was discovered.", "evidence": {"rule_id": "WEB008", "scanner": "repobility-web-presence", "references": ["https://llmstxt.org/"], "correlation_key": "fp|cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "llms.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB002", "level": "note", "message": {"text": "Public web app has no sitemap"}, "properties": {"repobilityId": 5887, "scanner": "repobility-web-presence", "fingerprint": "fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf", "category": "quality", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no sitemap file or route was discovered.", "evidence": {"rule_id": "WEB002", "scanner": "repobility-web-presence", "references": ["https://www.sitemaps.org/protocol.html", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "sitemap.xml"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB001", "level": "note", "message": {"text": "Public web app has no robots.txt"}, "properties": {"repobilityId": 5886, "scanner": "repobility-web-presence", "fingerprint": "cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no robots.txt file or route was discovered.", "evidence": {"rule_id": "WEB001", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "robots.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 5840, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": [".env", "id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5838, "scanner": "repobility-docker", "fingerprint": "d021b54376e945621f40cd7d1169074c21a336a53b6d6681349d3be9241796dc", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|d021b54376e945621f40cd7d1169074c21a336a53b6d6681349d3be9241796dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 181}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5837, "scanner": "repobility-docker", "fingerprint": "b97c23f42e43e1a7b79ce0609e058645564371717e2d2d41120605756592d44e", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|b97c23f42e43e1a7b79ce0609e058645564371717e2d2d41120605756592d44e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 151}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5836, "scanner": "repobility-docker", "fingerprint": "40b29eda6cc33df9c0d8e12438dce5995b57074ec57b58f58d3bea3063f09803", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|40b29eda6cc33df9c0d8e12438dce5995b57074ec57b58f58d3bea3063f09803"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 146}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5835, "scanner": "repobility-docker", "fingerprint": "05093c9e059368e14b8fa4c3337fe23b819059e7ddf048b1a7fd772af6d70320", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|05093c9e059368e14b8fa4c3337fe23b819059e7ddf048b1a7fd772af6d70320"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 138}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5834, "scanner": "repobility-docker", "fingerprint": "058d248bd21e0bd6f17f26d342b7316e5f1b3a3324ecb3a62add36c734eb5b4c", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|058d248bd21e0bd6f17f26d342b7316e5f1b3a3324ecb3a62add36c734eb5b4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 126}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5830, "scanner": "repobility-docker", "fingerprint": "1df8837b7a8efe7279afc093f401202b16e732a8a42973a99105a55d64195ec0", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|1df8837b7a8efe7279afc093f401202b16e732a8a42973a99105a55d64195ec0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 19}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 5828, "scanner": "repobility-docker", "fingerprint": "715cfc7884aa34dff967a4be4bbe85001d8e027da9f1e613acbc13d42dbe8cce", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|715cfc7884aa34dff967a4be4bbe85001d8e027da9f1e613acbc13d42dbe8cce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 8}}}]}, {"ruleId": "SEC002", "level": "note", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 5823, "scanner": "repobility-threat-engine", "fingerprint": "e722c327840ab179d579b5c3bc5b02f75bdfc82717d07575759f3094436e125d", "category": "credential_exposure", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Could not extract value for entropy analysis Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "AKIAEXAMPLEDONOTLEAK", "reason": "Could not extract value for entropy analysis", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "secret|token|177|akiaexampledonotleak", "duplicate_count": 1, "duplicate_rule_ids": ["SEC002", "SEC010"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["67f8fd9f431df4c4b263fcb91b804247ed7bd1cfedc9a441867acc4d52f0f710", "e722c327840ab179d579b5c3bc5b02f75bdfc82717d07575759f3094436e125d"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/r2_cache.rs"}, "region": {"startLine": 1778}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5822, "scanner": "repobility-ai-code-hygiene", "fingerprint": "61c3321a229313aab4bb72392a8cf1d2f93a785b4fceadac3f88043b8e4745a7", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/agent-composes-metadata.ts", "duplicate_line": 24, "correlation_key": "fp|61c3321a229313aab4bb72392a8cf1d2f93a785b4fceadac3f88043b8e4745a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-composes.ts"}, "region": {"startLine": 90}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5821, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5fd768e1044a8c1b77c85a5f3e07aadddca4c6f5f4a9c5b8eb2372fa07b6054a", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/zero-chat-threads-pin.ts", "duplicate_line": 21, "correlation_key": "fp|5fd768e1044a8c1b77c85a5f3e07aadddca4c6f5f4a9c5b8eb2372fa07b6054a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-chat-threads-unpin.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5820, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a8622261bf2654cd5eecc35f3e1e60490981cb2d94ff76d3324a069e4ae9d326", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/signals/routes/zero-chat-threads-pin.ts", "duplicate_line": 21, "correlation_key": "fp|a8622261bf2654cd5eecc35f3e1e60490981cb2d94ff76d3324a069e4ae9d326"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-chat-threads-rename.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5815, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2e940e6d432cb39651bd7f41353f8dc138726fe394b906baaac0962873b533a1", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "turbo/apps/api/src/lib/slack-connect-blocks.ts", "duplicate_line": 113, "correlation_key": "fp|2e940e6d432cb39651bd7f41353f8dc138726fe394b906baaac0962873b533a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/lib/slack-webhook-blocks.ts"}, "region": {"startLine": 137}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5814, "scanner": "repobility-ai-code-hygiene", "fingerprint": "448717279f438d72aa4113d2ec5d0d7bea7cde4ab178759bf08eb256932f162c", "category": "quality", "severity": "low", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "A normalized source-code window appears in two different non-test files.", "evidence": {"lines": 12, "rule_id": "AIC003", "scanner": "repobility-ai-code-hygiene", "references": ["https://jscpd.dev/"], "duplicate_file": "crates/runner/src/dns.rs", "duplicate_line": 38, "correlation_key": "fp|448717279f438d72aa4113d2ec5d0d7bea7cde4ab178759bf08eb256932f162c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/kmsg_log.rs"}, "region": {"startLine": 32}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 5809, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8a95eb86247b57e9293c49963f9667dc8574974c613bec39a8ae31f4fd91e777", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "v1", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|8a95eb86247b57e9293c49963f9667dc8574974c613bec39a8ae31f4fd91e777"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/api-contracts/src/contracts/audio-transcriptions-v1.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 5808, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d0f3f1f1e6fc601e471411d43990122bdb3ed4453333ad362d58636b2211dc0d", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "draft", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|d0f3f1f1e6fc601e471411d43990122bdb3ed4453333ad362d58636b2211dc0d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/signals/zero-page/chat-draft.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 5807, "scanner": "repobility-ai-code-hygiene", "fingerprint": "499eea5bd6b8caf5cf1b6363c262da8a71f23d41a1c0341fd76956b8507a8605", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "v1", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|499eea5bd6b8caf5cf1b6363c262da8a71f23d41a1c0341fd76956b8507a8605"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/chat-threads-v1.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 5806, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6c1681e9d949bb8a2a0f5f1a4e79000e8f2e4084aa1c8017b91c09d6dc349768", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "v1", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|6c1681e9d949bb8a2a0f5f1a4e79000e8f2e4084aa1c8017b91c09d6dc349768"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/audio-transcriptions-v1.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC002", "level": "none", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 51259, "scanner": "repobility-threat-engine", "fingerprint": "068be5762015b8dbc8f9494da2be90b1d3bb3924de5a0bfe8cc7f24dc90cff6b", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Form field or UI element reference", "evidence": {"match": "API_KEY =\n  \"<redacted>\"", "reason": "Form field or UI element reference", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|1|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/cronlytic.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 51257, "scanner": "repobility-threat-engine", "fingerprint": "588cbe6635e9107e3f4226ff395bb9d3b8dbc57f8977957784281db9e5f71589", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|588cbe6635e9107e3f4226ff395bb9d3b8dbc57f8977957784281db9e5f71589"}}}, {"ruleId": "MINED099", "level": "none", "message": {"text": "[MINED099] Hardcoded Secret (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 51253, "scanner": "repobility-threat-engine", "fingerprint": "090aaf0b9512c2f21d2a371526263f22493ad5e17b2c300c1de13b9c34bc6c1e", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "hardcoded-secret", "owasp": "A07:2021", "cwe_ids": ["CWE-798"], "languages": [], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 8, "observations_count": 88419, "ai_coder_pattern_id": 9}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|090aaf0b9512c2f21d2a371526263f22493ad5e17b2c300c1de13b9c34bc6c1e", "aggregated_count": 1}}}, {"ruleId": "MINED099", "level": "none", "message": {"text": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded directly in source. AI assistants frequently leak demo credentials."}, "properties": {"repobilityId": 51252, "scanner": "repobility-threat-engine", "fingerprint": "248cc23c66f8f02c447b362a20bce1578caf9a56e49b2b1fe45143aad2383bec", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'placeholder' detected on same line", "evidence": {"mined": true, "mining": {"slug": "hardcoded-secret", "owasp": "A07:2021", "cwe_ids": ["CWE-798"], "languages": [], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 8, "observations_count": 88419, "ai_coder_pattern_id": 9}, "scanner": "repobility-threat-engine", "correlation_key": "fp|248cc23c66f8f02c447b362a20bce1578caf9a56e49b2b1fe45143aad2383bec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/deepseek.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED099", "level": "none", "message": {"text": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded directly in source. AI assistants frequently leak demo credentials."}, "properties": {"repobilityId": 51251, "scanner": "repobility-threat-engine", "fingerprint": "b37012a8807da9539f3e90affd510daf95ba0bccea7b487404345afe8d2b66e3", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'placeholder' detected on same line", "evidence": {"mined": true, "mining": {"slug": "hardcoded-secret", "owasp": "A07:2021", "cwe_ids": ["CWE-798"], "languages": [], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 8, "observations_count": 88419, "ai_coder_pattern_id": 9}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b37012a8807da9539f3e90affd510daf95ba0bccea7b487404345afe8d2b66e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/bland.ts"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED099", "level": "none", "message": {"text": "[MINED099] Hardcoded Secret: API key, AWS access key, GitHub token, Slack token, OpenAI key, or private key embedded directly in source. AI assistants frequently leak demo credentials."}, "properties": {"repobilityId": 51250, "scanner": "repobility-threat-engine", "fingerprint": "09b3320e3e663aeba771d9fd72af4c9433fc8f8c1a3f54c497165a0dbf234329", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'test\\b' detected on same line", "evidence": {"mined": true, "mining": {"slug": "hardcoded-secret", "owasp": "A07:2021", "cwe_ids": ["CWE-798"], "languages": [], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 8, "observations_count": 88419, "ai_coder_pattern_id": 9}, "scanner": "repobility-threat-engine", "correlation_key": "fp|09b3320e3e663aeba771d9fd72af4c9433fc8f8c1a3f54c497165a0dbf234329"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/api-contracts/src/contracts/test-slack-mock.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC010", "level": "none", "message": {"text": "[SEC010] Cloud Provider Token (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 51249, "scanner": "repobility-threat-engine", "fingerprint": "9cdc30a4309201cb8f0e09d46c82ad66ac132385c06f765fe900e35ad3e67223", "category": "credential_exposure", "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": "SEC010", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|9cdc30a4309201cb8f0e09d46c82ad66ac132385c06f765fe900e35ad3e67223"}}}, {"ruleId": "MINED055", "level": "none", "message": {"text": "[MINED055] Npm Install No Lockfile: Production image runs npm install (resolves new versions on every build) instead of npm ci."}, "properties": {"repobilityId": 51246, "scanner": "repobility-threat-engine", "fingerprint": "81e51ee94ab5ab00d55a8229d892159c323ae076df84b598369fe4f8beaad146", "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": "npm-install-no-lockfile", "owasp": "A06:2021", "cwe_ids": ["CWE-1357"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348030+00:00", "triaged_in_corpus": 12, "observations_count": 317602, "ai_coder_pattern_id": 42}, "scanner": "repobility-threat-engine", "correlation_key": "fp|81e51ee94ab5ab00d55a8229d892159c323ae076df84b598369fe4f8beaad146"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/public/install.sh"}, "region": {"startLine": 31}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 51241, "scanner": "repobility-threat-engine", "fingerprint": "a74f750047b6221bcee2d6f93486979f4e04f31cf607a5f98f4136e137af5b63", "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": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|a74f750047b6221bcee2d6f93486979f4e04f31cf607a5f98f4136e137af5b63", "aggregated_count": 2}}}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 51240, "scanner": "repobility-threat-engine", "fingerprint": "8ff9d69aa3680dfa5a60681f6960cda7c118cbc8d86f7963d5273348b31e036c", "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": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8ff9d69aa3680dfa5a60681f6960cda7c118cbc8d86f7963d5273348b31e036c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/[locale]/docs/page.tsx"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 51239, "scanner": "repobility-threat-engine", "fingerprint": "2e51be09eaa4b85f7156686247b348495bf91a2ca268fb1c08ff10bbcef27b1c", "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": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2e51be09eaa4b85f7156686247b348495bf91a2ca268fb1c08ff10bbcef27b1c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/[locale]/docs/[...slug]/page.tsx"}, "region": {"startLine": 169}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 51238, "scanner": "repobility-threat-engine", "fingerprint": "43d88de5e2f45c12ec01b3884f2f08ae3fcd41e5e4c80632f5a6454c75d9fcde", "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": "react-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|43d88de5e2f45c12ec01b3884f2f08ae3fcd41e5e4c80632f5a6454c75d9fcde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/[locale]/blog/page.tsx"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 51237, "scanner": "repobility-threat-engine", "fingerprint": "66b815a91ea39018bb012f7f098be13f4d3be5f2af2aa685eb7874ee84854d27", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|66b815a91ea39018bb012f7f098be13f4d3be5f2af2aa685eb7874ee84854d27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/components/Particles.tsx"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 51236, "scanner": "repobility-threat-engine", "fingerprint": "912a52f46209863762aaddcd8af45bec14abebb602e8fb76c04df8e57161c394", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|912a52f46209863762aaddcd8af45bec14abebb602e8fb76c04df8e57161c394"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/views/zero-page/components/log-views/log-table.tsx"}, "region": {"startLine": 165}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 51235, "scanner": "repobility-threat-engine", "fingerprint": "deb5907e1149f9a0d2653d6f64e22edfe81dea096fa53b31371e8c47eb248ff1", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|deb5907e1149f9a0d2653d6f64e22edfe81dea096fa53b31371e8c47eb248ff1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/views/queue-page/queue-drawer.tsx"}, "region": {"startLine": 134}}}]}, {"ruleId": "SEC041", "level": "none", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\" (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 51234, "scanner": "repobility-threat-engine", "fingerprint": "445e143bfb9fa42d815d6c9ae398165a70589a79a844fb4f61e3e95a91105bbd", "category": "security", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|445e143bfb9fa42d815d6c9ae398165a70589a79a844fb4f61e3e95a91105bbd"}}}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 51226, "scanner": "repobility-threat-engine", "fingerprint": "ca934588c6d63595734e6ff8869b2ec0417aefcb029d8326d9b08376f4b38177", "category": "quality", "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": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|ca934588c6d63595734e6ff8869b2ec0417aefcb029d8326d9b08376f4b38177", "aggregated_count": 6}}}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 51225, "scanner": "repobility-threat-engine", "fingerprint": "d3a1b8135e5a8db5d5c52446aa837aa3428958231d10d2d7bd737c1faba5e713", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d3a1b8135e5a8db5d5c52446aa837aa3428958231d10d2d7bd737c1faba5e713"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/org/secret/remove.ts"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 51224, "scanner": "repobility-threat-engine", "fingerprint": "5edaa135d445d0ba093fcb4ecdcb34651907fae3e566f4e5f9edef5e19872dac", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5edaa135d445d0ba093fcb4ecdcb34651907fae3e566f4e5f9edef5e19872dac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/org/secret/list.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 51223, "scanner": "repobility-threat-engine", "fingerprint": "b706616d9b1a184b39d7fbc487894fe2dd2bbee4a57d073d3f077c460036aece", "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": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b706616d9b1a184b39d7fbc487894fe2dd2bbee4a57d073d3f077c460036aece"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/init/index.ts"}, "region": {"startLine": 123}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 237 more): Same pattern found in 237 additional files. Review if needed."}, "properties": {"repobilityId": 51220, "scanner": "repobility-threat-engine", "fingerprint": "791d7b404c41f263d276882b2a46b405d1ba8600738dd1fcb3ffbacbcd50866e", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 237 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 237 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|791d7b404c41f263d276882b2a46b405d1ba8600738dd1fcb3ffbacbcd50866e"}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 356 more): Same pattern found in 356 additional files. Review if needed."}, "properties": {"repobilityId": 51216, "scanner": "repobility-threat-engine", "fingerprint": "76cc039458caab870c9a7263ab6a4382b784a757f85301e38f4c14375a4de242", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 356 additional occurrences found. The top occurrences remain visible as actionable findings.", "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", "aggregated": true, "correlation_key": "fp|76cc039458caab870c9a7263ab6a4382b784a757f85301e38f4c14375a4de242", "aggregated_count": 356}}}, {"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": 51215, "scanner": "repobility-threat-engine", "fingerprint": "028132f9db167907c627d1b446c011172c4b5ac98251cfb4a855e18564fdf5b4", "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|028132f9db167907c627d1b446c011172c4b5ac98251cfb4a855e18564fdf5b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/artifact/list.ts"}, "region": {"startLine": 17}}}]}, {"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": 51214, "scanner": "repobility-threat-engine", "fingerprint": "d494665450f72b1661dc37d0fdb0b8ccd6bd444bf389d2a7fe9a22fa19756c48", "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|d494665450f72b1661dc37d0fdb0b8ccd6bd444bf389d2a7fe9a22fa19756c48"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/artifact/init.ts"}, "region": {"startLine": 28}}}]}, {"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": 51213, "scanner": "repobility-threat-engine", "fingerprint": "3147dc91106f1934527b4a95b1c5381cc7b9f08d45384e6a169d111f323b0fd9", "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|3147dc91106f1934527b4a95b1c5381cc7b9f08d45384e6a169d111f323b0fd9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/artifact/clone.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 51211, "scanner": "repobility-threat-engine", "fingerprint": "22f086d0fdc97d81b8738c7e9d19e5d21469b0073a89ebfc090d5326c2797492", "category": "crypto", "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": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|22f086d0fdc97d81b8738c7e9d19e5d21469b0073a89ebfc090d5326c2797492"}}}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it predictable. Used as a session token or password-reset key, it's enumerable."}, "properties": {"repobilityId": 51210, "scanner": "repobility-threat-engine", "fingerprint": "184a40250e390fd8a1e985c076eb13f3252f1bb40997f1abfb053ca8cdafef23", "category": "crypto", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'randomUUID' detected on same line", "evidence": {"match": "crypto.randomUUID", "reason": "Safe pattern 'randomUUID' detected on same line", "rule_id": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|crypto|token|26|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-telegram-upload-init.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it predictable. Used as a session token or password-reset key, it's enumerable."}, "properties": {"repobilityId": 51209, "scanner": "repobility-threat-engine", "fingerprint": "ca2e6785c812e9cfb6f1b74c9ce84aedd39986ebfd0bf2f6a0c0ce9f9be15bdb", "category": "crypto", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'randomUUID' detected on same line Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "crypto.randomUUID", "reason": "Safe pattern 'randomUUID' detected on same line", "rule_id": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|crypto|token|29|sec118", "duplicate_count": 1, "duplicate_rule_ids": ["SEC118"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["ca2e6785c812e9cfb6f1b74c9ce84aedd39986ebfd0bf2f6a0c0ce9f9be15bdb", "dae3b3e2881f1a98f2e2d06518e63de36416822941a7776a8daf843a4a41766c"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/zero-integrations-github-upload-init.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 35 more): Same pattern found in 35 additional files. Review if needed."}, "properties": {"repobilityId": 51208, "scanner": "repobility-threat-engine", "fingerprint": "fea29ca161af7db26f50dff62bb7a99019b11dc335c2c70e4939b87dce039c9d", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 35 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|fea29ca161af7db26f50dff62bb7a99019b11dc335c2c70e4939b87dce039c9d", "aggregated_count": 35}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 51207, "scanner": "repobility-threat-engine", "fingerprint": "cf52950846357bfad97734e50e1b5ce0d367256911b336d0eaea0c98fd754f81", "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|cf52950846357bfad97734e50e1b5ce0d367256911b336d0eaea0c98fd754f81"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/routes/integrations-telegram-bot-id.ts"}, "region": {"startLine": 226}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 51206, "scanner": "repobility-threat-engine", "fingerprint": "b6d1db8c7e3beaf9cb47dcf02e338603f65ab845f0086decaa18c4d2fe1a3019", "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|b6d1db8c7e3beaf9cb47dcf02e338603f65ab845f0086decaa18c4d2fe1a3019"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/context/route.ts"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 51205, "scanner": "repobility-threat-engine", "fingerprint": "b739b14d7d657f69c3a966c3ed94b13333acfaae49336acf0de0aac5560eba9e", "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|b739b14d7d657f69c3a966c3ed94b13333acfaae49336acf0de0aac5560eba9e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/app-factory.ts"}, "region": {"startLine": 161}}}]}, {"ruleId": "SEC085", "level": "none", "message": {"text": "[SEC085] JS: child_process.exec with non-literal (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 51202, "scanner": "repobility-threat-engine", "fingerprint": "5523e60b1dc8a944defadff18fd27285ca7823b9184972b5126e133bf66244aa", "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": "SEC085", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|5523e60b1dc8a944defadff18fd27285ca7823b9184972b5126e133bf66244aa"}}}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 51198, "scanner": "repobility-threat-engine", "fingerprint": "4888a7f2d95e1334850750ba0611e2c2a23c368ce50109969c246a2c925d3677", "category": "injection", "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": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|4888a7f2d95e1334850750ba0611e2c2a23c368ce50109969c246a2c925d3677"}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 51194, "scanner": "repobility-threat-engine", "fingerprint": "5ccdf1e17673246f3b2c35e62e87603b9a87f14303f9fa042a7dee41c7711477", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5ccdf1e17673246f3b2c35e62e87603b9a87f14303f9fa042a7dee41c7711477"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/usage/webhook.py"}, "region": {"startLine": 64}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 51193, "scanner": "repobility-threat-engine", "fingerprint": "8fe939aaf317147c51df7440337fd3a7718839191d25deeffbe7c4d4ce3eb781", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8fe939aaf317147c51df7440337fd3a7718839191d25deeffbe7c4d4ce3eb781"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/usage/sse.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 51192, "scanner": "repobility-threat-engine", "fingerprint": "0f7997332396df25c00875fb76b021d2aef69dd75de44021e82c05eec3c7d5fd", "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": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0f7997332396df25c00875fb76b021d2aef69dd75de44021e82c05eec3c7d5fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/url_utils.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 21 more): Same pattern found in 21 additional files. Review if needed."}, "properties": {"repobilityId": 51191, "scanner": "repobility-threat-engine", "fingerprint": "d31fc8e49456305948237eeca46829fd8515dba47530c380704c9cf5b48ea520", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 21 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 21 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d31fc8e49456305948237eeca46829fd8515dba47530c380704c9cf5b48ea520"}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 51187, "scanner": "repobility-threat-engine", "fingerprint": "29306b5028b90ab8087937c717cb745fd7e07ab4ccb4b2237f19cccb49788ca3", "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": {"scanner": "repobility-threat-engine", "function": "parse_source", "breakdown": {"if": 5, "for": 1, "except": 1, "continue": 1, "nested_bonus": 3}, "aggregated": true, "complexity": 11, "correlation_key": "fp|29306b5028b90ab8087937c717cb745fd7e07ab4ccb4b2237f19cccb49788ca3", "aggregated_count": 9}}}, {"ruleId": "MINED068", "level": "none", "message": {"text": "[MINED068] Rust Unsafe Block (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 51183, "scanner": "repobility-threat-engine", "fingerprint": "855c74d20959b2ee13192b8b37a70038838060b9c9d64d0bb626119ecf77a63e", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "rust-unsafe-block", "owasp": null, "cwe_ids": ["CWE-119"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348060+00:00", "triaged_in_corpus": 12, "observations_count": 42383, "ai_coder_pattern_id": 116}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|855c74d20959b2ee13192b8b37a70038838060b9c9d64d0bb626119ecf77a63e", "aggregated_count": 7}}}, {"ruleId": "MINED068", "level": "none", "message": {"text": "[MINED068] Rust Unsafe Block: unsafe { ... } block. Compiler safety guarantees disabled inside."}, "properties": {"repobilityId": 51182, "scanner": "repobility-threat-engine", "fingerprint": "254a83322482a24f9202a67fdc035abf555ba4796afc254d3a703dd5c9b83b49", "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-unsafe-block", "owasp": null, "cwe_ids": ["CWE-119"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348060+00:00", "triaged_in_corpus": 12, "observations_count": 42383, "ai_coder_pattern_id": 116}, "scanner": "repobility-threat-engine", "correlation_key": "fp|254a83322482a24f9202a67fdc035abf555ba4796afc254d3a703dd5c9b83b49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-init/src/init.rs"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED068", "level": "none", "message": {"text": "[MINED068] Rust Unsafe Block: unsafe { ... } block. Compiler safety guarantees disabled inside."}, "properties": {"repobilityId": 51181, "scanner": "repobility-threat-engine", "fingerprint": "a43524a73d4451443ab6fa35b4666daf8a3ed698406382f56c345670ede038d0", "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-unsafe-block", "owasp": null, "cwe_ids": ["CWE-119"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348060+00:00", "triaged_in_corpus": 12, "observations_count": 42383, "ai_coder_pattern_id": 116}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a43524a73d4451443ab6fa35b4666daf8a3ed698406382f56c345670ede038d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-agent/src/nofollow_fs.rs"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED068", "level": "none", "message": {"text": "[MINED068] Rust Unsafe Block: unsafe { ... } block. Compiler safety guarantees disabled inside."}, "properties": {"repobilityId": 51180, "scanner": "repobility-threat-engine", "fingerprint": "b3f42ae838de58838667ed02700e9e93e0e6971097500d015d1277ab06511ed8", "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-unsafe-block", "owasp": null, "cwe_ids": ["CWE-119"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348060+00:00", "triaged_in_corpus": 12, "observations_count": 42383, "ai_coder_pattern_id": 116}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b3f42ae838de58838667ed02700e9e93e0e6971097500d015d1277ab06511ed8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-agent/src/metrics.rs"}, "region": {"startLine": 118}}}]}, {"ruleId": "MINED066", "level": "none", "message": {"text": "[MINED066] Rust Panic Macro (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 51179, "scanner": "repobility-threat-engine", "fingerprint": "a8bbd00f775770ae4100168ccfcac4034761920fead06a1c6690141f0ac00837", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "rust-panic-macro", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348055+00:00", "triaged_in_corpus": 12, "observations_count": 48611, "ai_coder_pattern_id": 113}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|a8bbd00f775770ae4100168ccfcac4034761920fead06a1c6690141f0ac00837", "aggregated_count": 4}}}, {"ruleId": "MINED066", "level": "none", "message": {"text": "[MINED066] Rust Panic Macro: panic!() unwinds the stack. Use Result for recoverable errors."}, "properties": {"repobilityId": 51178, "scanner": "repobility-threat-engine", "fingerprint": "e588a77973eb218f55ba7c7a3aac2ff78e77377fd16f64360913f28bfdfa9f20", "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-panic-macro", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348055+00:00", "triaged_in_corpus": 12, "observations_count": 48611, "ai_coder_pattern_id": 113}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e588a77973eb218f55ba7c7a3aac2ff78e77377fd16f64360913f28bfdfa9f20"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/cmd/nbd.rs"}, "region": {"startLine": 110}}}]}, {"ruleId": "MINED066", "level": "none", "message": {"text": "[MINED066] Rust Panic Macro: panic!() unwinds the stack. Use Result for recoverable errors."}, "properties": {"repobilityId": 51177, "scanner": "repobility-threat-engine", "fingerprint": "2e5280de4ca5d077b8728d55f1583f1273589f16eae4dde1f2ea427a3aa74641", "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-panic-macro", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348055+00:00", "triaged_in_corpus": 12, "observations_count": 48611, "ai_coder_pattern_id": 113}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2e5280de4ca5d077b8728d55f1583f1273589f16eae4dde1f2ea427a3aa74641"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/build.rs"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED066", "level": "none", "message": {"text": "[MINED066] Rust Panic Macro: panic!() unwinds the stack. Use Result for recoverable errors."}, "properties": {"repobilityId": 51176, "scanner": "repobility-threat-engine", "fingerprint": "f3d73514bc0e5aa1940efe292f26d50a0ea106b4230e4021921ffeeb0fe6e4d4", "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-panic-macro", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348055+00:00", "triaged_in_corpus": 12, "observations_count": 48611, "ai_coder_pattern_id": 113}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f3d73514bc0e5aa1940efe292f26d50a0ea106b4230e4021921ffeeb0fe6e4d4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-agent/src/control.rs"}, "region": {"startLine": 196}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 51175, "scanner": "repobility-threat-engine", "fingerprint": "add6bb21b589400b1571e1cc84ccb8afac26e8c017bd57394b0efd3f9cbb707f", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 7 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|add6bb21b589400b1571e1cc84ccb8afac26e8c017bd57394b0efd3f9cbb707f", "aggregated_count": 7}}}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 51174, "scanner": "repobility-threat-engine", "fingerprint": "698067318d75b79f2b686c3c5b19b728a5369f8785ba08b0b6d9844c5eacf6e9", "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|698067318d75b79f2b686c3c5b19b728a5369f8785ba08b0b6d9844c5eacf6e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/prefetch.rs"}, "region": {"startLine": 238}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 51173, "scanner": "repobility-threat-engine", "fingerprint": "76d77d1a7eacf0b57527cf6ba11846053010dc94707b2461b0dd2851618e09e9", "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|76d77d1a7eacf0b57527cf6ba11846053010dc94707b2461b0dd2851618e09e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/build.rs"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED059", "level": "none", "message": {"text": "[MINED059] Rust Expect In Prod: .expect(...) panics same as unwrap with a custom message."}, "properties": {"repobilityId": 51172, "scanner": "repobility-threat-engine", "fingerprint": "22137abb6c03175cbe0f59612ad4934313bc977febcce86b06b31a2f259fe6bf", "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|22137abb6c03175cbe0f59612ad4934313bc977febcce86b06b31a2f259fe6bf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-agent/src/control.rs"}, "region": {"startLine": 152}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 51171, "scanner": "repobility-threat-engine", "fingerprint": "0ba4c8b2bacae4a73a2cfce279bfd08d1586c871f14327560c0d3928a18202d9", "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|0ba4c8b2bacae4a73a2cfce279bfd08d1586c871f14327560c0d3928a18202d9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/connectors/src/auth-providers/oauth/providers/slock.ts"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 51170, "scanner": "repobility-threat-engine", "fingerprint": "e95f6e9daf69dc19d1ed219f946ffc851eaa5e87262801b5efdccfd23fc502d5", "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|e95f6e9daf69dc19d1ed219f946ffc851eaa5e87262801b5efdccfd23fc502d5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/endpoint.rs"}, "region": {"startLine": 186}}}]}, {"ruleId": "MINED003", "level": "none", "message": {"text": "[MINED003] Rust Unwrap In Prod (and 43 more): Same pattern found in 43 additional files. Review if needed."}, "properties": {"repobilityId": 51169, "scanner": "repobility-threat-engine", "fingerprint": "0d545925b22652f4ba16c58cad0b5a77d5e13bb2e188e2f4239ac634f4d5ecbd", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 43 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "rust-unwrap-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347903+00:00", "triaged_in_corpus": 15, "observations_count": 386515, "ai_coder_pattern_id": 111}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|0d545925b22652f4ba16c58cad0b5a77d5e13bb2e188e2f4239ac634f4d5ecbd", "aggregated_count": 43}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 164 more): Same pattern found in 164 additional files. Review if needed."}, "properties": {"repobilityId": 51164, "scanner": "repobility-threat-engine", "fingerprint": "f4cb3990621d15f0458d0e41a6cedbc80d7559338eb19e3111758e10bd44c362", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 164 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 164 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|f4cb3990621d15f0458d0e41a6cedbc80d7559338eb19e3111758e10bd44c362"}}}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 5826, "scanner": "repobility-threat-engine", "fingerprint": "0c619f06fe21080e07008a937c9563d7f7e18fcd1ca2969706c7bacd7405cd1d", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|130|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/onboarding.service.ts"}, "region": {"startLine": 130}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51420, "scanner": "repobility-supply-chain", "fingerprint": "860f697d6bd1f8c31ec544e58d97cb1c7bd1e6e9082c0a663478dfbdaf4d2ac8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|860f697d6bd1f8c31ec544e58d97cb1c7bd1e6e9082c0a663478dfbdaf4d2ac8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/turbo.yml"}, "region": {"startLine": 393}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51419, "scanner": "repobility-supply-chain", "fingerprint": "d21172037063a4f10c44eb077669c63cc1e1b068617fd32ef1258c02b33ae740", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d21172037063a4f10c44eb077669c63cc1e1b068617fd32ef1258c02b33ae740"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/turbo.yml"}, "region": {"startLine": 380}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51418, "scanner": "repobility-supply-chain", "fingerprint": "c715ceeb79ad3f2d4adcfe4d24c1f908519bcd4f2d363e7ddd109f3ffb378f3e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c715ceeb79ad3f2d4adcfe4d24c1f908519bcd4f2d363e7ddd109f3ffb378f3e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/turbo.yml"}, "region": {"startLine": 356}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51417, "scanner": "repobility-supply-chain", "fingerprint": "88b2da801c681e521a1d632f20cf401b14ebf57a0bd6fd0265ac2d445eb6c888", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|88b2da801c681e521a1d632f20cf401b14ebf57a0bd6fd0265ac2d445eb6c888"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/turbo.yml"}, "region": {"startLine": 108}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `semgrep/semgrep` unpinned: `container/services image: semgrep/semgrep` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51416, "scanner": "repobility-supply-chain", "fingerprint": "81d08390181c97efc0be42fedbcf9563d9a88f77b6b86a0f6c98b30a59fb7193", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|81d08390181c97efc0be42fedbcf9563d9a88f77b6b86a0f6c98b30a59fb7193"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/security.yml"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51415, "scanner": "repobility-supply-chain", "fingerprint": "7bb3eaadb1f57a2e0da674a75c4a60ff23eb73d370f4e753843055cd279ace83", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|7bb3eaadb1f57a2e0da674a75c4a60ff23eb73d370f4e753843055cd279ace83"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/runner-image.yml"}, "region": {"startLine": 202}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51414, "scanner": "repobility-supply-chain", "fingerprint": "b2f7aca7b929681cd6326553e9f527cea19d3e80d7305f752c3ed219e4bf0297", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b2f7aca7b929681cd6326553e9f527cea19d3e80d7305f752c3ed219e4bf0297"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cleanup-stale.yml"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51413, "scanner": "repobility-supply-chain", "fingerprint": "ac3fa529b3dfddc2b011e159aab5afd8e6dba5b328d9bd01a25111afddb65791", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ac3fa529b3dfddc2b011e159aab5afd8e6dba5b328d9bd01a25111afddb65791"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/rollback-runner.yml"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51412, "scanner": "repobility-supply-chain", "fingerprint": "5085555f032bcbee13cc7537410884fa3187f7a9c8aefab314d0ab90da7d44dc", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5085555f032bcbee13cc7537410884fa3187f7a9c8aefab314d0ab90da7d44dc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cleanup.yml"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51411, "scanner": "repobility-supply-chain", "fingerprint": "4f0b0f52d8bcbe57b5356a5e1305698f2e63646c345b3194f708ed8b39020ac2", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4f0b0f52d8bcbe57b5356a5e1305698f2e63646c345b3194f708ed8b39020ac2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 2074}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51410, "scanner": "repobility-supply-chain", "fingerprint": "030a601f8c7ee2003a02c79e1e4426116441fe01dcfde84a86a8380969402617", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|030a601f8c7ee2003a02c79e1e4426116441fe01dcfde84a86a8380969402617"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 2050}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51409, "scanner": "repobility-supply-chain", "fingerprint": "55b7d14d6cbee13cd2eab7490aceab2a9e5c5e7423b6f690351eb3649e519132", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|55b7d14d6cbee13cd2eab7490aceab2a9e5c5e7423b6f690351eb3649e519132"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 1883}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51408, "scanner": "repobility-supply-chain", "fingerprint": "266a84b4901de08a844ee3ea6c54f446acac8ceafee64c470ccb7be7f5a0a322", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|266a84b4901de08a844ee3ea6c54f446acac8ceafee64c470ccb7be7f5a0a322"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 1647}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51407, "scanner": "repobility-supply-chain", "fingerprint": "12365530cc0a487dfdc02240bc89dad893d232a76cc6d9505e0606d14d60f3a1", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|12365530cc0a487dfdc02240bc89dad893d232a76cc6d9505e0606d14d60f3a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 1110}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51406, "scanner": "repobility-supply-chain", "fingerprint": "ccfb7dd911f3d5b887bbfeaf91f0c56ab965f674940d100b90e11f2f3557c60e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ccfb7dd911f3d5b887bbfeaf91f0c56ab965f674940d100b90e11f2f3557c60e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 994}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51405, "scanner": "repobility-supply-chain", "fingerprint": "b6a56b4ee5527bc7895780681d6812c3f946508a35fa1bb635b93cae2d0eab86", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b6a56b4ee5527bc7895780681d6812c3f946508a35fa1bb635b93cae2d0eab86"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 876}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51404, "scanner": "repobility-supply-chain", "fingerprint": "1b7702a29f48cad024bb00c766dd39298cefc19810de83c7f40b5af8be2aff46", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1b7702a29f48cad024bb00c766dd39298cefc19810de83c7f40b5af8be2aff46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 749}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51403, "scanner": "repobility-supply-chain", "fingerprint": "9bbceb34d5e59ced838a0683198ff2ae3a9584d339406dfcb8286ab40dc1d62d", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|9bbceb34d5e59ced838a0683198ff2ae3a9584d339406dfcb8286ab40dc1d62d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 603}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51402, "scanner": "repobility-supply-chain", "fingerprint": "82a7bd44c48a1c4f7d18b565bf0c562de8baaac64109a407d7bffe20f7c8dae4", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|82a7bd44c48a1c4f7d18b565bf0c562de8baaac64109a407d7bffe20f7c8dae4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 414}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51401, "scanner": "repobility-supply-chain", "fingerprint": "3f72a5f34fefbf62d16cfcadbca6d1fed4bb7cd1df803b8b060ed9d2e1e9352c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3f72a5f34fefbf62d16cfcadbca6d1fed4bb7cd1df803b8b060ed9d2e1e9352c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 283}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51400, "scanner": "repobility-supply-chain", "fingerprint": "94bf214167217c2219080030c2a5648cb3889de8bd6052ff128daf809a8b214f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|94bf214167217c2219080030c2a5648cb3889de8bd6052ff128daf809a8b214f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3.0.3` 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": {"repobilityId": 51399, "scanner": "repobility-supply-chain", "fingerprint": "b37a8afdd228636d0d312afb4ec1e8feef31cda9902ac4596dba6f94f5cb143d", "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|b37a8afdd228636d0d312afb4ec1e8feef31cda9902ac4596dba6f94f5cb143d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 263}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3.0.3` 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": {"repobilityId": 51398, "scanner": "repobility-supply-chain", "fingerprint": "2fb979e85dfbdb857c81e8dbccdea3a4a135b496e1cd71dca767e1cf328a7e8e", "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|2fb979e85dfbdb857c81e8dbccdea3a4a135b496e1cd71dca767e1cf328a7e8e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 240}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3.0.3` 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": {"repobilityId": 51397, "scanner": "repobility-supply-chain", "fingerprint": "258fe695d50b427560944e7b9daeaeadfe777b16cdfd65095f48dae9702693fc", "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|258fe695d50b427560944e7b9daeaeadfe777b16cdfd65095f48dae9702693fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 215}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `slackapi/slack-github-action` pinned to mutable ref `@v3.0.3`: `uses: slackapi/slack-github-action@v3.0.3` 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": {"repobilityId": 51396, "scanner": "repobility-supply-chain", "fingerprint": "aa15a389e21c7f4dfaa234760fa995a5487c52cf31047089f4fc25d5263944b8", "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|aa15a389e21c7f4dfaa234760fa995a5487c52cf31047089f4fc25d5263944b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51395, "scanner": "repobility-supply-chain", "fingerprint": "28ca0b054cd8cb753a93b8a4f273593f2fcc03952df0bd507555b263d59f2d99", "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|28ca0b054cd8cb753a93b8a4f273593f2fcc03952df0bd507555b263d59f2d99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 90}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `vm0-ai/release-please-action` pinned to mutable ref `@vm0`: `uses: vm0-ai/release-please-action@vm0` 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": {"repobilityId": 51394, "scanner": "repobility-supply-chain", "fingerprint": "41956d622e4746fcf095ecadc94eb8a2c0a47b243a06845d1417c68dd94dcdad", "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|41956d622e4746fcf095ecadc94eb8a2c0a47b243a06845d1417c68dd94dcdad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release-please.yml"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51393, "scanner": "repobility-supply-chain", "fingerprint": "2c5feabd45895a720856b5a33c51b0e21d3289c7b2a46561c848972d17ea398f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|2c5feabd45895a720856b5a33c51b0e21d3289c7b2a46561c848972d17ea398f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 364}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51392, "scanner": "repobility-supply-chain", "fingerprint": "06f880914fc40768c36818e12b6985bc31ad99f9c0b0c788a5b9d305938efde6", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|06f880914fc40768c36818e12b6985bc31ad99f9c0b0c788a5b9d305938efde6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 303}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51391, "scanner": "repobility-supply-chain", "fingerprint": "86987e50c562f071e8bca98ca37c31a3218f9c461486fe96a30ca3964b538451", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|86987e50c562f071e8bca98ca37c31a3218f9c461486fe96a30ca3964b538451"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 247}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` unpinned: `container/services image: ghcr.io/vm0-ai/vm0-toolchain-rust:20260525` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 51390, "scanner": "repobility-supply-chain", "fingerprint": "692285a35be47b68db78581fb035e293cbb2ef5ffe59fb5be6f27e8f164370c8", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|692285a35be47b68db78581fb035e293cbb2ef5ffe59fb5be6f27e8f164370c8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51364, "scanner": "repobility-supply-chain", "fingerprint": "c0e1bd5cb113df43815bdcb7b985e7f53826d5f0d08798e1209e2d4d564c2bf4", "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|c0e1bd5cb113df43815bdcb7b985e7f53826d5f0d08798e1209e2d4d564c2bf4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 1444}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51363, "scanner": "repobility-supply-chain", "fingerprint": "d4ec24e3908c51111a8c15d689c7a038469e527d9e63ece04920c639db714849", "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|d4ec24e3908c51111a8c15d689c7a038469e527d9e63ece04920c639db714849"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 1304}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51362, "scanner": "repobility-supply-chain", "fingerprint": "b563fd047bc834d8c58bbe275dcb141d7adc7623dd1b30da615a445ba5bd82b9", "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|b563fd047bc834d8c58bbe275dcb141d7adc7623dd1b30da615a445ba5bd82b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 1070}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51361, "scanner": "repobility-supply-chain", "fingerprint": "856cfc89740b1b03a0cb2cf63f2020cd7262d27117d25d1f7bcd524f83ef0606", "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|856cfc89740b1b03a0cb2cf63f2020cd7262d27117d25d1f7bcd524f83ef0606"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 879}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51360, "scanner": "repobility-supply-chain", "fingerprint": "19826660dc5b7be434306b90b9460e52014ef9e9401ac87f4991e21fa5480866", "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|19826660dc5b7be434306b90b9460e52014ef9e9401ac87f4991e21fa5480866"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 767}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51359, "scanner": "repobility-supply-chain", "fingerprint": "16f54205c83909be07436b0f53932e8688742734de55de4aef57bd9cbf20d1e7", "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|16f54205c83909be07436b0f53932e8688742734de55de4aef57bd9cbf20d1e7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 505}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51358, "scanner": "repobility-supply-chain", "fingerprint": "2865c1d26a338e7e41e9e22de676c032671c1ec172da867eca2c26eb6e245a9c", "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|2865c1d26a338e7e41e9e22de676c032671c1ec172da867eca2c26eb6e245a9c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 449}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51357, "scanner": "repobility-supply-chain", "fingerprint": "54c0be647ae6cf337908efc3493d0f8b7313a6406eef1002a51dd0ff892045ad", "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|54c0be647ae6cf337908efc3493d0f8b7313a6406eef1002a51dd0ff892045ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 429}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `Swatinem/rust-cache` pinned to mutable ref `@v2`: `uses: Swatinem/rust-cache@v2` 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": {"repobilityId": 51356, "scanner": "repobility-supply-chain", "fingerprint": "17291957654a78b4d79dad9cceed6c7ba51a5287da8081682096554f8e56dfd8", "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|17291957654a78b4d79dad9cceed6c7ba51a5287da8081682096554f8e56dfd8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 376}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51355, "scanner": "repobility-supply-chain", "fingerprint": "1ae23e8a5d82001818a92f72643aabcb4fafbe473d78f39b72ac987065c1ac64", "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|1ae23e8a5d82001818a92f72643aabcb4fafbe473d78f39b72ac987065c1ac64"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 375}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v6`: `uses: actions/setup-node@v6` 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": {"repobilityId": 51354, "scanner": "repobility-supply-chain", "fingerprint": "9cca339b71048de5b0b8d63deee3ab63557510363beed1261d3ce3faed2f44d8", "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|9cca339b71048de5b0b8d63deee3ab63557510363beed1261d3ce3faed2f44d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 339}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v6`: `uses: pnpm/action-setup@v6` 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": {"repobilityId": 51353, "scanner": "repobility-supply-chain", "fingerprint": "42bb6ecad0b1b2eba4e7fce5edca13c363385603bedcc433b409e7921f62982e", "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|42bb6ecad0b1b2eba4e7fce5edca13c363385603bedcc433b409e7921f62982e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 336}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v6`: `uses: actions/setup-python@v6` 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": {"repobilityId": 51352, "scanner": "repobility-supply-chain", "fingerprint": "efef22de2d96816931f0c66069fd83b13334226f43fedf6136a313d1ad6177cf", "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|efef22de2d96816931f0c66069fd83b13334226f43fedf6136a313d1ad6177cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 326}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51351, "scanner": "repobility-supply-chain", "fingerprint": "6cf76f4ff56be4298ade5d48db389d23b94668045ae1ef926c11d38e6ea879d5", "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|6cf76f4ff56be4298ade5d48db389d23b94668045ae1ef926c11d38e6ea879d5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 325}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51350, "scanner": "repobility-supply-chain", "fingerprint": "1cc001ddcc9ca5f977f479516ed4d92df66e4f38bc8bf7693c462ff5ec8e1df0", "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|1cc001ddcc9ca5f977f479516ed4d92df66e4f38bc8bf7693c462ff5ec8e1df0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 309}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `codecov/codecov-action` pinned to mutable ref `@v6`: `uses: codecov/codecov-action@v6` 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": {"repobilityId": 51349, "scanner": "repobility-supply-chain", "fingerprint": "eba3653e7927d09ac6726545bcbe46abc6262dcc6bc8091b794a29989768c6ef", "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|eba3653e7927d09ac6726545bcbe46abc6262dcc6bc8091b794a29989768c6ef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 284}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `Swatinem/rust-cache` pinned to mutable ref `@v2`: `uses: Swatinem/rust-cache@v2` 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": {"repobilityId": 51348, "scanner": "repobility-supply-chain", "fingerprint": "deda2ba7a1a421b43e471000886b794b53887dc80b229bcc46495b3edeacd30b", "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|deda2ba7a1a421b43e471000886b794b53887dc80b229bcc46495b3edeacd30b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 252}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51347, "scanner": "repobility-supply-chain", "fingerprint": "3c8f22731a752127fa994180514f834171f37a71b90e8f93b174669a18334cba", "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|3c8f22731a752127fa994180514f834171f37a71b90e8f93b174669a18334cba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 251}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` 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": {"repobilityId": 51346, "scanner": "repobility-supply-chain", "fingerprint": "5b39d1847c89379374a9d43a9f6e2ae6d6c5e7c4269815000fc7f705fc5f51f5", "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|5b39d1847c89379374a9d43a9f6e2ae6d6c5e7c4269815000fc7f705fc5f51f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` 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": {"repobilityId": 51345, "scanner": "repobility-supply-chain", "fingerprint": "24700243bac506f046645f49101cc7dc8ecb6df86ea41bb0caed52e4aeb75e99", "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|24700243bac506f046645f49101cc7dc8ecb6df86ea41bb0caed52e4aeb75e99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_write_failure_does_not_raise: Test function `test_write_failure_does_not_raise` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51344, "scanner": "repobility-ast-engine", "fingerprint": "054605b623b96d02b0bfc7e851a0dd19bfa6d9364328eb834ab99000e38302b2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|054605b623b96d02b0bfc7e851a0dd19bfa6d9364328eb834ab99000e38302b2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_counters.py"}, "region": {"startLine": 301}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_set_buffered_usage_events: Test function `test_set_buffered_usage_events` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51343, "scanner": "repobility-ast-engine", "fingerprint": "b6b2235acce469ee9ece28db96151cb17f43861328574170b95fec6d38428833", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b6b2235acce469ee9ece28db96151cb17f43861328574170b95fec6d38428833"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_counters.py"}, "region": {"startLine": 96}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_response_pipeline_x_soft_error_ignores_request_hints: Test function `test_full_response_pipeline_x_soft_error_ignores_request_hints` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51342, "scanner": "repobility-ast-engine", "fingerprint": "95485396bbc6ea1b2911a8c550089d3c7667b0e6c998667b0710034537e35cb2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|95485396bbc6ea1b2911a8c550089d3c7667b0e6c998667b0710034537e35cb2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_connector_usage.py"}, "region": {"startLine": 496}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_no_response_is_noop: Test function `test_no_response_is_noop` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51341, "scanner": "repobility-ast-engine", "fingerprint": "4f2cb2448e6e7949d6d77524d31d5d2279335732dc5b03fc4880efb900aa3f1d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4f2cb2448e6e7949d6d77524d31d5d2279335732dc5b03fc4880efb900aa3f1d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_response_headers_handler.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parse_source_rejects_source_without_tld_entries: Test function `test_parse_source_rejects_source_without_tld_entries` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51340, "scanner": "repobility-ast-engine", "fingerprint": "0a267463fa065890b12af95716f34e620bdfa24ce8759f48bfe292262f3427b2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0a267463fa065890b12af95716f34e620bdfa24ce8759f48bfe292262f3427b2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_update_x_tlds.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parse_source_rejects_invalid_tld_syntax: Test function `test_parse_source_rejects_invalid_tld_syntax` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51339, "scanner": "repobility-ast-engine", "fingerprint": "5ef10ac377b121047d56ba16a205cea5656f820ca280945a831c0973cfc3295a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5ef10ac377b121047d56ba16a205cea5656f820ca280945a831c0973cfc3295a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_update_x_tlds.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parse_source_rejects_non_ascii_tld: Test function `test_parse_source_rejects_non_ascii_tld` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51338, "scanner": "repobility-ast-engine", "fingerprint": "6c9c3441e766893b1e005c8b9f60c8e381a18cdba0ef3318c9217af2aeeaffbf", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6c9c3441e766893b1e005c8b9f60c8e381a18cdba0ef3318c9217af2aeeaffbf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_update_x_tlds.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parse_source_rejects_missing_version_header: Test function `test_parse_source_rejects_missing_version_header` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51337, "scanner": "repobility-ast-engine", "fingerprint": "207bf9e930b144b45e7343582b49279eaafb0c314b492c066b0b3a8d34406b70", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|207bf9e930b144b45e7343582b49279eaafb0c314b492c066b0b3a8d34406b70"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_update_x_tlds.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parse_source_rejects_empty_source: Test function `test_parse_source_rejects_empty_source` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51336, "scanner": "repobility-ast-engine", "fingerprint": "12fd451983bcda1743507b7ae6a032b3417b9a0c845763ddb0ef66c601ae24fc", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|12fd451983bcda1743507b7ae6a032b3417b9a0c845763ddb0ef66c601ae24fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_update_x_tlds.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_eventless_incomplete_anthropic_usage_sse_warns: Test function `test_full_pipeline_eventless_incomplete_anthropic_usage_sse_warns` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51335, "scanner": "repobility-ast-engine", "fingerprint": "29614d1edd72c21293c6937b950d1405cd622d77729372edf282853e2fe1fb6a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|29614d1edd72c21293c6937b950d1405cd622d77729372edf282853e2fe1fb6a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 380}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_openai_sse_logs_truncated_late_event_name: Test function `test_full_pipeline_openai_sse_logs_truncated_late_event_name` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51334, "scanner": "repobility-ast-engine", "fingerprint": "45b5c3651c65eb106e18f4e7440231e62421d18e67a91695c9f4fd4cbfadf8d7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|45b5c3651c65eb106e18f4e7440231e62421d18e67a91695c9f4fd4cbfadf8d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 354}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_openai_sse_logs_truncated_terminal_event: Test function `test_full_pipeline_openai_sse_logs_truncated_terminal_event` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51333, "scanner": "repobility-ast-engine", "fingerprint": "9d3542dcdf04c434a8f077dc16d9902ffa8c916d4a8e43391afcccf4dda4357c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9d3542dcdf04c434a8f077dc16d9902ffa8c916d4a8e43391afcccf4dda4357c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 328}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_anthropic_sse_logs_malformed_message_start: Test function `test_full_pipeline_anthropic_sse_logs_malformed_message_start` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51332, "scanner": "repobility-ast-engine", "fingerprint": "c245fa6f89a1876f9a730f7faaf5effdbab5bb59424e742736a82c9d70d7f042", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c245fa6f89a1876f9a730f7faaf5effdbab5bb59424e742736a82c9d70d7f042"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 261}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_anthropic_sse_error_logs_truncated_message_start: Test function `test_full_pipeline_anthropic_sse_error_logs_truncated_message_start` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51331, "scanner": "repobility-ast-engine", "fingerprint": "7c0d2815687ea4656d0292c6bdacae0461b2e98b44082b582e722dd82ab2e251", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7c0d2815687ea4656d0292c6bdacae0461b2e98b44082b582e722dd82ab2e251"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 229}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_full_pipeline_anthropic_sse_logs_truncated_message_start: Test function `test_full_pipeline_anthropic_sse_logs_truncated_message_start` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51330, "scanner": "repobility-ast-engine", "fingerprint": "a7b22f09f474b6dff9e199774a9d7fbbb66e69bc93ddfa48835f50b5d58fd9a3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a7b22f09f474b6dff9e199774a9d7fbbb66e69bc93ddfa48835f50b5d58fd9a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_model_provider_stream_usage.py"}, "region": {"startLine": 198}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_later_allowed_permission_still_wins_after_earlier_denied_match` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51329, "scanner": "repobility-ast-engine", "fingerprint": "669588e7c1cc1d2a724c1fe826b98f901f58bc7607f11f62650f1b06cdbf4913", "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|669588e7c1cc1d2a724c1fe826b98f901f58bc7607f11f62650f1b06cdbf4913"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 541}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_allowed_parameter_rule_does_not_bypass_more_specific_literal_deny` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51328, "scanner": "repobility-ast-engine", "fingerprint": "67830184cba34b7ed7dd33b0bc60154e1bdf07d3252f97120fdc1a6fd7824db6", "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|67830184cba34b7ed7dd33b0bc60154e1bdf07d3252f97120fdc1a6fd7824db6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 502}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_more_specific_parameter_shape_wins` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51327, "scanner": "repobility-ast-engine", "fingerprint": "722ad24f1b649c26ebcf26463351a2384b3e75e0c82dc797793cd4817f6deef0", "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|722ad24f1b649c26ebcf26463351a2384b3e75e0c82dc797793cd4817f6deef0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 478}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_denied_parameter_rule_does_not_block_more_specific_literal_allow` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51326, "scanner": "repobility-ast-engine", "fingerprint": "89ac20a1054f6353340f43443556bfeae32eaf1ce35484c1352d35bc6b670891", "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|89ac20a1054f6353340f43443556bfeae32eaf1ce35484c1352d35bc6b670891"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 429}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_literal_rule_wins_over_earlier_parameter_rule` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51325, "scanner": "repobility-ast-engine", "fingerprint": "5ba27e8535435422c4d80dac472b93ec400460ad917992ee43951493b2394a63", "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|5ba27e8535435422c4d80dac472b93ec400460ad917992ee43951493b2394a63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 405}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_preserves_raw_rule_order_for_any_before_exact_method` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51324, "scanner": "repobility-ast-engine", "fingerprint": "a0666b7708f61f00b2cbe7c6c40fc8b91b4e46f68edcc2af519554cc2cb58f9d", "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|a0666b7708f61f00b2cbe7c6c40fc8b91b4e46f68edcc2af519554cc2cb58f9d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 382}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_later_allowed_firewall_wins_after_earlier_malformed_policy_match` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51323, "scanner": "repobility-ast-engine", "fingerprint": "873c631fe55628e9e17c673c6fbbc959c36aca906937fba4691f5faa0508bd28", "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|873c631fe55628e9e17c673c6fbbc959c36aca906937fba4691f5faa0508bd28"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 353}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_later_allowed_firewall_wins_after_earlier_malformed_policy_match` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51322, "scanner": "repobility-ast-engine", "fingerprint": "f3f9baa0c0469a330214d892ea2ab6b369a928114cf94deb63b77ef6a9d0d738", "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|f3f9baa0c0469a330214d892ea2ab6b369a928114cf94deb63b77ef6a9d0d738"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_later_allowed_firewall_wins_after_earlier_unknown_match` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51321, "scanner": "repobility-ast-engine", "fingerprint": "0cd3eff8ac8e4797efb78785a617ab7cdd33b44b25920e0994d6c9a9ee63d26d", "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|0cd3eff8ac8e4797efb78785a617ab7cdd33b44b25920e0994d6c9a9ee63d26d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 307}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_later_allowed_firewall_wins_after_earlier_unknown_match` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51320, "scanner": "repobility-ast-engine", "fingerprint": "c5fe79ca4b11996f7c55cf18c23b20e1d5e1690fa186d1ec8189725debd382c8", "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|c5fe79ca4b11996f7c55cf18c23b20e1d5e1690fa186d1ec8189725debd382c8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 311}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_ask_permission_block` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51319, "scanner": "repobility-ast-engine", "fingerprint": "c64a9265e25e5bf1d0db0d5f8c7946cd8158e2ef1b7cfb6b688bb762eb50c96e", "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|c64a9265e25e5bf1d0db0d5f8c7946cd8158e2ef1b7cfb6b688bb762eb50c96e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 263}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_ask_permission_block` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51318, "scanner": "repobility-ast-engine", "fingerprint": "2c999f4b3fbb8c2e764bb5e8848c006d153b572fdfee16ecc6fa936ffe33a812", "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|2c999f4b3fbb8c2e764bb5e8848c006d153b572fdfee16ecc6fa936ffe33a812"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 267}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_unknown_policy_when_api_has_no_permissions` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51317, "scanner": "repobility-ast-engine", "fingerprint": "79829fa7b391d9c8b0bb7caa2235424a1c45ec2c41e8cfefab231b18a01856a4", "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|79829fa7b391d9c8b0bb7caa2235424a1c45ec2c41e8cfefab231b18a01856a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 232}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_unknown_policy_when_api_has_no_permissions` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51316, "scanner": "repobility-ast-engine", "fingerprint": "ad5ea7fcc016b144fb7501edd82fefe358912ee896129e8a6f9962a4a8e348b5", "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|ad5ea7fcc016b144fb7501edd82fefe358912ee896129e8a6f9962a4a8e348b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 220}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_unknown_policy_when_api_has_no_permissions` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51315, "scanner": "repobility-ast-engine", "fingerprint": "b76df63dd968e3e4d30a2eca7f09dd7654801095e8c2a884dc4dc27ad9f625bb", "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|b76df63dd968e3e4d30a2eca7f09dd7654801095e8c2a884dc4dc27ad9f625bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_parameterized_host_nonstandard_port_rejection` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51314, "scanner": "repobility-ast-engine", "fingerprint": "7c0eb4e3f6562f2176a33b31cf90be75a99ba586da7f03b045638bdf79cf0113", "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|7c0eb4e3f6562f2176a33b31cf90be75a99ba586da7f03b045638bdf79cf0113"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 191}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_parameterized_host_nonstandard_port_rejection` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51313, "scanner": "repobility-ast-engine", "fingerprint": "a3758b395ce58a0e733adcfafcd4492c0fc24fdf5e5422a648afb203744024e3", "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|a3758b395ce58a0e733adcfafcd4492c0fc24fdf5e5422a648afb203744024e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 195}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_static_base_boundary_and_query` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51312, "scanner": "repobility-ast-engine", "fingerprint": "dba33287ef806f3dcb8a6eaf410e4b469f0c0e6d9061bbc7ca1946a637ffff22", "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|dba33287ef806f3dcb8a6eaf410e4b469f0c0e6d9061bbc7ca1946a637ffff22"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_static_base_boundary_and_query` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51311, "scanner": "repobility-ast-engine", "fingerprint": "e6cf99f1aad737f439d8066a4b40001e023691c882f4163c528a2d606d83b0d6", "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|e6cf99f1aad737f439d8066a4b40001e023691c882f4163c528a2d606d83b0d6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 156}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_static_base_boundary_and_query` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51310, "scanner": "repobility-ast-engine", "fingerprint": "a41b55e23af1eed74fec43efcffcfc16849c4a9e1483abe45367955e5a7a46cc", "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|a41b55e23af1eed74fec43efcffcfc16849c4a9e1483abe45367955e5a7a46cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_greedy_host_base_params` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51309, "scanner": "repobility-ast-engine", "fingerprint": "beeb44ea7538b06aac6687e368e8e51079bbfdd7c60d392bd3354d64fb302aa4", "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|beeb44ea7538b06aac6687e368e8e51079bbfdd7c60d392bd3354d64fb302aa4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_greedy_host_base_params` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51308, "scanner": "repobility-ast-engine", "fingerprint": "7a88fa64ed4cca7ae158b68f0d18e0a6beca380580f0256615597090ce60a82d", "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|7a88fa64ed4cca7ae158b68f0d18e0a6beca380580f0256615597090ce60a82d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_greedy_host_base_params` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51307, "scanner": "repobility-ast-engine", "fingerprint": "dc35a69dc8084aba7b87b4146dbf5dea1e5c27cf79ac2dd627b0e45435fcf8ae", "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|dc35a69dc8084aba7b87b4146dbf5dea1e5c27cf79ac2dd627b0e45435fcf8ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._compiled` used but never assigned in __init__: Method `test_matches_raw_for_mixed_base_and_greedy_rule` of class `TestCompiledFirewallMatching` reads `self._compiled`, 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": {"repobilityId": 51306, "scanner": "repobility-ast-engine", "fingerprint": "9d10644eb5e353da5e578a452daed88d0463a3bf367bda4e2db6f5bee8749d14", "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|9d10644eb5e353da5e578a452daed88d0463a3bf367bda4e2db6f5bee8749d14"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._assert_same_result` used but never assigned in __init__: Method `test_matches_raw_for_mixed_base_and_greedy_rule` of class `TestCompiledFirewallMatching` reads `self._assert_same_result`, 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": {"repobilityId": 51305, "scanner": "repobility-ast-engine", "fingerprint": "ae7f37dca9984de93c0802b5bb0936fea50ffb2903a8c8930e9f7b1d896c4a3b", "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|ae7f37dca9984de93c0802b5bb0936fea50ffb2903a8c8930e9f7b1d896c4a3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_compiled_firewall_matching.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_wildcard_pattern_without_exactly_one_wildcard: Test function `test_rejects_wildcard_pattern_without_exactly_one_wildcard` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51304, "scanner": "repobility-ast-engine", "fingerprint": "4845f59c7800c310602c907dee230c8c634cb99d4ad4e3e3f44a97f74ba9e04a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4845f59c7800c310602c907dee230c8c634cb99d4ad4e3e3f44a97f74ba9e04a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 731}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_non_string_path_segments: Test function `test_rejects_non_string_path_segments` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51303, "scanner": "repobility-ast-engine", "fingerprint": "188811f331e4028fb90d2eaec9b911deb722795f1162e6a1d458ce929aa0bef6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|188811f331e4028fb90d2eaec9b911deb722795f1162e6a1d458ce929aa0bef6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 169}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_non_tuple_observation_paths: Test function `test_rejects_non_tuple_observation_paths` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51302, "scanner": "repobility-ast-engine", "fingerprint": "d6d5d38d26aff468b447d82715e4574e5abaddc4bc8ae98e94819fc7871d81c5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d6d5d38d26aff468b447d82715e4574e5abaddc4bc8ae98e94819fc7871d81c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 155}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_wildcards_in_exact_observation_paths: Test function `test_rejects_wildcards_in_exact_observation_paths` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51301, "scanner": "repobility-ast-engine", "fingerprint": "7938f653fe950f9d6eed0d22f0231bb91bd1371859793aab8cbab2a45571de90", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7938f653fe950f9d6eed0d22f0231bb91bd1371859793aab8cbab2a45571de90"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_non_integer_extractor_bounds: Test function `test_rejects_non_integer_extractor_bounds` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51300, "scanner": "repobility-ast-engine", "fingerprint": "f3b0f708271f7cca96c69b75e4c024d15c6ffe6b2d6fd7d60b419860b5ee1837", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f3b0f708271f7cca96c69b75e4c024d15c6ffe6b2d6fd7d60b419860b5ee1837"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_invalid_extractor_bounds: Test function `test_rejects_invalid_extractor_bounds` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51299, "scanner": "repobility-ast-engine", "fingerprint": "de381b6aac1f3689db77d3c710a00e98735ad7a9a39ec41ed4fbc279a525fd33", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|de381b6aac1f3689db77d3c710a00e98735ad7a9a39ec41ed4fbc279a525fd33"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_invalid_scalar_field_config_value: Test function `test_rejects_invalid_scalar_field_config_value` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51298, "scanner": "repobility-ast-engine", "fingerprint": "a236de50b46d293096f7f85409ac130994aa65aaa1240c3b3e5fb001d86d8fba", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a236de50b46d293096f7f85409ac130994aa65aaa1240c3b3e5fb001d86d8fba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_bool_scalar_field_max_bytes: Test function `test_rejects_bool_scalar_field_max_bytes` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51297, "scanner": "repobility-ast-engine", "fingerprint": "545b73b0f666c2aab0f5dde853894052d8d72172f3835736c435568ed479a752", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|545b73b0f666c2aab0f5dde853894052d8d72172f3835736c435568ed479a752"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_invalid_scalar_field_max_bytes: Test function `test_rejects_invalid_scalar_field_max_bytes` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51296, "scanner": "repobility-ast-engine", "fingerprint": "fd062d584f2f55d8a22b32cd6f80cca37e5b8fad0a01bd31c95e79770fe4c0d0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fd062d584f2f55d8a22b32cd6f80cca37e5b8fad0a01bd31c95e79770fe4c0d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_rejects_invalid_scalar_field_kind: Test function `test_rejects_invalid_scalar_field_kind` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 51295, "scanner": "repobility-ast-engine", "fingerprint": "9f45b7d3b91fb1cd891196575902262e6f54514317df02f8bdedac3aa5681c09", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9f45b7d3b91fb1cd891196575902262e6f54514317df02f8bdedac3aa5681c09"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_json_selective.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 51294, "scanner": "repobility-journey-contract", "fingerprint": "946abc9525441b4c18258f5c44ed35d9f50260a0fe95a0d2c36aa5d127e35d74", "category": "auth", "severity": "high", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Frontend consent wording was found, but backend consent/audit metadata was not visible.", "evidence": {"rule_id": "JRN004", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "correlation_key": "code|auth|token|224|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 4}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/zero-runs-create.service.ts"}, "region": {"startLine": 224}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /f/:userId/:id/:filename."}, "properties": {"repobilityId": 51278, "scanner": "repobility-access-control", "fingerprint": "07a5fd2d6bbdb34ec7f7a4efa421212c9cb0bffc745569e4dd59248a70877039", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/f/:userId/:id/:filename", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|turbo/apps/web/app/f/ userid / id / filename /route.ts|45|auc003", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/f/[userId]/[id]/[filename]/route.ts"}, "region": {"startLine": 45}}}]}, {"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": 51256, "scanner": "repobility-threat-engine", "fingerprint": "53ae30ec49d6f153dc81c52d3bf93b4cd86cc28be9570c818e45e572eef1b214", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(\n      (domain) => `    {\n      base: \"https://${domain}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|53ae30ec49d6f153dc81c52d3bf93b4cd86cc28be9570c818e45e572eef1b214"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/docusign.ts"}, "region": {"startLine": 44}}}]}, {"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": 51255, "scanner": "repobility-threat-engine", "fingerprint": "e821661cd6dd68b760b3c543c37d1d76b83168780da469b98ad9311f1bd53eee", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(\n    (region) => `    {\n      base: \"https://production-${region}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e821661cd6dd68b760b3c543c37d1d76b83168780da469b98ad9311f1bd53eee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/browserless.ts"}, "region": {"startLine": 21}}}]}, {"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": 51254, "scanner": "repobility-threat-engine", "fingerprint": "05f885866a8d1afcf4555fb822184136eca6a4fc2af02c376259edfa77acf5df", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((u) => `//   - ${u}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|05f885866a8d1afcf4555fb822184136eca6a4fc2af02c376259edfa77acf5df"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/atlassian.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 51245, "scanner": "repobility-threat-engine", "fingerprint": "cbf065f07531529f320365800ec5529a16ee9116781aa9d4ea7e1a2ef2043dce", "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|cbf065f07531529f320365800ec5529a16ee9116781aa9d4ea7e1a2ef2043dce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/proxy.cors.ts"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 51244, "scanner": "repobility-threat-engine", "fingerprint": "80036e9417873523d089edc6ef902ed4d5d58156431dbcc24fca272cf99f7b5d", "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|80036e9417873523d089edc6ef902ed4d5d58156431dbcc24fca272cf99f7b5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/f/[userId]/[id]/[filename]/route.ts"}, "region": {"startLine": 38}}}]}, {"ruleId": "SEC027", "level": "error", "message": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "properties": {"repobilityId": 51230, "scanner": "repobility-threat-engine", "fingerprint": "5240f0b700d3f3ec14b5b5c588bd75dfd83b59200b844eaaa07c6ae68adc824e", "category": "xxe", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new DOMParser()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC027", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5240f0b700d3f3ec14b5b5c588bd75dfd83b59200b844eaaa07c6ae68adc824e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/signals/zero-page/clipboard.ts"}, "region": {"startLine": 191}}}]}, {"ruleId": "SEC114", "level": "error", "message": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker-supplied segments does NOT prevent escape from the base directory. `../../../etc/passwd` resolves cleanly."}, "properties": {"repobilityId": 51228, "scanner": "repobility-threat-engine", "fingerprint": "6eb97dfd10410b58f2b475f19c6cbfde0c5bb5affa51582e1102b8535796093d", "category": "path_traversal", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "path.join(rendererRoot, decodeURIComponent(request", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC114", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|29|sec114"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/desktop/src/desktop-renderer-url.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 51227, "scanner": "repobility-threat-engine", "fingerprint": "6e3aa7ba3afd0853eb73b0dadaca10847d8efa2b057e8dbbea937672ce7fd365", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(`${", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6e3aa7ba3afd0853eb73b0dadaca10847d8efa2b057e8dbbea937672ce7fd365"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/connector/connected-as.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "SEC080", "level": "error", "message": {"text": "[SEC080] Python: tarfile.extractall without filter: tarfile.extract*() without filter='data' allows path-traversal (CVE-2007-4559, fixed via PEP 706 in 3.12). Ported from bandit B202 (Apache-2.0)."}, "properties": {"repobilityId": 51222, "scanner": "repobility-threat-engine", "fingerprint": "0b95ee238755d93b46ed73cfe128e9351740597073e57c295b6e61db52aeeeb5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "tar.extract({\n        file: tarPath,\n        cwd: cwd,\n        gzip: true,\n      })", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC080", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0b95ee238755d93b46ed73cfe128e9351740597073e57c295b6e61db52aeeeb5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/volume/pull.ts"}, "region": {"startLine": 97}}}]}, {"ruleId": "SEC080", "level": "error", "message": {"text": "[SEC080] Python: tarfile.extractall without filter: tarfile.extract*() without filter='data' allows path-traversal (CVE-2007-4559, fixed via PEP 706 in 3.12). Ported from bandit B202 (Apache-2.0)."}, "properties": {"repobilityId": 51221, "scanner": "repobility-threat-engine", "fingerprint": "46bcfac0518662b0828e42d2727b5ece19cb729cf874749a0f8836d8dd537295", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "tar.extract({\n        file: tarPath,\n        cwd: cwd,\n        gzip: true,\n      })", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC080", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|46bcfac0518662b0828e42d2727b5ece19cb729cf874749a0f8836d8dd537295"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/artifact/pull.ts"}, "region": {"startLine": 104}}}]}, {"ruleId": "SEC020", "level": "error", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 51219, "scanner": "repobility-threat-engine", "fingerprint": "5599a9a016c38d6f471c62e90b69f8f1d5d03fa61d34d88f72c6ea1ea0bb10ce", "category": "credential_exposure", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Console output includes a credential-bearing template expression.", "evidence": {"match": "console.log(chalk.green(`\u2713 Secret \"${secret.name}\" saved`)", "reason": "Console output includes a credential-bearing template expression.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.92, "correlation_key": "secret|token|6|console.log chalk.green secret secret.name saved"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/secret/set.ts"}, "region": {"startLine": 62}}}]}, {"ruleId": "SEC020", "level": "error", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 51218, "scanner": "repobility-threat-engine", "fingerprint": "af8a44ec1c81426bde5c2516a8261d3c05493834b404c911536a98265f47e150", "category": "credential_exposure", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Console output includes a credential-bearing template expression.", "evidence": {"match": "console.log(`${\"Secrets:\".padEnd(16)", "reason": "Console output includes a credential-bearing template expression.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.92, "correlation_key": "secret|token|7|console.log secrets: .padend 16"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/schedule/status.ts"}, "region": {"startLine": 72}}}]}, {"ruleId": "SEC020", "level": "error", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 51217, "scanner": "repobility-threat-engine", "fingerprint": "9c9ef5f254280cf0507e52d59350c97144c92d653ed60ab5bc4bb4b9be42cce6", "category": "credential_exposure", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Console output includes a credential-bearing template expression.", "evidence": {"match": "console.log(chalk.green(`\u2713 Org secret \"${secret.name}\" saved`)", "reason": "Console output includes a credential-bearing template expression.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.92, "correlation_key": "secret|token|6|console.log chalk.green org secret secret.name saved"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/org/secret/set.ts"}, "region": {"startLine": 65}}}]}, {"ruleId": "SEC113", "level": "error", "message": {"text": "[SEC113] SSH host-key verification disabled (MITM): Accepting any SSH host key on first connect lets an active MITM impersonate the server. Common in `paramiko.AutoAddPolicy()`."}, "properties": {"repobilityId": 51203, "scanner": "repobility-threat-engine", "fingerprint": "f4dc8048969ea642e44c0d9c4714fb22283cb73d496db48f1e4d41980cde616d", "category": "crypto", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "StrictHostKeyChecking=no", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC113", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|scripts/cf-ssh.sh|116|sec113"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/cf-ssh.sh"}, "region": {"startLine": 116}}}]}, {"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": 51201, "scanner": "repobility-threat-engine", "fingerprint": "00f2ddd4564920217543f6f5398e77f6ca55e23fe1e424ff58613a08ca09c53d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(ts", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|00f2ddd4564920217543f6f5398e77f6ca55e23fe1e424ff58613a08ca09c53d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/signals/usage-page/usage-insight-signals.ts"}, "region": {"startLine": 153}}}]}, {"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": 51200, "scanner": "repobility-threat-engine", "fingerprint": "a3ffd30a5b29ed2ab83c0b7055b016ee76a81cdd0b45acbeb735aa9218b8c911", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(urlArg", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a3ffd30a5b29ed2ab83c0b7055b016ee76a81cdd0b45acbeb735aa9218b8c911"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/custom-eslint/rules/no-raw-msw-http.ts"}, "region": {"startLine": 109}}}]}, {"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": 51199, "scanner": "repobility-threat-engine", "fingerprint": "1c90c6a0a06e7556f261ac7286e50e327fa99d8536d17ffe47b30400f6a123b9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Exec(cmd", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1c90c6a0a06e7556f261ac7286e50e327fa99d8536d17ffe47b30400f6a123b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/src/main.rs"}, "region": {"startLine": 68}}}]}, {"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": 51190, "scanner": "repobility-threat-engine", "fingerprint": "00463673ec3a05bd2f945a13ea1b22fd159506322398a53578d239c33858eb75", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Promise.all(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|00463673ec3a05bd2f945a13ea1b22fd159506322398a53578d239c33858eb75"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/zero-billing-redeem.service.ts"}, "region": {"startLine": 242}}}]}, {"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": 51189, "scanner": "repobility-threat-engine", "fingerprint": "41f1369504cddfce9f30c1a27c83470dd7163f77183f91f28638cccab350be65", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "signer.update(signingInput);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|41f1369504cddfce9f30c1a27c83470dd7163f77183f91f28638cccab350be65"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/github-app.service.ts"}, "region": {"startLine": 60}}}]}, {"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": 51188, "scanner": "repobility-threat-engine", "fingerprint": "be5e6ca6e7ca1c7e595c412ca559bd7088b3071b4c233aa836ee6b3278610bae", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "excluded.update(extra_excluded)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|be5e6ca6e7ca1c7e595c412ca559bd7088b3071b4c233aa836ee6b3278610bae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/src/auth_base_forwarder.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED003", "level": "error", "message": {"text": "[MINED003] Rust Unwrap In Prod: .unwrap() panics if None/Err. Acceptable in tests; risky elsewhere."}, "properties": {"repobilityId": 51168, "scanner": "repobility-threat-engine", "fingerprint": "bedc4d1af30e238d402d05ea78e8113e689bd433c3c9406801bb6ae1b6654603", "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": "rust-unwrap-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347903+00:00", "triaged_in_corpus": 15, "observations_count": 386515, "ai_coder_pattern_id": 111}, "scanner": "repobility-threat-engine", "correlation_key": "fp|bedc4d1af30e238d402d05ea78e8113e689bd433c3c9406801bb6ae1b6654603"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/guest-agent/src/complete.rs"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED003", "level": "error", "message": {"text": "[MINED003] Rust Unwrap In Prod: .unwrap() panics if None/Err. Acceptable in tests; risky elsewhere."}, "properties": {"repobilityId": 51167, "scanner": "repobility-threat-engine", "fingerprint": "c40dfd1374a085b66863125cba429e625d8012bfe6553b71f67b96f99483359d", "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": "rust-unwrap-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347903+00:00", "triaged_in_corpus": 15, "observations_count": 386515, "ai_coder_pattern_id": 111}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c40dfd1374a085b66863125cba429e625d8012bfe6553b71f67b96f99483359d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/agent-diagnostics/src/lib.rs"}, "region": {"startLine": 273}}}]}, {"ruleId": "MINED003", "level": "error", "message": {"text": "[MINED003] Rust Unwrap In Prod: .unwrap() panics if None/Err. Acceptable in tests; risky elsewhere."}, "properties": {"repobilityId": 51166, "scanner": "repobility-threat-engine", "fingerprint": "3751a9aeb98f8e874d4b2df85627da30c14d8f1af5e41dba441554c7698df28b", "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": "rust-unwrap-in-prod", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["rust"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347903+00:00", "triaged_in_corpus": 15, "observations_count": 386515, "ai_coder_pattern_id": 111}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3751a9aeb98f8e874d4b2df85627da30c14d8f1af5e41dba441554c7698df28b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/endpoint.rs"}, "region": {"startLine": 109}}}]}, {"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": 51163, "scanner": "repobility-threat-engine", "fingerprint": "561143fb01c70d2520c26bbdaaf2a960a68f3bb19a5861e7e18d2a8f753b337e", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(t", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|561143fb01c70d2520c26bbdaaf2a960a68f3bb19a5861e7e18d2a8f753b337e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/transport.rs"}, "region": {"startLine": 82}}}]}, {"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": 51162, "scanner": "repobility-threat-engine", "fingerprint": "6125f0f18f4d09c91e27c3f49302b9bec215e5fd3fdeb0d7aadf2d012b7b7ab0", "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|6125f0f18f4d09c91e27c3f49302b9bec215e5fd3fdeb0d7aadf2d012b7b7ab0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/handshake.rs"}, "region": {"startLine": 173}}}]}, {"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": 51161, "scanner": "repobility-threat-engine", "fingerprint": "bf03d7f72c68c9059e8753f89742747567618728ca9e663b62fc1bfae925be62", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(h", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bf03d7f72c68c9059e8753f89742747567618728ca9e663b62fc1bfae925be62"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/ably-subscriber/src/connection/auth.rs"}, "region": {"startLine": 12}}}]}, {"ruleId": "SUPC001", "level": "error", "message": {"text": "Supply chain \u2014 curl | bash anti-pattern"}, "properties": {"repobilityId": 15538, "scanner": "repobility", "fingerprint": "30fc215f6473ece922ed2fb41daa40e1", "category": "supply_chain", "severity": "high", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh", "aljefra_cwe": ["CWE-494"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "curl-pipe-bash"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 42}}}]}, {"ruleId": "SUPC001", "level": "error", "message": {"text": "Supply chain \u2014 curl | bash anti-pattern"}, "properties": {"repobilityId": 15537, "scanner": "repobility", "fingerprint": "73e47b5f351e077b81d868f7c0995e41", "category": "supply_chain", "severity": "high", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "curl \\\n    git \\\n    gnupg \\\n    lsb-release \\\n    ca-certificates \\\n    wget \\\n    jq \\\n    && rm -rf /var/lib/apt/lists/*\n\n# Install Node.js 22\nRUN curl -fsSL https://deb.nodesource.com/setup_22.x |", "aljefra_cwe": ["CWE-494"], "aljefra_owasp": "A08:2021", "aljefra_pattern_slug": "curl-pipe-bash"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "CRYP002", "level": "error", "message": {"text": "Crypto \u2014 weak hash or cipher (MD5, SHA1, DES, RC4)"}, "properties": {"repobilityId": 15456, "scanner": "repobility", "fingerprint": "02fc9303233b17afa7448d86cc338842", "category": "crypto", "severity": "high", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "MD5", "aljefra_cwe": ["CWE-327"], "aljefra_owasp": "A02:2021", "aljefra_pattern_slug": "weak-crypto"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/middleware.cors.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 5885, "scanner": "repobility-journey-contract", "fingerprint": "053ee21d660dc0fee5e51ee4e85be60dc7614c04bc29756632d3e4e61d20f7b8", "category": "auth", "severity": "high", "confidence": 0.83, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A password or secret-named input is populated from a secret-like variable instead of a masked placeholder.", "evidence": {"rule_id": "JRN009", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|246|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/platform/src/views/device-bb0/bb0-device-page.tsx"}, "region": {"startLine": 246}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 5884, "scanner": "repobility-journey-contract", "fingerprint": "0ea675ee37045c55cfd4c9810d3ba99c32040a3dba884600e391ae08d3b9cca5", "category": "auth", "severity": "high", "confidence": 0.78, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Frontend consent wording was found, but backend consent/audit metadata was not visible.", "evidence": {"rule_id": "JRN004", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "correlation_key": "code|auth|token|13|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 2}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/zero/developer-support.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /f/:userId/:id/:filename."}, "properties": {"repobilityId": 5849, "scanner": "repobility-access-control", "fingerprint": "59959a0cc81384a79ae5a93ff6a3e8383801841326e981c782c51c4c5565a67c", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/f/:userId/:id/:filename", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|turbo/apps/web/app/f/ userid / id / filename /route.ts|80|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/f/[userId]/[id]/[filename]/route.ts"}, "region": {"startLine": 80}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /telegram/webhook/:telegramBotId/route."}, "properties": {"repobilityId": 5848, "scanner": "repobility-access-control", "fingerprint": "de613bb9c45444504e7dc2c2f866695d14dc3db89b4bff336d62534caf2df419", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/telegram/webhook/:telegramBotId/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / telegrambotid /route.ts|64|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/telegram/webhook/[telegramBotId]/route.ts"}, "region": {"startLine": 64}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /zero/voice-chat/:id/usage/route."}, "properties": {"repobilityId": 5847, "scanner": "repobility-access-control", "fingerprint": "5d42e45eb778d80e439d0469eed8139bdbfa8d60f67e381ec771843021e8312c", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/voice-chat/:id/usage/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / id /usage/route.ts|93|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/voice-chat/[id]/usage/route.ts"}, "region": {"startLine": 93}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /zero/voice-chat/:id/tasks/route."}, "properties": {"repobilityId": 5846, "scanner": "repobility-access-control", "fingerprint": "2fb6f41301b23620355ea572eacc5da275f7a896e70add9f6a4025bcc444e8bd", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/voice-chat/:id/tasks/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / id /tasks/route.ts|105|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/voice-chat/[id]/tasks/route.ts"}, "region": {"startLine": 105}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /zero/voice-chat/:id/session-started/route."}, "properties": {"repobilityId": 5845, "scanner": "repobility-access-control", "fingerprint": "33a15003101f1e82627d3366a0e40c58a1d25eb11fed2392c913ff9c3d75ff3d", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/voice-chat/:id/session-started/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / id /session-started/route.ts|74|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/voice-chat/[id]/session-started/route.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /zero/voice-chat/:id/trigger-reasoning/route."}, "properties": {"repobilityId": 5844, "scanner": "repobility-access-control", "fingerprint": "6b9fb0a37ef14d267232992f72f8ebbcdb79409e6b3219e6786e301f5c06b058", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/voice-chat/:id/trigger-reasoning/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / id /trigger-reasoning/route.ts|21|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/voice-chat/[id]/trigger-reasoning/route.ts"}, "region": {"startLine": 21}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /zero/voice-chat/:id/session-ended/route."}, "properties": {"repobilityId": 5843, "scanner": "repobility-access-control", "fingerprint": "5a457e795e0204e40a610b2cc3052661d32f9646578fe0b9b6aeba2bccd367f4", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/zero/voice-chat/:id/session-ended/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / id /session-ended/route.ts|86|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/zero/voice-chat/[id]/session-ended/route.ts"}, "region": {"startLine": 86}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /integrations/telegram/:botId/avatar/route."}, "properties": {"repobilityId": 5842, "scanner": "repobility-access-control", "fingerprint": "4dedf97d55c7bca5ecde2b80d2c84acf3e7229d084f34d22e7f895e326334b0e", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/integrations/telegram/:botId/avatar/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / botid /avatar/route.ts|165|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/web/app/api/integrations/telegram/[botId]/avatar/route.ts"}, "region": {"startLine": 165}}}]}, {"ruleId": "DKR006", "level": "error", "message": {"text": "Dockerfile pipes a remote script into a shell"}, "properties": {"repobilityId": 5832, "scanner": "repobility-docker", "fingerprint": "05f7185d54dbd2bec8385d8bb3e307f757687e300e01b2eeb7dd506b9cc9b6eb", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "RUN instruction contains curl/wget piped into a shell.", "evidence": {"rule_id": "DKR006", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|05f7185d54dbd2bec8385d8bb3e307f757687e300e01b2eeb7dd506b9cc9b6eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 49}}}]}, {"ruleId": "DKR006", "level": "error", "message": {"text": "Dockerfile pipes a remote script into a shell"}, "properties": {"repobilityId": 5829, "scanner": "repobility-docker", "fingerprint": "2f1a9b7a1199c08f9a3baa1a6ae61a70d630574162ed78c13325a895d822eb6f", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "RUN instruction contains curl/wget piped into a shell.", "evidence": {"rule_id": "DKR006", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|2f1a9b7a1199c08f9a3baa1a6ae61a70d630574162ed78c13325a895d822eb6f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker/toolchain/Dockerfile"}, "region": {"startLine": 19}}}]}, {"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": 5824, "scanner": "repobility-threat-engine", "fingerprint": "41a5bead556cfbfa3775329b5cceda2a305a421808222476b565cecf23fefd66", "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(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|48|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/scripts/update-x-tlds.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED133", "level": "error", "message": {"text": "[MINED133] Hardcoded Discord webhook URL in source: File contains a hardcoded `Discord` webhook URL: `https://discord.com/api/webhooks/123/abc...`. Webhook URLs are unauthenticated POST endpoints \u2014 anyone with the URL can send messages. They are also a common data-exfiltration channel for compromised packages (malicious post-install collects env vars + POSTs them)."}, "properties": {"repobilityId": 51423, "scanner": "repobility-supply-chain", "fingerprint": "c8641524f8854b77e078cd0570e008ed2b7d399ca2257f4a1fe3318d7d3bb19a", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "exfil-webhook-url", "owasp": null, "cwe_ids": ["CWE-200", "CWE-540"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c8641524f8854b77e078cd0570e008ed2b7d399ca2257f4a1fe3318d7d3bb19a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_firewall_auth.py"}, "region": {"startLine": 336}}}]}, {"ruleId": "MINED133", "level": "error", "message": {"text": "[MINED133] Hardcoded Discord webhook URL in source: File contains a hardcoded `Discord` webhook URL: `https://discord.com/api/webhooks/123/abc...`. Webhook URLs are unauthenticated POST endpoints \u2014 anyone with the URL can send messages. They are also a common data-exfiltration channel for compromised packages (malicious post-install collects env vars + POSTs them)."}, "properties": {"repobilityId": 51422, "scanner": "repobility-supply-chain", "fingerprint": "aa1b63564b6ef57c028195212b9a8408d80c6c6f893b9c287920a09bf871bfc8", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "exfil-webhook-url", "owasp": null, "cwe_ids": ["CWE-200", "CWE-540"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|aa1b63564b6ef57c028195212b9a8408d80c6c6f893b9c287920a09bf871bfc8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_url_utils.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED133", "level": "error", "message": {"text": "[MINED133] Hardcoded Discord webhook URL in source: File contains a hardcoded `Discord` webhook URL: `https://discord.com/api/webhooks/123/abc...`. Webhook URLs are unauthenticated POST endpoints \u2014 anyone with the URL can send messages. They are also a common data-exfiltration channel for compromised packages (malicious post-install collects env vars + POSTs them)."}, "properties": {"repobilityId": 51421, "scanner": "repobility-supply-chain", "fingerprint": "8c96139c198dc0c6c58b1e9ee07b8ee67a226596e00b1546986688ff8d47c224", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "exfil-webhook-url", "owasp": null, "cwe_ids": ["CWE-200", "CWE-540"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|8c96139c198dc0c6c58b1e9ee07b8ee67a226596e00b1546986688ff8d47c224"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "crates/runner/mitm-addon/tests/test_firewall_rewrite.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51389, "scanner": "repobility-supply-chain", "fingerprint": "345dbd8866d4690f073febceb1909cdb21969fbc02069bd76cea1945b678346e", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|345dbd8866d4690f073febceb1909cdb21969fbc02069bd76cea1945b678346e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 1076}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51388, "scanner": "repobility-supply-chain", "fingerprint": "abef3f15ea2c43c673c00aa51e3d772bb978e2f658e3bd0a4cf8f8ff1f8b6a00", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|abef3f15ea2c43c673c00aa51e3d772bb978e2f658e3bd0a4cf8f8ff1f8b6a00"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 1075}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OFFICIAL_RUNNER_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OFFICIAL_RUNNER_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51387, "scanner": "repobility-supply-chain", "fingerprint": "e532744f5f1c1d846e66f8d0cd65a7e7503e61c4e0018074869cec3b60644f06", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e532744f5f1c1d846e66f8d0cd65a7e7503e61c4e0018074869cec3b60644f06"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 891}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51386, "scanner": "repobility-supply-chain", "fingerprint": "bc253ee0bc7e289b5a4750a12fd29fd3b7da0b1e749f8d500297440ffd57b709", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|bc253ee0bc7e289b5a4750a12fd29fd3b7da0b1e749f8d500297440ffd57b709"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 886}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51385, "scanner": "repobility-supply-chain", "fingerprint": "f09e3ce52db15521bde137c896177a31074f7afd978c20ec84ddb35206b7e0a9", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f09e3ce52db15521bde137c896177a31074f7afd978c20ec84ddb35206b7e0a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 885}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51384, "scanner": "repobility-supply-chain", "fingerprint": "802b6072924600cb97a88a8c315e5549d974f6b0f6832fd1c88904b23c1ba28a", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|802b6072924600cb97a88a8c315e5549d974f6b0f6832fd1c88904b23c1ba28a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 884}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OFFICIAL_RUNNER_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OFFICIAL_RUNNER_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51383, "scanner": "repobility-supply-chain", "fingerprint": "dc25fd04ab7fc7b023c26216b136bdc54fb451856258627ca78ae7a8d8cb6994", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dc25fd04ab7fc7b023c26216b136bdc54fb451856258627ca78ae7a8d8cb6994"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 779}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51382, "scanner": "repobility-supply-chain", "fingerprint": "c106b64823444b3334d9d4e3d3c145952c00f25a2884666d25b7e9a2808d7c37", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|c106b64823444b3334d9d4e3d3c145952c00f25a2884666d25b7e9a2808d7c37"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 774}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51381, "scanner": "repobility-supply-chain", "fingerprint": "b64babe9634b314091bc6adea9012bcf2e0502aa0e6dd04d509783d6d925f5b7", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b64babe9634b314091bc6adea9012bcf2e0502aa0e6dd04d509783d6d925f5b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 773}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51380, "scanner": "repobility-supply-chain", "fingerprint": "a5f75bb468f7bebd683852bf9de3cbf9106cf709144bcc0ae4c2c0f5c34ddf97", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a5f75bb468f7bebd683852bf9de3cbf9106cf709144bcc0ae4c2c0f5c34ddf97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 772}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OFFICIAL_RUNNER_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OFFICIAL_RUNNER_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51379, "scanner": "repobility-supply-chain", "fingerprint": "aecf8be33e12ed74c55007cbd15b7368a25d504078bd89b2dbca45349c7cad8d", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|aecf8be33e12ed74c55007cbd15b7368a25d504078bd89b2dbca45349c7cad8d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 517}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51378, "scanner": "repobility-supply-chain", "fingerprint": "3733e0a3ec92e2057085d107c9d4e349e538bc00d58818286e2163ad2d799c4f", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|3733e0a3ec92e2057085d107c9d4e349e538bc00d58818286e2163ad2d799c4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 512}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51377, "scanner": "repobility-supply-chain", "fingerprint": "db4c3c908e51435d5a54c391ce0e026430450d949e103cd905841e954181f5f7", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|db4c3c908e51435d5a54c391ce0e026430450d949e103cd905841e954181f5f7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 511}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51376, "scanner": "repobility-supply-chain", "fingerprint": "58aeb50c3d8d1143ed60c3bde7873da66356979b5d42b6e053a28c1578d85afe", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|58aeb50c3d8d1143ed60c3bde7873da66356979b5d42b6e053a28c1578d85afe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 510}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OFFICIAL_RUNNER_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OFFICIAL_RUNNER_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51375, "scanner": "repobility-supply-chain", "fingerprint": "8427e568c51c2a08a0fc6c08b48080c84079158852c2ed11345192dcad36f621", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|8427e568c51c2a08a0fc6c08b48080c84079158852c2ed11345192dcad36f621"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 461}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51374, "scanner": "repobility-supply-chain", "fingerprint": "f58b2e051838e2500d0f78974bdac6f07ec9a5666644e0650036098fc818a857", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f58b2e051838e2500d0f78974bdac6f07ec9a5666644e0650036098fc818a857"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 456}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51373, "scanner": "repobility-supply-chain", "fingerprint": "68c9d4655d157cd97a2809d6106f0a80ee1ec125ab97d52a6c13a0014442a222", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|68c9d4655d157cd97a2809d6106f0a80ee1ec125ab97d52a6c13a0014442a222"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 455}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51372, "scanner": "repobility-supply-chain", "fingerprint": "a4c1dbd9e9a228e296dab357e44e5ba3d7a2d6a5fd1cbb08a21c606ce612c63e", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a4c1dbd9e9a228e296dab357e44e5ba3d7a2d6a5fd1cbb08a21c606ce612c63e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 454}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_HOSTS` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_HOSTS }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51371, "scanner": "repobility-supply-chain", "fingerprint": "921972504a6dabbb76d490af6beae458161618feffd5cb1d83461d87af52d7eb", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|921972504a6dabbb76d490af6beae458161618feffd5cb1d83461d87af52d7eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 438}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_SECRET` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_SECRET }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51370, "scanner": "repobility-supply-chain", "fingerprint": "a594646fae3610750e8f805518c35865679a664c187b0562d4169cd183b5082d", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a594646fae3610750e8f805518c35865679a664c187b0562d4169cd183b5082d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 397}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CF_ACCESS_CLIENT_ID` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CF_ACCESS_CLIENT_ID }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51369, "scanner": "repobility-supply-chain", "fingerprint": "febe66ac34080efaa4570a3fe5d7dfc2fd501439a804be2aa923c336a79b4223", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|febe66ac34080efaa4570a3fe5d7dfc2fd501439a804be2aa923c336a79b4223"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 396}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_SSH_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_SSH_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51368, "scanner": "repobility-supply-chain", "fingerprint": "4dafccafc82f03ee4a17ce5ad84125a861903f5405deabc84080aacde83fd491", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|4dafccafc82f03ee4a17ce5ad84125a861903f5405deabc84080aacde83fd491"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 395}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ABLY_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ABLY_API_KEY }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51367, "scanner": "repobility-supply-chain", "fingerprint": "fe7caae1d51eb596e8fd0fad406749be7fb5c8aef61547d86b05c6bd0c77781b", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fe7caae1d51eb596e8fd0fad406749be7fb5c8aef61547d86b05c6bd0c77781b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 295}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CODECOV_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51366, "scanner": "repobility-supply-chain", "fingerprint": "7d7dfcf8c2ebf170136b631e6f6a4285dafe5f440ef7751649624b824fdefce5", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|7d7dfcf8c2ebf170136b631e6f6a4285dafe5f440ef7751649624b824fdefce5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 286}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.AWS_METAL_RUNNER_HOSTS` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.AWS_METAL_RUNNER_HOSTS }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 51365, "scanner": "repobility-supply-chain", "fingerprint": "cc5b12ea7606f745ce0bc2b278323f13ad6ca7d645d648782cdc7177c898aa67", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|cc5b12ea7606f745ce0bc2b278323f13ad6ca7d645d648782cdc7177c898aa67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/crates.yml"}, "region": {"startLine": 181}}}]}, {"ruleId": "SEC056", "level": "error", "message": {"text": "[SEC056] GitLab personal access token: GitLab personal access token. Ported from gitleaks gitlab-pat (MIT)."}, "properties": {"repobilityId": 51260, "scanner": "repobility-threat-engine", "fingerprint": "f8efb60ff30af8bdfb8d216270f572ecceeaeb4d4c4adf3d7426bbfb18e87861", "category": "secret", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "glpat-CoffeeSafeLocalCoffe", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC056", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "secret|token|1|glpat-coffeesafelocalcoffe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/gitlab.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC051", "level": "error", "message": {"text": "[SEC051] Stripe live/test key: Stripe API key (live or test). Live keys can charge real cards. Ported from gitleaks stripe-access-token (MIT)."}, "properties": {"repobilityId": 51258, "scanner": "repobility-threat-engine", "fingerprint": "960e9cf24884352b587963d68345a62e0e27494c8f728a768a191f30ef8775d8", "category": "secret", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "sk_test_CoffeeSafeLocalCoffeeSafeLocalCoffeeSa", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC051", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "secret|token|4|token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/clerk.ts"}, "region": {"startLine": 42}}}]}, {"ruleId": "SEC010", "level": "error", "message": {"text": "[SEC010] Cloud Provider Token: Cloud provider or SaaS API token found in source code."}, "properties": {"repobilityId": 51247, "scanner": "repobility-threat-engine", "fingerprint": "64a77e564be5a8368fea37f23f2c4281977b0acbf88bafd53a1050bfa84f64df", "category": "credential_exposure", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found Collapsed 10 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "SG.CoffeeSafeLocalCoffeeS.CoffeeSafeLocalCoffeeSafeLocalCoffeeSafeLoc", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC010", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "secret|token|1|token", "duplicate_count": 10, "duplicate_rule_ids": ["SEC010", "SEC049", "SEC051", "SEC052", "SEC058", "SEC060", "SEC061"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["03a7f52851c82bcfdc7f9664c74a2ea30b39f2e174ddf880dfb195f29e3e5929", "2a1326fc61d3ef70f0ef86d95d6bc92a9178a89ba3b66f3728d08bf049c8ff2a", "459976fe1aad6fc78c8a194e523fbb14739f99592432ac3eb90e9a1a4c19e7ac", "64a77e564be5a8368fea37f23f2c4281977b0acbf88bafd53a1050bfa84f64df", "724c89a2a61c6a5251d330ed6080f7a1dedd00a3e1c8399bb1695f113aee296b", "ac80ead2072d5aac11686bb29272cfdfcba5f25307e067aced385d95a679d194", "b47bbe01b08cf72ad9aac33f66ca776b4fb3a4daa50d5c1864bd6aba6b96965e", "b53005b3874adc4a2dda6c240e452c55067bf4f0bc42d9e2d6623f9d7088c9aa", "be86dbe762dd8f4ce5e276bbb13dfdae7ae78dfe9339d5f648d7a01c9ee55687", "d3f60711ba71bac3ab5aa98efcfabc566cce87f4b060f60343b83f5c1c679b91", "f8943dd90c005d3de2cb87c86674584681e50088de310c58e63f8fe9c28f03f1"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/packages/firewalls-generator/src/sendgrid.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 51212, "scanner": "repobility-threat-engine", "fingerprint": "3b3c602d373735ebd87e917323dd08f3c0b548c9d4d1e1380dd95520a3ac900a", "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": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3b3c602d373735ebd87e917323dd08f3c0b548c9d4d1e1380dd95520a3ac900a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/api/src/signals/services/zero-custom-connector.service.ts"}, "region": {"startLine": 211}}}]}, {"ruleId": "SECR001", "level": "error", "message": {"text": "Hardcoded secret in source"}, "properties": {"repobilityId": 16610, "scanner": "repobility", "fingerprint": "3c4a79d743fc150622d9e06745694fe1", "category": "credential_exposure", "severity": "critical", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "AKIAIOSFODNN7EXAMPLE", "aljefra_cwe": ["CWE-798"], "aljefra_owasp": "A07:2021", "aljefra_pattern_slug": "hardcoded-secret"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/model-provider/__tests__/setup.test.ts"}, "region": {"startLine": 968}}}]}, {"ruleId": "SECR001", "level": "error", "message": {"text": "Hardcoded secret in source"}, "properties": {"repobilityId": 16609, "scanner": "repobility", "fingerprint": "561b59630000d6b9a6d924a868f26612", "category": "credential_exposure", "severity": "critical", "confidence": 0.85, "triageState": "fixed", "verdict": "", "isResolved": true, "reason": "", "evidence": {"snippet": "AKIAIOSFODNN7EXAMPLE", "aljefra_cwe": ["CWE-798"], "aljefra_owasp": "A07:2021", "aljefra_pattern_slug": "hardcoded-secret"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "turbo/apps/cli/src/commands/model-provider/__tests__/setup.test.ts"}, "region": {"startLine": 957}}}]}]}]}