{"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": "MINED124", "name": "[MINED124] requirements.txt: `cryptography>46.0.4` has no version pin: Unpinned pip requirement means every fresh instal", "shortDescription": {"text": "[MINED124] requirements.txt: `cryptography>46.0.4` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reprod"}, "fullDescription": {"text": "Replace `cryptography>46.0.4` with `cryptography>46.0.4==<version>` and manage upgrades through PRs / Dependabot."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED109", "name": "[MINED109] Mutable default argument in `__init__` (dict): `def __init__(... = []/{}/set())` \u2014 Python's default value is ", "shortDescription": {"text": "[MINED109] Mutable default argument in `__init__` (dict): `def __init__(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every f"}, "fullDescription": {"text": "Use None as the default and create the collection inside the function: `def __init__(x=None): x = x or []`"}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED111", "name": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or ", "shortDescription": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "fullDescription": {"text": "Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "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": "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": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC139", "name": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payme", "shortDescription": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluent"}, "fullDescription": {"text": "Require a companion test file for any change to auth/admin/users/payments/webhooks paths. CI gate: if `src/auth/*.py` changed in a PR, fail if `tests/auth/*.py` did not also change. For migrations, require an explicit rollback (`op.execute('-- rollback ...')`) plus a test that exercises both directions."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC136", "name": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns ", "shortDescription": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, retur"}, "fullDescription": {"text": "Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "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": "SEC034", "name": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines o", "shortDescription": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (S"}, "fullDescription": {"text": "Strip control characters before logging:\n  safe = user_input.replace('\\n','').replace('\\r','').replace('\\x00','')\n  logger.info('User action: %s', safe)\nAlways use parameterized logging (`%s` + args), never f-strings or string concat \u2014 that's also what mitigates log4shell-style attacks. For structured logging, use a JSON formatter that escapes values."}, "properties": {"scanner": "repobility-threat-engine", "category": "log_injection", "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": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "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": "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: DELETE "}, "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": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authenticatio", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "fullDescription": {"text": "Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"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": "DKR003", "name": "Compose service `openmemory-ui` image uses the latest tag", "shortDescription": {"text": "Compose service `openmemory-ui` image uses the latest tag"}, "fullDescription": {"text": "Pin to a maintained version tag or digest and update it deliberately through dependency automation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Compose service `openmemory-mcp` image has no explicit tag", "shortDescription": {"text": "Compose service `openmemory-mcp` image has no explicit tag"}, "fullDescription": {"text": "Pin the image to a supported version tag or digest, for example python:3.13-slim or image@sha256:..."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "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": "DKR007", "name": "Docker build context has no .dockerignore", "shortDescription": {"text": "Docker build context has no .dockerignore"}, "fullDescription": {"text": "Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "SEC017", "name": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.", "shortDescription": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely"}, "fullDescription": {"text": "1) Enforce a maximum input length BEFORE sending to the API: e.g. `if len(text) > 4000: return error`. 2) Use token counting (tiktoken for OpenAI, anthropic's token counter) to enforce token-level limits. 3) Set max_tokens on the API call to cap response cost. 4) Add rate limiting per user/IP to prevent automated abuse. 5) Monitor API spend with alerts for unusual usage patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "medium", "confidence": 0.8, "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": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "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": "COMP001", "name": "[COMP001] High cognitive complexity: Function `_build_filters` has cognitive complexity 11 (SonarSource scale). Cognitiv", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `_build_filters` 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 recursio"}, "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 11."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "low", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "DKC012", "name": "Compose service performs heavy setup work on every startup", "shortDescription": {"text": "Compose service performs heavy setup work on every startup"}, "fullDescription": {"text": "Move migrations and asset preparation into a one-shot release job, CI step, or dedicated Compose service that completes before the app starts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "DKR012", "name": "Dockerfile keeps pip download cache", "shortDescription": {"text": "Dockerfile keeps pip download cache"}, "fullDescription": {"text": "Use `pip install --no-cache-dir ...` in container builds."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "SEC006", "name": "[SEC006] XSS Risk: Direct HTML injection without sanitization.", "shortDescription": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "fullDescription": {"text": "Use textContent instead of innerHTML. Sanitize with DOMPurify."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "low", "confidence": 0.4, "cwe": "", "owasp": ""}}, {"id": "SEC004", "name": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.", "shortDescription": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "fullDescription": {"text": "Use parameterized queries: cur.execute('SELECT * FROM t WHERE id = %s', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "low", "confidence": 0.2, "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": "Rename it to the domain concept it implements or merge it into the existing module it was meant to change."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "MINED058", "name": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or neve", "shortDescription": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "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": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[MINED056] React Key As Index (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC135", "name": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 2 more): Same pattern found in 2 additional files. ", "shortDescription": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Add the project's auth decorator/middleware: `@login_required` (Django/Flask), `@permission_classes([IsAuthenticated])` (DRF), `Depends(get_current_user)` (FastAPI), `requireAuth` middleware (Express). For genuinely public endpoints, add a `# public-endpoint` marker comment so future scans skip them."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED067", "name": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever.", "shortDescription": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-400 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC078", "name": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsiv", "shortDescription": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a re"}, "fullDescription": {"text": "Add `timeout=10` (or appropriate value) to every requests call."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "SEC118", "name": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier: UUIDv1 encodes the MAC address and timestamp, making it", "shortDescription": {"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."}, "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.1, "cwe": "", "owasp": ""}}, {"id": "MINED054", "name": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed.", "shortDescription": {"text": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "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": "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 7 more): Same pattern found in 7 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 7 more): Same pattern found in 7 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": "MINED064", "name": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services.", "shortDescription": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 31 more): Same pattern found in 31 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 31 more): Same pattern found in 31 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED072", "name": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in.", "shortDescription": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "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": "MINED050", "name": "[MINED050] Stub Only Function (and 26 more): Same pattern found in 26 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 26 more): Same pattern found in 26 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 15 more): Same pattern found in 15 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 15 more): Same pattern found in 15 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": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 17 more): Same pattern found in 17 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 17 more): Same pattern found in 17 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 15 more): Same pattern found in 15 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 15 more): Same pattern found in 15 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": "SEC002", "name": "[SEC002] Hardcoded API Key (and 10 more): Same pattern found in 10 additional files. Review if needed.", "shortDescription": {"text": "[SEC002] Hardcoded API Key (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "fullDescription": {"text": "Use environment variables. Add the pattern to .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 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": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 9 more): Same pattern found in 9 additional fil", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 9 more): Same pattern found in 9 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": "MINED044", "name": "[MINED044] Js Console Log Prod (and 52 more): Same pattern found in 52 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 52 more): Same pattern found in 52 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": "MINED115", "name": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run", "shortDescription": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) "}, "fullDescription": {"text": "Replace with: `uses: pnpm/action-setup@<40-char-sha>  # v4` 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 `node:20-alpine` not pinned by digest: `FROM node:20-alpine` resolves the tag at build time. ", "shortDescription": {"text": "[MINED118] Dockerfile FROM `node:20-alpine` not pinned by digest: `FROM node:20-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images "}, "fullDescription": {"text": "Replace with: `FROM node:20-alpine@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": "MINED112", "name": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_generate_response_with", "shortDescription": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_generate_response_with_tools_no_tool_calls` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth"}, "fullDescription": {"text": "Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional."}, "properties": {"scanner": "repobility-route-auth", "category": "quality", "severity": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "MINED110", "name": "[MINED110] Blocking call `input` inside async function `interactive_mode`: `input` is a synchronous (blocking) call. Whe", "shortDescription": {"text": "[MINED110] Blocking call `input` inside async function `interactive_mode`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making pr"}, "fullDescription": {"text": "Use the async equivalent: `aiohttp` instead of `requests`, `asyncio.sleep` instead of `time.sleep`, `aiofiles` instead of `open`."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.client` used but never assigned in __init__: Method `test_get_memory_without_key` of class `TestAuthDis", "shortDescription": {"text": "[MINED108] `self.client` used but never assigned in __init__: Method `test_get_memory_without_key` of class `TestAuthDisabled` reads `self.client`, but no assignment to it exists in __init__ (and no class-level fallback). This raises Attrib"}, "fullDescription": {"text": "Initialize `self.client = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_get_all_rejects_internal_whitespace_user_id: Test function `test_get_all_rejects_", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_get_all_rejects_internal_whitespace_user_id: Test function `test_get_all_rejects_internal_whitespace_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour"}, "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": "AGT002", "name": "LLM memory extraction can be prompt-injected into storing fake facts", "shortDescription": {"text": "LLM memory extraction can be prompt-injected into storing fake facts"}, "fullDescription": {"text": "Validate extracted facts with a schema, enforce length and count limits, reject code-fence/prompt-looking content, and discard facts that contain instruction-like phrases or raw JSON prompt fragments."}, "properties": {"scanner": "repobility-agent-runtime", "category": "llm_injection", "severity": "high", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "MINED027", "name": "[MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState \u2014 React skips re-render on mutated ", "shortDescription": {"text": "[MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState \u2014 React skips re-render on mutated reference."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED021", "name": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape.", "shortDescription": {"text": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-22 / A01:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC103", "name": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inje", "shortDescription": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "fullDescription": {"text": "Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders)."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED006", "name": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working.", "shortDescription": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-705 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "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": "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": "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": "DKR014", "name": "Dockerfile copies the entire context without .dockerignore", "shortDescription": {"text": "Dockerfile copies the entire context without .dockerignore"}, "fullDescription": {"text": "Create .dockerignore before using broad context copies, or copy only the required files and directories."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "SEC016", "name": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prom", "shortDescription": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input tha"}, "fullDescription": {"text": "1) Separate user content from instructions: use the 'user' role for user text and 'system' role for your instructions \u2014 never concatenate them into one string. 2) Validate and constrain: limit input length, strip control characters, and reject known injection patterns. 3) Use structured output (JSON mode / function calling) so the model returns data, not freeform actions. 4) Apply output validation: check the AI's response before acting on it. 5) Consider a prompt injection detection layer (e.g. Anthropic's constitutional AI, prompt-guard models)."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.CODECOV_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, ", "shortDescription": {"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"}, "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": "MINED107", "name": "[MINED107] Missing import: `email` used but not imported: The file uses `email.something(...)` but never imports `email`", "shortDescription": {"text": "[MINED107] Missing import: `email` used but not imported: The file uses `email.something(...)` but never imports `email`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import email` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKC007", "name": "Compose service contains a literal secret environment value", "shortDescription": {"text": "Compose service contains a literal secret environment value"}, "fullDescription": {"text": "Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "critical", "confidence": 0.96, "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": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/212"}, "properties": {"repository": "mem0ai/mem0", "repoUrl": "https://github.com/mem0ai/mem0", "branch": "main"}, "results": [{"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `cryptography>46.0.4` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reproducible installs need exact pins."}, "properties": {"repobilityId": 48770, "scanner": "repobility-supply-chain", "fingerprint": "95cf8fc79d4248eee1dcab5b5eb8d5bc04e8bd67dd039535da18de7953213a2d", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "unpinned-pip-requirement", "owasp": null, "cwe_ids": ["CWE-1357"], "languages": ["python"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|95cf8fc79d4248eee1dcab5b5eb8d5bc04e8bd67dd039535da18de7953213a2d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/requirements.txt"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `mem0ai` has no version pin: Unpinned pip requirement means every fresh install may resolve a different version. Newer releases can introduce malicious code (typosquats, account compromises). Reproducible installs need exact pins."}, "properties": {"repobilityId": 48767, "scanner": "repobility-supply-chain", "fingerprint": "1538fc530219587f2e995fa2a83232088dc2f7778b87cb1d893b67b794ecf08a", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "unpinned-pip-requirement", "owasp": null, "cwe_ids": ["CWE-1357"], "languages": ["python"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1538fc530219587f2e995fa2a83232088dc2f7778b87cb1d893b67b794ecf08a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED109", "level": "warning", "message": {"text": "[MINED109] Mutable default argument in `__init__` (dict): `def __init__(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too."}, "properties": {"repobilityId": 48755, "scanner": "repobility-ast-engine", "fingerprint": "eee4e87a7105ceb9eaabb91a2335db460381450ffdf93b07809c6d6aa15be1ed", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "mutable-default-arg", "owasp": null, "cwe_ids": ["CWE-1023"], "languages": ["python"], "observations_count": 64867}, "scanner": "repobility-ast-engine", "correlation_key": "fp|eee4e87a7105ceb9eaabb91a2335db460381450ffdf93b07809c6d6aa15be1ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/embeddings/base.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48754, "scanner": "repobility-ast-engine", "fingerprint": "1ba2db1ca96c2f10fc7460bda00e77f13dc4307c134eca60b590166ed0e91603", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1ba2db1ca96c2f10fc7460bda00e77f13dc4307c134eca60b590166ed0e91603"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/client/main.py"}, "region": {"startLine": 159}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48753, "scanner": "repobility-ast-engine", "fingerprint": "1467a6a174db91586f972592601593ac96f98d9b63f1e72d624b8dbae18e9dee", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1467a6a174db91586f972592601593ac96f98d9b63f1e72d624b8dbae18e9dee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/pinecone.py"}, "region": {"startLine": 277}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48752, "scanner": "repobility-ast-engine", "fingerprint": "d1fe0ed604f065eeeba99c690e49b6e848653305138e2496f7a4b6f0fcec3721", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d1fe0ed604f065eeeba99c690e49b6e848653305138e2496f7a4b6f0fcec3721"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/turbopuffer.py"}, "region": {"startLine": 332}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48751, "scanner": "repobility-ast-engine", "fingerprint": "432b6d65e1b67066c8f92c4f57cb5b7e54ba112de37885b0237b4356e345e4a0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|432b6d65e1b67066c8f92c4f57cb5b7e54ba112de37885b0237b4356e345e4a0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/turbopuffer.py"}, "region": {"startLine": 290}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48749, "scanner": "repobility-ast-engine", "fingerprint": "268b2cdb8929c24038832eea26db3aed391e340a2af02ce2991ed3fe2e85f197", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|268b2cdb8929c24038832eea26db3aed391e340a2af02ce2991ed3fe2e85f197"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/databricks.py"}, "region": {"startLine": 384}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48748, "scanner": "repobility-ast-engine", "fingerprint": "ef13e313560c74ceadce24413283280f9463bea16c3b798fcda15fbeee3814c9", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ef13e313560c74ceadce24413283280f9463bea16c3b798fcda15fbeee3814c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/opensearch.py"}, "region": {"startLine": 107}}}]}, {"ruleId": "MINED109", "level": "warning", "message": {"text": "[MINED109] Mutable default argument in `create` (list): `def create(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too."}, "properties": {"repobilityId": 48747, "scanner": "repobility-ast-engine", "fingerprint": "89d2982e954cba1769b89b347e96f02d952c50f1305d53e0583d87bd3f9c1bb6", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "mutable-default-arg", "owasp": null, "cwe_ids": ["CWE-1023"], "languages": ["python"], "observations_count": 64867}, "scanner": "repobility-ast-engine", "correlation_key": "fp|89d2982e954cba1769b89b347e96f02d952c50f1305d53e0583d87bd3f9c1bb6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/proxy/main.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48746, "scanner": "repobility-ast-engine", "fingerprint": "29b55c5e5ae890a27fe4149c562289919b1aa228a8e8306fb921b1da9e2810b3", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|29b55c5e5ae890a27fe4149c562289919b1aa228a8e8306fb921b1da9e2810b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/embeddings/vertexai.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48745, "scanner": "repobility-ast-engine", "fingerprint": "212010a46a6a855290e4ef26734816d48db2a95ef3325700bcaf864473a173b9", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|212010a46a6a855290e4ef26734816d48db2a95ef3325700bcaf864473a173b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/main.py"}, "region": {"startLine": 2309}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48744, "scanner": "repobility-ast-engine", "fingerprint": "556af0b1d3443550936ada721951cab2aae9d1de6ee3188ba9c514793057e62b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|556af0b1d3443550936ada721951cab2aae9d1de6ee3188ba9c514793057e62b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/main.py"}, "region": {"startLine": 894}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48743, "scanner": "repobility-ast-engine", "fingerprint": "c5d77b6976994e162ad4db5b7610962741d722b3ad462cefb52376b024c3549e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c5d77b6976994e162ad4db5b7610962741d722b3ad462cefb52376b024c3549e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/main.py"}, "region": {"startLine": 2304}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48742, "scanner": "repobility-ast-engine", "fingerprint": "303688cc7d7e6ad0677b486e4d397ce86193a214123d8666ca2833a006e1726f", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|303688cc7d7e6ad0677b486e4d397ce86193a214123d8666ca2833a006e1726f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/main.py"}, "region": {"startLine": 888}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48741, "scanner": "repobility-ast-engine", "fingerprint": "8fbe48b4bba51a61ecc0229884b67bfeddf1d7274c7c16da05bc6fee8c4e4936", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8fbe48b4bba51a61ecc0229884b67bfeddf1d7274c7c16da05bc6fee8c4e4936"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/main.py"}, "region": {"startLine": 199}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48740, "scanner": "repobility-ast-engine", "fingerprint": "363ee5bb0c680d5c7854cc164bac4c5377d330735f13ce2a4627713931ad5ac0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|363ee5bb0c680d5c7854cc164bac4c5377d330735f13ce2a4627713931ad5ac0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/llms/aws_bedrock.py"}, "region": {"startLine": 712}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48739, "scanner": "repobility-ast-engine", "fingerprint": "ced83fefee04da4633c0c8e2d36a4498dbc888dc172cf99ae77140ed07da4afa", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ced83fefee04da4633c0c8e2d36a4498dbc888dc172cf99ae77140ed07da4afa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/utils/memory.py"}, "region": {"startLine": 488}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48738, "scanner": "repobility-ast-engine", "fingerprint": "ef8d603fd71ad4457dba8869b084d37df13c922082842fb94239bac4913c297d", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ef8d603fd71ad4457dba8869b084d37df13c922082842fb94239bac4913c297d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/utils/memory.py"}, "region": {"startLine": 457}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48737, "scanner": "repobility-ast-engine", "fingerprint": "67bd79eb990d8c53d00c8252a38df69afb019aca690c9f4446037746d3277db8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|67bd79eb990d8c53d00c8252a38df69afb019aca690c9f4446037746d3277db8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/utils/memory.py"}, "region": {"startLine": 497}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48736, "scanner": "repobility-ast-engine", "fingerprint": "4e954da591bbaa81116ac72003168627dc0266aaf0240a66813e5526381ed7f5", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4e954da591bbaa81116ac72003168627dc0266aaf0240a66813e5526381ed7f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 458}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48735, "scanner": "repobility-ast-engine", "fingerprint": "614bce9e2f85333caad048d79b8c5e8097f45e10f0ad14d1ba74afc106ea707e", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|614bce9e2f85333caad048d79b8c5e8097f45e10f0ad14d1ba74afc106ea707e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 350}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48734, "scanner": "repobility-ast-engine", "fingerprint": "a295f439f24ab3ccaf1973544af11d614e31088f3c18070a5c87fc7e645ed6f1", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a295f439f24ab3ccaf1973544af11d614e31088f3c18070a5c87fc7e645ed6f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48733, "scanner": "repobility-ast-engine", "fingerprint": "da35bd736794d7e60502e2b7af31b68f9efc3c703c28be72a40b85bd6b899c67", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|da35bd736794d7e60502e2b7af31b68f9efc3c703c28be72a40b85bd6b899c67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 403}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48732, "scanner": "repobility-ast-engine", "fingerprint": "8490616ea909a49cc7750bd5153fcf8d227745774559a6e554903ab3d9760acb", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8490616ea909a49cc7750bd5153fcf8d227745774559a6e554903ab3d9760acb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48731, "scanner": "repobility-ast-engine", "fingerprint": "1031b3e4770e818db040921256d709d13aba6fb3ff4ecc393788f9a4a2506915", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1031b3e4770e818db040921256d709d13aba6fb3ff4ecc393788f9a4a2506915"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48730, "scanner": "repobility-ast-engine", "fingerprint": "b8d225dc3df187cb04973c8346d83fe8e569e52456045441e6d8e1ce614728e8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b8d225dc3df187cb04973c8346d83fe8e569e52456045441e6d8e1ce614728e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/models.py"}, "region": {"startLine": 225}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48678, "scanner": "repobility-ast-engine", "fingerprint": "7163b899ccf12e3ffb2239bbcc415a8a234b043d22a79f4e7292038a92dd02c6", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|7163b899ccf12e3ffb2239bbcc415a8a234b043d22a79f4e7292038a92dd02c6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/main.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 48676, "scanner": "repobility-ast-engine", "fingerprint": "0e1e0b52b061e46edd388a0c3e3d9f5dab4b650e4eacf952e15b3e2fad05de60", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0e1e0b52b061e46edd388a0c3e3d9f5dab4b650e4eacf952e15b3e2fad05de60"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/server_state.py"}, "region": {"startLine": 34}}}]}, {"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": 48645, "scanner": "repobility-threat-engine", "fingerprint": "bc1e6b483bc3e200aba836df0109a2dc01125ab48927c288e71799efdfcb942c", "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 = LOGIN_PATH", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bc1e6b483bc3e200aba836df0109a2dc01125ab48927c288e71799efdfcb942c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/utils/api.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 48644, "scanner": "repobility-threat-engine", "fingerprint": "42d2762dd08783559c07685a3a680870c46614f35f52def83d7eb640bcc71adc", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def create_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|server/routers/api_keys.py|62|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/api_keys.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 48643, "scanner": "repobility-threat-engine", "fingerprint": "187c0aa2ca88817e31407ce4337c55eff43afc06eec1d98e57bcd54f01edbb53", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def generate_api_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|server/auth.py|39|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/auth.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "SEC139", "level": "warning", "message": {"text": "[SEC139] AI-generated migration/route without companion test file: Route or migration touching auth, admin, users, payments, or webhooks \u2014 exactly the surfaces that need tests \u2014 with no companion test file. AI agents rewrite handlers fluently but skip the test diff almost every time, leaving high-blast-radius code uncovered. Distinct from generic 'no tests' because we target sensitive surfaces where the absence of tests is itself a risk signal. CWE-1078 (missing test coverage of security-critica"}, "properties": {"repobilityId": 48642, "scanner": "repobility-threat-engine", "fingerprint": "b2d312def71800d4033853ad2f17315c6b8dea68da686dff257f755552cfe265", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "op.execute(\"CREATE", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC139", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b2d312def71800d4033853ad2f17315c6b8dea68da686dff257f755552cfe265"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/alembic/versions/006_request_logs_brin.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 48620, "scanner": "repobility-threat-engine", "fingerprint": "b3e7b8af11c11166a9816ba4959e4d973b5052eac05d301fe2c47552617200ec", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n        payload = {**base_payload, \"filters\": {\"AND\": list(base_clauses)}}\n        results = _d", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b3e7b8af11c11166a9816ba4959e4d973b5052eac05d301fe2c47552617200ec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/_search.py"}, "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": 48615, "scanner": "repobility-threat-engine", "fingerprint": "bd26cc1d24ba8375799f550876b2f9ea99296e4725c364196e46732b5c60da79", "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(chrome.runtime.getURL(\"options.html\")", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|95|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/yt-assistant-chrome/src/popup.js"}, "region": {"startLine": 95}}}]}, {"ruleId": "SEC034", "level": "warning", "message": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (SIEM, splunk). Combined with template injection this can escalate to RCE (CVE-2021-44228 log4shell). CWE-117."}, "properties": {"repobilityId": 48605, "scanner": "repobility-threat-engine", "fingerprint": "64b03ffbd8dafa6fabe69215c03130a92ae7b7bdfbc4a057dd02a8428a00fa62", "category": "log_injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "logger.info(f\"Setting up user history for {user", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC034", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|64b03ffbd8dafa6fabe69215c03130a92ae7b7bdfbc4a057dd02a8428a00fa62"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/personalized_search.py"}, "region": {"startLine": 67}}}]}, {"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": 48599, "scanner": "repobility-threat-engine", "fingerprint": "3858d26dae316fafd2a4c05e8c5b00073d1b686739024fb65a16489d805d2b79", "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|openclaw/filtering.ts|18|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/filtering.ts"}, "region": {"startLine": 18}}}]}, {"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": 48598, "scanner": "repobility-threat-engine", "fingerprint": "3634bdfe07fabcc02c57b8ecf4ce9102947ab2912d929b4aea14eeb113ff9254", "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|18|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/storage/SQLiteManager.ts"}, "region": {"startLine": 18}}}]}, {"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": 48597, "scanner": "repobility-threat-engine", "fingerprint": "5f6d7271317a720c0bdf5901eec938a9921fec3b79c6ec9c0da4ab820c232399", "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|191|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/mem0-demo/components/mem0/markdown.tsx"}, "region": {"startLine": 191}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 48590, "scanner": "repobility-threat-engine", "fingerprint": "23523af8cf1373f6f66012b27c5892048fe5685ae9ff1174265f8abb16504981", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|23523af8cf1373f6f66012b27c5892048fe5685ae9ff1174265f8abb16504981"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/telemetry_sender.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 48589, "scanner": "repobility-threat-engine", "fingerprint": "e42c7b811ccdc21f0e0ee0d26f1f139c8e939ff95136ca90577268f01499013b", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e42c7b811ccdc21f0e0ee0d26f1f139c8e939ff95136ca90577268f01499013b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/telemetry.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 48588, "scanner": "repobility-threat-engine", "fingerprint": "af3ed127e46bcde8c6127838246275c8441879068da1a6281b4ded7151979ca9", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n            pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|af3ed127e46bcde8c6127838246275c8441879068da1a6281b4ded7151979ca9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/config.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 48572, "scanner": "repobility-threat-engine", "fingerprint": "d11533ccb64a729068bebfd56a35d537b41bcca3b3b5a48f35fceec1470cb48a", "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 (e) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d11533ccb64a729068bebfd56a35d537b41bcca3b3b5a48f35fceec1470cb48a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/llms/langchain.ts"}, "region": {"startLine": 130}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 48571, "scanner": "repobility-threat-engine", "fingerprint": "8b6f1f2a17283ff53ff2ea9275ff256eaa62d6ee18c10da2012316deb4fcb97a", "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 (error) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8b6f1f2a17283ff53ff2ea9275ff256eaa62d6ee18c10da2012316deb4fcb97a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/client/telemetry.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 48570, "scanner": "repobility-threat-engine", "fingerprint": "98646db518620b0d1ac6529141921c3f55be24e92d4d1ea838ad937816d80671", "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|98646db518620b0d1ac6529141921c3f55be24e92d4d1ea838ad937816d80671"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/telemetry-sender.cjs"}, "region": {"startLine": 129}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 6702, "scanner": "repobility-journey-contract", "fingerprint": "4c8eac69114281132b68fe6a6579e7ca24b4c83b3ff8703aee126c3c0ea3ad51", "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/auth", "correlation_key": "fp|4c8eac69114281132b68fe6a6579e7ca24b4c83b3ff8703aee126c3c0ea3ad51", "backend_endpoint_count": 3}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/middleware.ts"}, "region": {"startLine": 7}}}]}, {"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 /auth/refresh/route."}, "properties": {"repobilityId": 6701, "scanner": "repobility-access-control", "fingerprint": "140589270cddd6c30031776d6864736a69e006f3cfac0f2477ad95986464176e", "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": "/auth/refresh/route", "method": "DELETE", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|57|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/app/api/auth/refresh/route.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: PUT /auth/refresh/route."}, "properties": {"repobilityId": 6700, "scanner": "repobility-access-control", "fingerprint": "129d8e6db6364ed7753e89738a3a4d68739491a874cb99d386144afcfca81573", "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": "/auth/refresh/route", "method": "PUT", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|42|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/app/api/auth/refresh/route.ts"}, "region": {"startLine": 42}}}]}, {"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 /auth/refresh/route."}, "properties": {"repobilityId": 6699, "scanner": "repobility-access-control", "fingerprint": "6b3a1ae04a9164eaebfa587f22f4e548ae14dfeda23e75d069631d02fb8cc4e2", "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": "/auth/refresh/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|15|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/app/api/auth/refresh/route.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 6698, "scanner": "repobility-access-control", "fingerprint": "b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 3, "correlation_key": "fp|b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "auth_visible_percent": 0.0}}}, {"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": 6697, "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": "DKR003", "level": "warning", "message": {"text": "Compose service `openmemory-ui` image uses the latest tag"}, "properties": {"repobilityId": 6687, "scanner": "repobility-docker", "fingerprint": "7436f2a659b64234ba02740cec7976ac11f5ecfd84d2893d994cb98f695c01c6", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "mem0/openmemory-ui:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|7436f2a659b64234ba02740cec7976ac11f5ecfd84d2893d994cb98f695c01c6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 23}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `openmemory-mcp` image has no explicit tag"}, "properties": {"repobilityId": 6684, "scanner": "repobility-docker", "fingerprint": "b861d61ae6bb20179f9532abeb4d9b8bcff5c69c9c9e2ec34c6a7c48a6347d76", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "mem0/openmemory-mcp", "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|b861d61ae6bb20179f9532abeb4d9b8bcff5c69c9c9e2ec34c6a7c48a6347d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `mem0_store` image has no explicit tag"}, "properties": {"repobilityId": 6681, "scanner": "repobility-docker", "fingerprint": "a836a255cac67621c7ab04c1865a2758aa0b9a502ecd6e832ff6d3550284989c", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "qdrant/qdrant", "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|a836a255cac67621c7ab04c1865a2758aa0b9a502ecd6e832ff6d3550284989c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6676, "scanner": "repobility-docker", "fingerprint": "f43b50eb3b030e9734df128241c06c36ebc8e41dac55feccc87e3dd566d823af", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|f43b50eb3b030e9734df128241c06c36ebc8e41dac55feccc87e3dd566d823af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/Dockerfile"}, "region": {"startLine": 29}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6674, "scanner": "repobility-docker", "fingerprint": "b3b49fae481da19e01054ad22f542a8d95497ca7d7a24de57723b1188493114c", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|b3b49fae481da19e01054ad22f542a8d95497ca7d7a24de57723b1188493114c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/Dockerfile"}, "region": {"startLine": 16}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6673, "scanner": "repobility-docker", "fingerprint": "a0e0d81fd294b8140a2a865f0db26843bd29a158cc7bb32392a79fcf9ca585a4", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|a0e0d81fd294b8140a2a865f0db26843bd29a158cc7bb32392a79fcf9ca585a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/Dockerfile"}, "region": {"startLine": 6}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6672, "scanner": "repobility-docker", "fingerprint": "86aa20b924d5226dc1e5fe210482934e3d82828b77c13cb3621d080ca2065f73", "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": "python:3.12-slim", "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|86aa20b924d5226dc1e5fe210482934e3d82828b77c13cb3621d080ca2065f73"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6670, "scanner": "repobility-docker", "fingerprint": "c9914d0e294773007dff6a1beb31b039143b4e578dcb747a0367223bf4d81763", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|c9914d0e294773007dff6a1beb31b039143b4e578dcb747a0367223bf4d81763"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/Dockerfile"}, "region": {"startLine": 30}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6668, "scanner": "repobility-docker", "fingerprint": "ea4c8c7dbd030c6571f79084b345b172f76e0819a31291d3553ead1b10369998", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|ea4c8c7dbd030c6571f79084b345b172f76e0819a31291d3553ead1b10369998"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/Dockerfile"}, "region": {"startLine": 19}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Dockerfile base image has no explicit tag"}, "properties": {"repobilityId": 6667, "scanner": "repobility-docker", "fingerprint": "c3ddf06426516ad0f97b2980f24f770eedde441d5c87d6107c1edc6b9835e6f0", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Image reference has no tag or digest.", "evidence": {"image": "base", "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|c3ddf06426516ad0f97b2980f24f770eedde441d5c87d6107c1edc6b9835e6f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/Dockerfile"}, "region": {"startLine": 13}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6666, "scanner": "repobility-docker", "fingerprint": "e97401909ee9cdea8d38ac1d4010fcdbc9a1d38aaa7c08c135789d557842d773", "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": "python:3.12-slim", "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|e97401909ee9cdea8d38ac1d4010fcdbc9a1d38aaa7c08c135789d557842d773"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6663, "scanner": "repobility-docker", "fingerprint": "5e7a63a5f9170272bd1e04748fcc2248de57d8da3d2dbc94bfc10ca54d5b61d0", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|5e7a63a5f9170272bd1e04748fcc2248de57d8da3d2dbc94bfc10ca54d5b61d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/whatsapp_bot/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6660, "scanner": "repobility-docker", "fingerprint": "30ca5e44922f22efbbce160270e2c0de29fbc06b9bdf939d90640f4acdcd3fac", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|30ca5e44922f22efbbce160270e2c0de29fbc06b9bdf939d90640f4acdcd3fac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/telegram_bot/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6657, "scanner": "repobility-docker", "fingerprint": "ebba946b0f9dd826e89b5eefbe13eda89e8b7f1da9234b360e076ce2228097af", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|ebba946b0f9dd826e89b5eefbe13eda89e8b7f1da9234b360e076ce2228097af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/slack_bot/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6654, "scanner": "repobility-docker", "fingerprint": "9bf21302634fcda7de5ab6afbf8fcff58ea087959233da8f16262a844fad3328", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|9bf21302634fcda7de5ab6afbf8fcff58ea087959233da8f16262a844fad3328"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/rest-api/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6652, "scanner": "repobility-docker", "fingerprint": "219c747b186945719c4fef672a5721abdbcc4974a33df66c409c8c7e9aa45268", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|219c747b186945719c4fef672a5721abdbcc4974a33df66c409c8c7e9aa45268"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_slack/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6649, "scanner": "repobility-docker", "fingerprint": "9590287d5598b8455fe1b53d128230e491e8f538bdc0b84bcf0911a524702cea", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|9590287d5598b8455fe1b53d128230e491e8f538bdc0b84bcf0911a524702cea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_discord/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6646, "scanner": "repobility-docker", "fingerprint": "99f26115c452936f83c7b6a6201c5bf1ef8c36fe31605da43ff41a395cfdd9b3", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|99f26115c452936f83c7b6a6201c5bf1ef8c36fe31605da43ff41a395cfdd9b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/ec_app/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6643, "scanner": "repobility-docker", "fingerprint": "d90a6633c11c2ca9c27317becd3f41ed26ecc190a1ae260c99fd90ecba984a20", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|d90a6633c11c2ca9c27317becd3f41ed26ecc190a1ae260c99fd90ecba984a20"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/discord_bot/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6640, "scanner": "repobility-docker", "fingerprint": "9d0647be8b247fc37979fbca29666479887e7507339173882e70d10c565cfab7", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11", "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|9d0647be8b247fc37979fbca29666479887e7507339173882e70d10c565cfab7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/api_server/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 6637, "scanner": "repobility-docker", "fingerprint": "c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Dockerfile exists but repository root has no .dockerignore.", "evidence": {"rule_id": "DKR007", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 6636, "scanner": "repobility-docker", "fingerprint": "063ef6f353f71c08f02365c3042ee65c3912054635adf804b36fbd963c4e3c34", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.11-slim", "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|063ef6f353f71c08f02365c3042ee65c3912054635adf804b36fbd963c4e3c34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/deployment/fly.io/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC017", "level": "warning", "message": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely long inputs to burn through your API credits (a single 128K-token request to GPT-4 costs ~$4, and automated attacks can drain budgets in minutes). (2) Context stuffing \u2014 oversized inputs can push your system prompt out of the context window, effectively disab"}, "properties": {"repobilityId": 6631, "scanner": "repobility-threat-engine", "fingerprint": "cb9d23991b328fcf6cb91a7de4d00c103c28e12f33f4442cd14b469188f84e54", "category": "llm_injection", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "This file sends user input to an LLM with no visible length check or rate limit. Risks: (1) cost abuse \u2014 automated long inputs drain API budget ($4/request at 128K tokens on GPT-4), (2) context stuffing \u2014 oversized input pushes system prompt out of context window, disabling safety rules. Add input length validation before the API call.", "evidence": {"reason": "This file sends user input to an LLM with no visible length check or rate limit. Risks: (1) cost abuse \u2014 automated long inputs drain API budget ($4/request at 128K tokens on GPT-4), (2) context stuffing \u2014 oversized input pushes system prompt out of context window, disabling safety rules. Add input length validation before the API call.", "rule_id": "SEC017", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "fp|cb9d23991b328fcf6cb91a7de4d00c103c28e12f33f4442cd14b469188f84e54"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/multillm_memory.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6620, "scanner": "repobility-threat-engine", "fingerprint": "877ab52be42c440e6a75443bd081f7778c50bbcf91dc12ebdf8a3e5de6920949", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|877ab52be42c440e6a75443bd081f7778c50bbcf91dc12ebdf8a3e5de6920949"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/databricks.py"}, "region": {"startLine": 822}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6619, "scanner": "repobility-threat-engine", "fingerprint": "1dd63cc88b547ddcab02da00344f604a7a9d931c145bcba160559a649ba5e900", "category": "error_handling", "severity": "medium", "confidence": 0.45, "triageState": "fixed", "verdict": "likely_fp", "isResolved": true, "reason": "Pattern matched with no mitigating context found | [R34-retro auto-suppress: setup/install wizard (placeholder values)]", "evidence": {"match": "except Exception:\n        pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1dd63cc88b547ddcab02da00344f604a7a9d931c145bcba160559a649ba5e900"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/setup.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 6618, "scanner": "repobility-threat-engine", "fingerprint": "36275e17bcecd915873657039eedb9a851b96d591033a0af75a8e2ec6f5e7fb6", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                    pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|36275e17bcecd915873657039eedb9a851b96d591033a0af75a8e2ec6f5e7fb6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/backup.py"}, "region": {"startLine": 443}}}]}, {"ruleId": "SEC001", "level": "warning", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 6613, "scanner": "repobility-threat-engine", "fingerprint": "42717b1d7399419bd06190445dc648b5c0b9612d4f30c7881463bb2cf4e2de70", "category": "credential_exposure", "severity": "medium", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Low entropy value (1.5 bits) \u2014 may be placeholder or common string", "evidence": {"match": "password=\",\n  \"", "reason": "Low entropy value (1.5 bits) \u2014 may be placeholder or common string", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "secret|openclaw/skill-loader.ts|3|password"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/skill-loader.ts"}, "region": {"startLine": 35}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 6606, "scanner": "repobility-agent-runtime", "fingerprint": "92ed4eb8a56d124e3a466076c583b3b5593da486505dae11d4289bf8e52217c7", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|92ed4eb8a56d124e3a466076c583b3b5593da486505dae11d4289bf8e52217c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/docs/deployment/fly_io.mdx"}, "region": {"startLine": 19}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 6605, "scanner": "repobility-agent-runtime", "fingerprint": "a21d8957579f42a8b2cce2b1ecaf15fe08b2512bbcd6b42c22cacc7d2c27deb1", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|a21d8957579f42a8b2cce2b1ecaf15fe08b2512bbcd6b42c22cacc7d2c27deb1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/integrations/hermes.mdx"}, "region": {"startLine": 39}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6604, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6cc7b41a92b6ff609ac2f3c502da0c91083261d08e009de520afcdeb311fcd59", "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": "embedchain/embedchain/loaders/local_text.py", "duplicate_line": 9, "correlation_key": "fp|6cc7b41a92b6ff609ac2f3c502da0c91083261d08e009de520afcdeb311fcd59"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/loaders/mdx.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6603, "scanner": "repobility-ai-code-hygiene", "fingerprint": "42384839f8fd15612ba1c56ec6b526f5ef57bda33c9f0785ca6795254cfb71d5", "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": "embedchain/embedchain/llm/mistralai.py", "duplicate_line": 22, "correlation_key": "fp|42384839f8fd15612ba1c56ec6b526f5ef57bda33c9f0785ca6795254cfb71d5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/together.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6602, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4428905d927e5d02549246a365ca51e7868597c03074b6759a7d65dcf3f3e8a6", "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": "embedchain/embedchain/llm/groq.py", "duplicate_line": 22, "correlation_key": "fp|4428905d927e5d02549246a365ca51e7868597c03074b6759a7d65dcf3f3e8a6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/together.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6601, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ee1ca5b6689beaef53150a1ae5f036350d450c6639ab7add53747c41f5fb80b8", "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": "embedchain/embedchain/llm/groq.py", "duplicate_line": 22, "correlation_key": "fp|ee1ca5b6689beaef53150a1ae5f036350d450c6639ab7add53747c41f5fb80b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/openai.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6600, "scanner": "repobility-ai-code-hygiene", "fingerprint": "336181e213347f10194892442974fbec6958804f778161687a89a98f74569b4a", "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": "embedchain/embedchain/llm/anthropic.py", "duplicate_line": 22, "correlation_key": "fp|336181e213347f10194892442974fbec6958804f778161687a89a98f74569b4a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/nvidia.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6599, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4eab6a85ab083d0ba0c44559f7e9e0fb6d54014daa826825ff5d638cd43292db", "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": "embedchain/embedchain/llm/groq.py", "duplicate_line": 22, "correlation_key": "fp|4eab6a85ab083d0ba0c44559f7e9e0fb6d54014daa826825ff5d638cd43292db"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/mistralai.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6598, "scanner": "repobility-ai-code-hygiene", "fingerprint": "151f804ea17e9409f51f0c5a897b4985a6b69eb71d9a3947765fc339d13e8094", "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": "embedchain/embedchain/llm/anthropic.py", "duplicate_line": 22, "correlation_key": "fp|151f804ea17e9409f51f0c5a897b4985a6b69eb71d9a3947765fc339d13e8094"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/llm/cohere.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6597, "scanner": "repobility-ai-code-hygiene", "fingerprint": "be41dbd6cad83dfb3666035c85c49a8346c89c8fb57d0079f20ab26c26378c73", "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": "embedchain/embedchain/deployment/fly.io/app.py", "duplicate_line": 6, "correlation_key": "fp|be41dbd6cad83dfb3666035c85c49a8346c89c8fb57d0079f20ab26c26378c73"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/deployment/render.com/app.py"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6596, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1f60b7fdd7518d9e32acb902876a479815dda8969f84aae3b9c810495875d7b5", "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": "embedchain/embedchain/bots/discord.py", "duplicate_line": 23, "correlation_key": "fp|1f60b7fdd7518d9e32acb902876a479815dda8969f84aae3b9c810495875d7b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/bots/whatsapp.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6594, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9773a93aa3c1f45d38af9c5b654689a241a27836765668dbb65ba565729b5d66", "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": "cli/python/src/mem0_cli/backend/base.py", "duplicate_line": 9, "correlation_key": "fp|9773a93aa3c1f45d38af9c5b654689a241a27836765668dbb65ba565729b5d66"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48674, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8c533ad7081c074274bc3458582f01050d30415674e0514e87f9a1c0e5e8ad1a", "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": "mem0/configs/llms/azure.py", "duplicate_line": 8, "correlation_key": "fp|8c533ad7081c074274bc3458582f01050d30415674e0514e87f9a1c0e5e8ad1a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/openai.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48673, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cbb86bb747bc35e81be48649e9b1e3f30aca7ade2fe01d6163d57d6cd039516d", "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": "mem0/configs/llms/anthropic.py", "duplicate_line": 34, "correlation_key": "fp|cbb86bb747bc35e81be48649e9b1e3f30aca7ade2fe01d6163d57d6cd039516d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/ollama.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48672, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1d8838debfc98cb54fbcaf89c4f27662d86341e2c39550226cabe0b558966844", "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": "mem0/configs/llms/deepseek.py", "duplicate_line": 7, "correlation_key": "fp|1d8838debfc98cb54fbcaf89c4f27662d86341e2c39550226cabe0b558966844"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/ollama.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48671, "scanner": "repobility-ai-code-hygiene", "fingerprint": "eb6db6b7be67c518ab0c936494e6b830a67740c58db323579d91b6358d4f4ed4", "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": "mem0/configs/llms/anthropic.py", "duplicate_line": 34, "correlation_key": "fp|eb6db6b7be67c518ab0c936494e6b830a67740c58db323579d91b6358d4f4ed4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/minimax.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48670, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f2dab6bebea7931139a87a64261b2f0ed194be2a504223a6a1093080ddcf046c", "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": "mem0/configs/llms/deepseek.py", "duplicate_line": 7, "correlation_key": "fp|f2dab6bebea7931139a87a64261b2f0ed194be2a504223a6a1093080ddcf046c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/minimax.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48669, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3be6cee2c6727e7f5e56be75a8d9f6280935d01e1e603b264751e95c099259a9", "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": "mem0/configs/llms/anthropic.py", "duplicate_line": 34, "correlation_key": "fp|3be6cee2c6727e7f5e56be75a8d9f6280935d01e1e603b264751e95c099259a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/lmstudio.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48668, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0ee806fae76fafe81414bad83aeb1f0a2bf74635425e47344a509ac8bd63e8b8", "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": "mem0/configs/llms/deepseek.py", "duplicate_line": 7, "correlation_key": "fp|0ee806fae76fafe81414bad83aeb1f0a2bf74635425e47344a509ac8bd63e8b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/lmstudio.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48667, "scanner": "repobility-ai-code-hygiene", "fingerprint": "536df8883b62b4fff10c63461b69b15ada2c263bfdb6d71e37d3506a0e513681", "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": "mem0/configs/llms/anthropic.py", "duplicate_line": 34, "correlation_key": "fp|536df8883b62b4fff10c63461b69b15ada2c263bfdb6d71e37d3506a0e513681"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/deepseek.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48666, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a30426ce802758b007a848b33dd7a5e6f661c601244be19b00d8cbf3d56a7af4", "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": "mem0-ts/src/oss/src/vector_stores/azure_ai_search.ts", "duplicate_line": 394, "correlation_key": "fp|a30426ce802758b007a848b33dd7a5e6f661c601244be19b00d8cbf3d56a7af4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/vector_stores/vectorize.ts"}, "region": {"startLine": 210}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48665, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2587079d464d2cecfe2051aa9e0f728d818f15b14e77145ce9efd51b3cc40937", "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": "mem0-ts/src/oss/src/vector_stores/redis.ts", "duplicate_line": 318, "correlation_key": "fp|2587079d464d2cecfe2051aa9e0f728d818f15b14e77145ce9efd51b3cc40937"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/vector_stores/supabase.ts"}, "region": {"startLine": 189}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48664, "scanner": "repobility-ai-code-hygiene", "fingerprint": "97ee8e39bd694376b1abbbf4fc8d6c064c98710f29ed3542c7ca36a7b95a63d0", "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": "mem0-ts/src/oss/src/vector_stores/azure_ai_search.ts", "duplicate_line": 394, "correlation_key": "fp|97ee8e39bd694376b1abbbf4fc8d6c064c98710f29ed3542c7ca36a7b95a63d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/vector_stores/qdrant.ts"}, "region": {"startLine": 298}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48663, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e874c74915526459ec77ad803e3e0fcca89e3e2b25936ad89b9ba6c8fc88d0d0", "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": "mem0-ts/src/client/telemetry.types.ts", "duplicate_line": 7, "correlation_key": "fp|e874c74915526459ec77ad803e3e0fcca89e3e2b25936ad89b9ba6c8fc88d0d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/utils/telemetry.types.ts"}, "region": {"startLine": 7}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48662, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9bd7923d2f0cdef25687a9f202d45a9f97961b352a9c1737883029ef8ee0d7f2", "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": "mem0-ts/src/client/telemetry.ts", "duplicate_line": 34, "correlation_key": "fp|9bd7923d2f0cdef25687a9f202d45a9f97961b352a9c1737883029ef8ee0d7f2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/utils/telemetry.ts"}, "region": {"startLine": 45}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48661, "scanner": "repobility-ai-code-hygiene", "fingerprint": "42d6a8595ce83df3f70b1fa527902d4fda90e11be70f3ad62a9c482efbc5b5e7", "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": "mem0-ts/src/oss/src/storage/MemoryHistoryManager.ts", "duplicate_line": 1, "correlation_key": "fp|42d6a8595ce83df3f70b1fa527902d4fda90e11be70f3ad62a9c482efbc5b5e7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/storage/SupabaseHistoryManager.ts"}, "region": {"startLine": 2}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48660, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6d6b57e98af8e7fc4a7ab5397ff1c505c5a7a8329e9f2bc1adbcfa7c8daff591", "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": "mem0-ts/src/oss/src/llms/azure.ts", "duplicate_line": 38, "correlation_key": "fp|6d6b57e98af8e7fc4a7ab5397ff1c505c5a7a8329e9f2bc1adbcfa7c8daff591"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/llms/openai_structured.ts"}, "region": {"startLine": 48}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48659, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e47b44b86195c3d08d893b0ee1c85e2e63c932a942f7083adb8771e326a14aa5", "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": "mem0-ts/src/oss/src/llms/openai.ts", "duplicate_line": 5, "correlation_key": "fp|e47b44b86195c3d08d893b0ee1c85e2e63c932a942f7083adb8771e326a14aa5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/llms/openai_structured.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48658, "scanner": "repobility-ai-code-hygiene", "fingerprint": "52c4318739e84c05de64adac8391f04037a78e185e6976b2f325a86d7a009432", "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": "mem0-ts/src/oss/src/llms/azure.ts", "duplicate_line": 25, "correlation_key": "fp|52c4318739e84c05de64adac8391f04037a78e185e6976b2f325a86d7a009432"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/llms/openai.ts"}, "region": {"startLine": 21}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48657, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8f8c7c2448461f657645438f01f10301054b5c503cf2aabe445806b76882ffc6", "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": "mem0-ts/src/oss/src/llms/azure.ts", "duplicate_line": 54, "correlation_key": "fp|8f8c7c2448461f657645438f01f10301054b5c503cf2aabe445806b76882ffc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/llms/ollama.ts"}, "region": {"startLine": 63}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48656, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e6c0c4d11ad2a5d81b3a641697b36dfe45f95def40c5c1b0787229743a0f9b27", "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": "mem0-ts/src/oss/src/embeddings/azure.ts", "duplicate_line": 23, "correlation_key": "fp|e6c0c4d11ad2a5d81b3a641697b36dfe45f95def40c5c1b0787229743a0f9b27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/embeddings/openai.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48655, "scanner": "repobility-ai-code-hygiene", "fingerprint": "92cdf2c26aac98cbc7afab4ac84eb53f11b3833fa47a5afd45e5a60fe10c3d41", "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": "mem0-plugin/scripts/capture_compact_summary.py", "duplicate_line": 121, "correlation_key": "fp|92cdf2c26aac98cbc7afab4ac84eb53f11b3833fa47a5afd45e5a60fe10c3d41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/on_pre_compact.py"}, "region": {"startLine": 207}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48654, "scanner": "repobility-ai-code-hygiene", "fingerprint": "13f19eca036262311f0cd8383009655fcef72de1a353e275573527b684c069be", "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": "mem0-plugin/scripts/auto_capture.py", "duplicate_line": 38, "correlation_key": "fp|13f19eca036262311f0cd8383009655fcef72de1a353e275573527b684c069be"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/on_pre_compact.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48653, "scanner": "repobility-ai-code-hygiene", "fingerprint": "94cd12f6a1395d9086ade6049b7a4efdf1d7481bfbae1152b88e93268bb7c51f", "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": "mem0-plugin/scripts/auto_capture.py", "duplicate_line": 102, "correlation_key": "fp|94cd12f6a1395d9086ade6049b7a4efdf1d7481bfbae1152b88e93268bb7c51f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/import_competing_tools.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48652, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3fb02b512a225c7e4e47426ed0d757d7a5bb3dd465eb35250ed831b766b77b7b", "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": "mem0-plugin/scripts/auto_import.py", "duplicate_line": 200, "correlation_key": "fp|3fb02b512a225c7e4e47426ed0d757d7a5bb3dd465eb35250ed831b766b77b7b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/import_competing_tools.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48651, "scanner": "repobility-ai-code-hygiene", "fingerprint": "489465bbfb12de9d81761c817cb7c9a0caed1d354d051cd5144cdb3388d221fb", "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": "mem0-plugin/scripts/auto_capture.py", "duplicate_line": 37, "correlation_key": "fp|489465bbfb12de9d81761c817cb7c9a0caed1d354d051cd5144cdb3388d221fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/capture_compact_summary.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48650, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8270b76b709501d1e3c76020d18b2d2cff5308ea3ef3eebeb01cd17c0147a471", "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": "mem0-plugin/scripts/auto_capture.py", "duplicate_line": 102, "correlation_key": "fp|8270b76b709501d1e3c76020d18b2d2cff5308ea3ef3eebeb01cd17c0147a471"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/auto_import.py"}, "region": {"startLine": 204}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48649, "scanner": "repobility-ai-code-hygiene", "fingerprint": "beaa823fe7ee598dbc364de3b3747db8def8e1fef3c44cd0fa7cc41de58c8022", "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": "evaluation/src/openai/predict.py", "duplicate_line": 56, "correlation_key": "fp|beaa823fe7ee598dbc364de3b3747db8def8e1fef3c44cd0fa7cc41de58c8022"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "evaluation/src/zep/search.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48648, "scanner": "repobility-ai-code-hygiene", "fingerprint": "49b31aff43a7d26ae73082b3583e10c30e1822a08f83a1399539235bec52688b", "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": "evaluation/prompts.py", "duplicate_line": 79, "correlation_key": "fp|49b31aff43a7d26ae73082b3583e10c30e1822a08f83a1399539235bec52688b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "evaluation/src/openai/predict.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 48647, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7f579d56d2d5ce1bdab38dc20768ce986619e5d8b2028529f9387769846e9a41", "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": "cli/python/src/mem0_cli/backend/base.py", "duplicate_line": 9, "correlation_key": "fp|7f579d56d2d5ce1bdab38dc20768ce986619e5d8b2028529f9387769846e9a41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `_build_filters` 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: elif=1, else=1, for=1, if=7, nested_bonus=1."}, "properties": {"repobilityId": 48586, "scanner": "repobility-threat-engine", "fingerprint": "e4e5be9863f99a362317dd0e2ad3143549e7e314c398081701d689cf39b0f4a5", "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": "_build_filters", "breakdown": {"if": 7, "for": 1, "elif": 1, "else": 1, "nested_bonus": 1}, "complexity": 11, "correlation_key": "fp|e4e5be9863f99a362317dd0e2ad3143549e7e314c398081701d689cf39b0f4a5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `add` 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: elif=1, if=10."}, "properties": {"repobilityId": 48585, "scanner": "repobility-threat-engine", "fingerprint": "208c52ba334d95ef9e6ab1d33a495b89d1ff5a3ef551431bcc49aaa6e83765ac", "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": "add", "breakdown": {"if": 10, "elif": 1}, "complexity": 11, "correlation_key": "fp|208c52ba334d95ef9e6ab1d33a495b89d1ff5a3ef551431bcc49aaa6e83765ac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `_request` 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: elif=1, except=1, if=6, nested_bonus=1, or=1, ternary=1."}, "properties": {"repobilityId": 48584, "scanner": "repobility-threat-engine", "fingerprint": "bd02884f57731be2c42a5d252dcc1eb50eff0c18434b9119bd01b9c7784162c5", "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": "_request", "breakdown": {"if": 6, "or": 1, "elif": 1, "except": 1, "ternary": 1, "nested_bonus": 1}, "complexity": 11, "correlation_key": "fp|bd02884f57731be2c42a5d252dcc1eb50eff0c18434b9119bd01b9c7784162c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6696, "scanner": "repobility-docker", "fingerprint": "85f6cfdc7cdba349e250f85820fd958f433de1c7df1536b6e90f532d9afa5df1", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "mem0-dashboard", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|85f6cfdc7cdba349e250f85820fd958f433de1c7df1536b6e90f532d9afa5df1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 51}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6695, "scanner": "repobility-docker", "fingerprint": "95f8a0f779d3d01a2b34f9ffdf38f28032d582a84899a26e3b35306e7e79b523", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "mem0-dashboard", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|95f8a0f779d3d01a2b34f9ffdf38f28032d582a84899a26e3b35306e7e79b523"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 51}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6693, "scanner": "repobility-docker", "fingerprint": "269ce89c20466ad9c1a33e28fdead8801a46afd329ab33626afde1437bca342b", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "postgres", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|269ce89c20466ad9c1a33e28fdead8801a46afd329ab33626afde1437bca342b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 31}}}]}, {"ruleId": "DKC012", "level": "note", "message": {"text": "Compose service performs heavy setup work on every startup"}, "properties": {"repobilityId": 6692, "scanner": "repobility-docker", "fingerprint": "6be0c3ebc41c34628772a203170082ef5b52a38a5051d9a21a70d97488e6fb9f", "category": "docker", "severity": "low", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Service command or entrypoint contains migration/static setup work.", "evidence": {"rule_id": "DKC012", "scanner": "repobility-docker", "service": "mem0", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/compose/how-tos/environment-variables/best-practices/"], "correlation_key": "fp|6be0c3ebc41c34628772a203170082ef5b52a38a5051d9a21a70d97488e6fb9f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6691, "scanner": "repobility-docker", "fingerprint": "3d828328559ab0f04f8a7fff339b2a3d5caba6ee5e718a5b00fc3218cccbe6ea", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "mem0", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|3d828328559ab0f04f8a7fff339b2a3d5caba6ee5e718a5b00fc3218cccbe6ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6690, "scanner": "repobility-docker", "fingerprint": "bcf349fb6bb8de9536d078c2a5146b77b228d474caaa0366bc9901d9e6a34ba4", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "mem0", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|bcf349fb6bb8de9536d078c2a5146b77b228d474caaa0366bc9901d9e6a34ba4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6689, "scanner": "repobility-docker", "fingerprint": "068f2563daeff422b1c43bc828713359dac6b7d7ff85a766ac128c0dbf32628b", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "openmemory-ui", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|068f2563daeff422b1c43bc828713359dac6b7d7ff85a766ac128c0dbf32628b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 23}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6688, "scanner": "repobility-docker", "fingerprint": "23f483cc1c7230092f9ab19470618ccb77a2c36e0786060fbba4ad91b50777aa", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "openmemory-ui", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|23f483cc1c7230092f9ab19470618ccb77a2c36e0786060fbba4ad91b50777aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 23}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6686, "scanner": "repobility-docker", "fingerprint": "b257957a12698ef6e9a86785b3df7698f420c0ee170042ab75e5dff66b0ff320", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "openmemory-mcp", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|b257957a12698ef6e9a86785b3df7698f420c0ee170042ab75e5dff66b0ff320"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6685, "scanner": "repobility-docker", "fingerprint": "1dcb3769fcb6e99c6114d056476906bff60708d4afe03cc319445cb143772d92", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "openmemory-mcp", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|1dcb3769fcb6e99c6114d056476906bff60708d4afe03cc319445cb143772d92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6683, "scanner": "repobility-docker", "fingerprint": "43337f6fcc0912afbab5520196af9cbd89c798f4795fd9a38d569b2579d39acd", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "mem0_store", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|43337f6fcc0912afbab5520196af9cbd89c798f4795fd9a38d569b2579d39acd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6682, "scanner": "repobility-docker", "fingerprint": "1498573ece7397ea10b71f00faf9e93b81c33c31032c0224a1155cbf532717e0", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "mem0_store", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|1498573ece7397ea10b71f00faf9e93b81c33c31032c0224a1155cbf532717e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6680, "scanner": "repobility-docker", "fingerprint": "2872104534da1185630059730bc1b850b2fb003df94636f411b1638894865036", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|2872104534da1185630059730bc1b850b2fb003df94636f411b1638894865036"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/discord_bot/docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6679, "scanner": "repobility-docker", "fingerprint": "11ea2004c2fc9336adfe69b00e2f595cf305ac6145145924c1a15b7fb26436db", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|11ea2004c2fc9336adfe69b00e2f595cf305ac6145145924c1a15b7fb26436db"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/discord_bot/docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 6678, "scanner": "repobility-docker", "fingerprint": "a6bb93108cbbdcf656993764c04ee18b01c7432eaf38bfa4f985ca5a0bbe1629", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|a6bb93108cbbdcf656993764c04ee18b01c7432eaf38bfa4f985ca5a0bbe1629"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/api_server/docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 6677, "scanner": "repobility-docker", "fingerprint": "df11276d95e5c358d0f04652944a2271745f753f9c8cd756cf8b2c8077a1d96a", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|df11276d95e5c358d0f04652944a2271745f753f9c8cd756cf8b2c8077a1d96a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/api_server/docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6664, "scanner": "repobility-docker", "fingerprint": "06011c7ea33b43340b7f19a4a801d9298dc4954518df9120df4f931495964c52", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|06011c7ea33b43340b7f19a4a801d9298dc4954518df9120df4f931495964c52"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/Dockerfile"}, "region": {"startLine": 8}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6661, "scanner": "repobility-docker", "fingerprint": "7cf97bb14f33efc1f1c91a81704c1b6430a24538cf10e28e61d71e5844423b41", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|7cf97bb14f33efc1f1c91a81704c1b6430a24538cf10e28e61d71e5844423b41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/whatsapp_bot/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6658, "scanner": "repobility-docker", "fingerprint": "7d2e5cd434e638f69b5fb9143afbc31e8ba97859140ca5c80346cb1768d84a36", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|7d2e5cd434e638f69b5fb9143afbc31e8ba97859140ca5c80346cb1768d84a36"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/telegram_bot/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6655, "scanner": "repobility-docker", "fingerprint": "6be18f844f34973359640e0fd7f722ff29615efdc1225a02c43805cbc00498fe", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|6be18f844f34973359640e0fd7f722ff29615efdc1225a02c43805cbc00498fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/slack_bot/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6650, "scanner": "repobility-docker", "fingerprint": "95259c7958bf26d4136661af3113750efd01a30588b64382294aea9e80d66822", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|95259c7958bf26d4136661af3113750efd01a30588b64382294aea9e80d66822"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_slack/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6647, "scanner": "repobility-docker", "fingerprint": "3a69158dcf3f280f8c82d68bfa217e8e7d14274cbd7f883395d5f0abf4fc44f2", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|3a69158dcf3f280f8c82d68bfa217e8e7d14274cbd7f883395d5f0abf4fc44f2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_discord/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6644, "scanner": "repobility-docker", "fingerprint": "8a14e3841cb7d470121347b1f652f557f3e6de84335cf5895d54167727655c2c", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|8a14e3841cb7d470121347b1f652f557f3e6de84335cf5895d54167727655c2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/ec_app/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6641, "scanner": "repobility-docker", "fingerprint": "216576bd1a476f53cece665e80402e2e96f3e5d32f92b97ed5ae4ffbcda8e604", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|216576bd1a476f53cece665e80402e2e96f3e5d32f92b97ed5ae4ffbcda8e604"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/discord_bot/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6638, "scanner": "repobility-docker", "fingerprint": "08ec1f7419f74b8965e49fe8ff588e856583b0f2829b46a0e3ff60d81a976ca0", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|08ec1f7419f74b8965e49fe8ff588e856583b0f2829b46a0e3ff60d81a976ca0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/api_server/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 6634, "scanner": "repobility-docker", "fingerprint": "09031dfa2acfe245679a02c266c3f2e286cd4838aa80edf61f0a12f71df97444", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|09031dfa2acfe245679a02c266c3f2e286cd4838aa80edf61f0a12f71df97444"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/deployment/fly.io/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 6633, "scanner": "repobility-threat-engine", "fingerprint": "6878c4ced1ca1fec06e21e2c47bf1e6855de4adb82340b183b2026bedcc421e9", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = `", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|203|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/yt-assistant-chrome/src/options.js"}, "region": {"startLine": 203}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 6632, "scanner": "repobility-threat-engine", "fingerprint": "1176c27bdb2b18547dfedf73f3eb2b40808408af3db6bcdcaa5ec59c837456cd", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = `", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|227|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/yt-assistant-chrome/src/content.js"}, "region": {"startLine": 227}}}]}, {"ruleId": "SEC004", "level": "note", "message": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "properties": {"repobilityId": 6628, "scanner": "repobility-threat-engine", "fingerprint": "527fa164214d775e28004d5c01dae1e3e48824ebec2013c5fe5dd027996128af", "category": "injection", "severity": "low", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "f-string appears to interpolate SQL placeholders (?,?,? or %s) \u2014 values likely passed as params", "evidence": {"match": ".execute(f\"DELETE", "reason": "f-string appears to interpolate SQL placeholders (?,?,? or %s) \u2014 values likely passed as params", "rule_id": "SEC004", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "code|injection|token|393|sec004"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/azure_mysql.py"}, "region": {"startLine": 393}}}]}, {"ruleId": "SEC004", "level": "note", "message": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "properties": {"repobilityId": 6627, "scanner": "repobility-threat-engine", "fingerprint": "8d3156d47184065f18485bd209e1c016193ed47a7376c19bfc02ca4c387b6a38", "category": "injection", "severity": "low", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Placeholder variable defined nearby \u2014 likely parameterized query", "evidence": {"match": "insert_sql = f\"INSERT", "reason": "Placeholder variable defined nearby \u2014 likely parameterized query", "rule_id": "SEC004", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "code|injection|token|435|sec004"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/databricks.py"}, "region": {"startLine": 435}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6595, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7689dc3626c51658f595f0fa21f0262af5e121aa63d2d1870fa51d36697ba8a7", "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": "cli/python/src/mem0_cli/commands/entities.py", "duplicate_line": 114, "correlation_key": "fp|7689dc3626c51658f595f0fa21f0262af5e121aa63d2d1870fa51d36697ba8a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/commands/memory.py"}, "region": {"startLine": 556}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 6593, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7b371b715eae92f63a2835b8fb22ea210eafec46b00ef4a99acdad87acc92cfe", "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": "cli/node/src/commands/entities.ts", "duplicate_line": 113, "correlation_key": "fp|7b371b715eae92f63a2835b8fb22ea210eafec46b00ef4a99acdad87acc92cfe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/commands/memory.ts"}, "region": {"startLine": 523}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 6592, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d7022e69702ec407ccd0218cee486ee11bd7d30922199385b838930cd39e68c3", "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": "update", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|d7022e69702ec407ccd0218cee486ee11bd7d30922199385b838930cd39e68c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/tools/memory-update.ts"}, "region": {"startLine": 1}}}]}, {"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": 48638, "scanner": "repobility-threat-engine", "fingerprint": "8d15ddfe6e8ae10908e67f29f784cd0d4b9d6c9f8d90b9d0ed6aa28f689719f8", "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|8d15ddfe6e8ae10908e67f29f784cd0d4b9d6c9f8d90b9d0ed6aa28f689719f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/components/ui/chart.tsx"}, "region": {"startLine": 81}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 48637, "scanner": "repobility-threat-engine", "fingerprint": "bbcb733a3fba112627e4b7e830cefd1595cf5645df4ccaa9a211a5c5e0592cd4", "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": "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", "aggregated": true, "correlation_key": "fp|bbcb733a3fba112627e4b7e830cefd1595cf5645df4ccaa9a211a5c5e0592cd4", "aggregated_count": 6}}}, {"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": 48636, "scanner": "repobility-threat-engine", "fingerprint": "81d0e30a34c5022bd23ef56debf37ad824583265b7496ac945bd5751a5c3b16d", "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|81d0e30a34c5022bd23ef56debf37ad824583265b7496ac945bd5751a5c3b16d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/components/shared/categories.tsx"}, "region": {"startLine": 193}}}]}, {"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": 48635, "scanner": "repobility-threat-engine", "fingerprint": "407e9049bf639c1003927586b8d55752667d8614f8409304ade208fa8dc2687d", "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|407e9049bf639c1003927586b8d55752667d8614f8409304ade208fa8dc2687d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/app/apps/components/AppGrid.tsx"}, "region": {"startLine": 27}}}]}, {"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": 48634, "scanner": "repobility-threat-engine", "fingerprint": "78e558e27e1aa5060fb9cdeed03a41be576f1a5f8171d102abc4b07104f0da4d", "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|78e558e27e1aa5060fb9cdeed03a41be576f1a5f8171d102abc4b07104f0da4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/app/apps/[appId]/page.tsx"}, "region": {"startLine": 67}}}]}, {"ruleId": "SEC135", "level": "none", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 48633, "scanner": "repobility-threat-engine", "fingerprint": "6fa2e9ef1c1856e1ba7ae153052023beba4be6def90f2e547c9aea7606eafe65", "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": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|6fa2e9ef1c1856e1ba7ae153052023beba4be6def90f2e547c9aea7606eafe65"}}}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 48629, "scanner": "repobility-threat-engine", "fingerprint": "11797e3c8919a5a31dee98559e9b331b425b9b6e4f460168c6c56a1281e451c5", "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-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|11797e3c8919a5a31dee98559e9b331b425b9b6e4f460168c6c56a1281e451c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/llms/sarvam.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "SEC078", "level": "none", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 48628, "scanner": "repobility-threat-engine", "fingerprint": "960ca8c0117591db86d75c292b0e27e29c492abb18da3b0e51a6d6db8b9a06b5", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'timeout\\s*=' detected on same line", "evidence": {"match": "requests.post(", "reason": "Safe pattern 'timeout\\s*=' detected on same line", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|960ca8c0117591db86d75c292b0e27e29c492abb18da3b0e51a6d6db8b9a06b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/llms/sarvam.py"}, "region": {"startLine": 76}}}]}, {"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": 48627, "scanner": "repobility-threat-engine", "fingerprint": "14c3539a15607a8999ca7fec8cc6e99d9c2a256136ae540073ea09a241df34ac", "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|72|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/client/config.ts"}, "region": {"startLine": 72}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 48626, "scanner": "repobility-threat-engine", "fingerprint": "72868d73be2432154286c4455605b76057530dd020051f40b6c07b0c3574921f", "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": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|72868d73be2432154286c4455605b76057530dd020051f40b6c07b0c3574921f", "aggregated_count": 9}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 48625, "scanner": "repobility-threat-engine", "fingerprint": "d9b3cd8de71a56584569c1ffa7ca166f09859f11588200d543c1db9417db48d0", "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-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d9b3cd8de71a56584569c1ffa7ca166f09859f11588200d543c1db9417db48d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/embeddings/langchain.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 48624, "scanner": "repobility-threat-engine", "fingerprint": "e3bc5b2918ced65f5a39c591c2ba3531d5c2a6ad538f4405517a16f9d4123c8b", "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-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e3bc5b2918ced65f5a39c591c2ba3531d5c2a6ad538f4405517a16f9d4123c8b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/client/config.ts"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 48623, "scanner": "repobility-threat-engine", "fingerprint": "673fd00468953c3de2e53ad19d5ca9f1f6568de45254eb5cc9f664d05280eb13", "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-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|673fd00468953c3de2e53ad19d5ca9f1f6568de45254eb5cc9f664d05280eb13"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/jest.setup.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 48619, "scanner": "repobility-threat-engine", "fingerprint": "62ff231053d16ded91f5d63a99a8b7f9a8d879f1bee1b23442cfa6701d92f730", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|62ff231053d16ded91f5d63a99a8b7f9a8d879f1bee1b23442cfa6701d92f730", "aggregated_count": 2}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 48618, "scanner": "repobility-threat-engine", "fingerprint": "5b1960509ee8796be8cf94f932817631b50df315b29ddc43f4c0cd529419f182", "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|5b1960509ee8796be8cf94f932817631b50df315b29ddc43f4c0cd529419f182"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/config.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 48617, "scanner": "repobility-threat-engine", "fingerprint": "d2a759e2fbb1a8dc08102b6312424c30de39e84dc6e2d50d9f2a766b0d8e9ca3", "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|d2a759e2fbb1a8dc08102b6312424c30de39e84dc6e2d50d9f2a766b0d8e9ca3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/_project.sh"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 48616, "scanner": "repobility-threat-engine", "fingerprint": "d372b02890986d60c372a3dafb9e75ea44fc10fee9593569f9dc8acca6d25ecb", "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|d372b02890986d60c372a3dafb9e75ea44fc10fee9593569f9dc8acca6d25ecb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/_project.py"}, "region": {"startLine": 155}}}]}, {"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": 48613, "scanner": "repobility-threat-engine", "fingerprint": "d75ea3f381811822984b45608f4edee0d5d40eed9f70970ae5b35b6175d707a6", "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|d75ea3f381811822984b45608f4edee0d5d40eed9f70970ae5b35b6175d707a6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/vllm_example.py"}, "region": {"startLine": 6}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 48612, "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": 48611, "scanner": "repobility-threat-engine", "fingerprint": "6d1887aa8ec5c47b681fe2efe8c1a56cb9dfc06ebc3bed247c574905a57770f7", "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|6d1887aa8ec5c47b681fe2efe8c1a56cb9dfc06ebc3bed247c574905a57770f7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/auto_setup_categories.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 48610, "scanner": "repobility-threat-engine", "fingerprint": "cc6a2aaa956ca7e0fa3a2bebc3fd1fb9fec9fdb8bc376a38e1d1847bae461483", "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|cc6a2aaa956ca7e0fa3a2bebc3fd1fb9fec9fdb8bc376a38e1d1847bae461483"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/.opencode-plugin/cli.ts"}, "region": {"startLine": 203}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 48609, "scanner": "repobility-threat-engine", "fingerprint": "67466f44dcfb5ddfa1d0cbe585dc0736c2f55262144d8957c20d1e5b3fb6b0c8", "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|67466f44dcfb5ddfa1d0cbe585dc0736c2f55262144d8957c20d1e5b3fb6b0c8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/vllm_example.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 48608, "scanner": "repobility-threat-engine", "fingerprint": "3c1512ec1e531167a3aa928d567398e9cb8cbf7ff40fccf993810ebf40229e88", "category": "credential_exposure", "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": {"reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|3c1512ec1e531167a3aa928d567398e9cb8cbf7ff40fccf993810ebf40229e88"}}}, {"ruleId": "SEC020", "level": "none", "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": 48607, "scanner": "repobility-threat-engine", "fingerprint": "6a277c4f433b7cd44f1fbd76efae2253771f2f40186f5da99cb193770eadc148", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log line appears to mention secret metadata or a redacted value rather than printing the secret", "evidence": {"match": "print(api_key: <redacted>", "reason": "Log line appears to mention secret metadata or a redacted value rather than printing the secret", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|8|print api_key: redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/auto_setup_categories.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 48604, "scanner": "repobility-threat-engine", "fingerprint": "f2fc7f99584d420415f66f9159b994cce4ad89075c30646e48fd1636cca94a94", "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-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f2fc7f99584d420415f66f9159b994cce4ad89075c30646e48fd1636cca94a94"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/embeddings/ollama.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 48603, "scanner": "repobility-threat-engine", "fingerprint": "d3e9d7463762892e714c6f618d23398b9eb2e51f6df51953ec666f648d44a57b", "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-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d3e9d7463762892e714c6f618d23398b9eb2e51f6df51953ec666f648d44a57b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/healthcare_assistant_google_adk.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 48600, "scanner": "repobility-threat-engine", "fingerprint": "c59edcd8286991ab7caac4493f8f01b268fef2a5d218265ad20f6e2d1172fefb", "category": "injection", "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": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|c59edcd8286991ab7caac4493f8f01b268fef2a5d218265ad20f6e2d1172fefb"}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 31 more): Same pattern found in 31 additional files. Review if needed."}, "properties": {"repobilityId": 48596, "scanner": "repobility-threat-engine", "fingerprint": "785a9d8b5575ed128b1c6b814ce12a095307d8a866ec53112aa4851d54a340f5", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 31 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|785a9d8b5575ed128b1c6b814ce12a095307d8a866ec53112aa4851d54a340f5", "aggregated_count": 31}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 48595, "scanner": "repobility-threat-engine", "fingerprint": "0233c9f72b25f57fda9485ed1afc28c3728cbc41160c857bdbc3cbb6b16fff23", "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-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0233c9f72b25f57fda9485ed1afc28c3728cbc41160c857bdbc3cbb6b16fff23"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/vercel-ai-sdk-chat-app/src/types.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 48594, "scanner": "repobility-threat-engine", "fingerprint": "5fb96d4a63552a07b1f2b0b5b322f6c6d07c3de80032b6f550d2245f4b86d565", "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-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|5fb96d4a63552a07b1f2b0b5b322f6c6d07c3de80032b6f550d2245f4b86d565"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/multimodal-demo/src/types.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 48593, "scanner": "repobility-threat-engine", "fingerprint": "468cfb173749bb2b5c48f31e78ef115c8f3a183ce53c097704ab69a95fb980f5", "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-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|468cfb173749bb2b5c48f31e78ef115c8f3a183ce53c097704ab69a95fb980f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/mem0-demo/app/api/chat/route.ts"}, "region": {"startLine": 57}}}]}, {"ruleId": "ERR001", "level": "none", "message": {"text": "[ERR001] Silent Exception Swallowing (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 48591, "scanner": "repobility-threat-engine", "fingerprint": "8a4bd872da419130753367ef5a61efa729f221dd8f26dbedd7003551d50a5f41", "category": "error_handling", "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": "ERR001", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|8a4bd872da419130753367ef5a61efa729f221dd8f26dbedd7003551d50a5f41"}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 94 more): Same pattern found in 94 additional files. Review if needed."}, "properties": {"repobilityId": 48587, "scanner": "repobility-threat-engine", "fingerprint": "e1137807aba0b4112330bf640875473f36b4ede6c7dcb500405baf6bae86a009", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 94 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "_request", "breakdown": {"if": 6, "or": 1, "elif": 1, "except": 1, "ternary": 1, "nested_bonus": 1}, "aggregated": true, "complexity": 11, "correlation_key": "fp|e1137807aba0b4112330bf640875473f36b4ede6c7dcb500405baf6bae86a009", "aggregated_count": 94}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 48583, "scanner": "repobility-threat-engine", "fingerprint": "33f2c1bbdb2a934189c7b07831dbeb58d0f08919ea4ac841dc0b6d674da716c6", "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-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|33f2c1bbdb2a934189c7b07831dbeb58d0f08919ea4ac841dc0b6d674da716c6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/db.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 48582, "scanner": "repobility-threat-engine", "fingerprint": "8e7c330a363ca306d71674039e39ae8273a9e4a0e5f60b9157ec094f8ef31f3c", "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-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8e7c330a363ca306d71674039e39ae8273a9e4a0e5f60b9157ec094f8ef31f3c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 352}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 26 more): Same pattern found in 26 additional files. Review if needed."}, "properties": {"repobilityId": 48581, "scanner": "repobility-threat-engine", "fingerprint": "e6b965a932ba9d1b98018a7b9adf317d53d3c8e6cd2c854020a6cb63d293618f", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 26 additional occurrences found. The top occurrences remain visible as actionable findings.", "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", "aggregated": true, "correlation_key": "fp|e6b965a932ba9d1b98018a7b9adf317d53d3c8e6cd2c854020a6cb63d293618f", "aggregated_count": 26}}}, {"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": 48580, "scanner": "repobility-threat-engine", "fingerprint": "9a833f84816cfd26838733a03ccb3e7e480922f4c9a9fa8e00970e94ac86233d", "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|9a833f84816cfd26838733a03ccb3e7e480922f4c9a9fa8e00970e94ac86233d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/config.py"}, "region": {"startLine": 193}}}]}, {"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": 48579, "scanner": "repobility-threat-engine", "fingerprint": "8fa0c63e33fa9f1f23ca9c65253c3c3a13b25639b388548e765c687047517db0", "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|8fa0c63e33fa9f1f23ca9c65253c3c3a13b25639b388548e765c687047517db0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/commands/agent_mode_cmd.py"}, "region": {"startLine": 101}}}]}, {"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": 48578, "scanner": "repobility-threat-engine", "fingerprint": "98ce9d081bead41d22995dd1bde4c81bdf8a7c9edc080bb07fc62c81b52a61dd", "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|98ce9d081bead41d22995dd1bde4c81bdf8a7c9edc080bb07fc62c81b52a61dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 353}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 15 more): Same pattern found in 15 additional files. Review if needed."}, "properties": {"repobilityId": 48577, "scanner": "repobility-threat-engine", "fingerprint": "b57b69684d0f06f4b1cbb892f2a669d8cd9f6f77f1b48aa75aeeac9e602c2ec0", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 15 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|b57b69684d0f06f4b1cbb892f2a669d8cd9f6f77f1b48aa75aeeac9e602c2ec0", "aggregated_count": 15}}}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 48573, "scanner": "repobility-threat-engine", "fingerprint": "e7174d71aa23c14419f9144792a6ba116afcec3004f64b82de4dbf54fc9e1921", "category": "error_handling", "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": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|e7174d71aa23c14419f9144792a6ba116afcec3004f64b82de4dbf54fc9e1921"}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 17 more): Same pattern found in 17 additional files. Review if needed."}, "properties": {"repobilityId": 48569, "scanner": "repobility-threat-engine", "fingerprint": "9a4dded8559d76bfe00bc64cc7f3b84ea0bd9b1742965a6b760ddbb7eebe1048", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 17 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 17 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|9a4dded8559d76bfe00bc64cc7f3b84ea0bd9b1742965a6b760ddbb7eebe1048"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 15 more): Same pattern found in 15 additional files. Review if needed."}, "properties": {"repobilityId": 48565, "scanner": "repobility-threat-engine", "fingerprint": "55dd9a4fe1ed00e875ab40ad2e079768353c2831badd419600f381c596cc9071", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 15 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 15 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|55dd9a4fe1ed00e875ab40ad2e079768353c2831badd419600f381c596cc9071"}}}, {"ruleId": "SEC002", "level": "none", "message": {"text": "[SEC002] Hardcoded API Key (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 48558, "scanner": "repobility-threat-engine", "fingerprint": "e265b971df1ce43b8e3eed2db11d3071ec3485f4c39d96e811cf78fd0c54e778", "category": "credential_exposure", "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": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|e265b971df1ce43b8e3eed2db11d3071ec3485f4c39d96e811cf78fd0c54e778"}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 48554, "scanner": "repobility-threat-engine", "fingerprint": "a9290e9308832db1b29e6bdd660fce33b2dfaab9a936cf53d01913e8456ee998", "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": "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|a9290e9308832db1b29e6bdd660fce33b2dfaab9a936cf53d01913e8456ee998", "aggregated_count": 4}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 48553, "scanner": "repobility-threat-engine", "fingerprint": "c50f91883fb1ba1805b827c82fe43ac9ba642fdb69324268947eab7a666b3c0f", "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|c50f91883fb1ba1805b827c82fe43ac9ba642fdb69324268947eab7a666b3c0f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-ts/src/oss/src/embeddings/google.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 48552, "scanner": "repobility-threat-engine", "fingerprint": "784b7d5be22135a437a50d7326adc154dd5a5d182059250c71360905192aa1b6", "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|784b7d5be22135a437a50d7326adc154dd5a5d182059250c71360905192aa1b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/.opencode-plugin/cli.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 48551, "scanner": "repobility-threat-engine", "fingerprint": "ce7c7ad1d5da29d8cdc726ad8a5c0fe92da3966743910ca57862a1d5d00c4498", "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|ce7c7ad1d5da29d8cdc726ad8a5c0fe92da3966743910ca57862a1d5d00c4498"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/plugin-sync.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 48550, "scanner": "repobility-threat-engine", "fingerprint": "8088f25fb183552fd55e002784f1a143c5d25e35d7d5f3aed13447619b902252", "category": "xss", "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": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|8088f25fb183552fd55e002784f1a143c5d25e35d7d5f3aed13447619b902252"}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 52 more): Same pattern found in 52 additional files. Review if needed."}, "properties": {"repobilityId": 48546, "scanner": "repobility-threat-engine", "fingerprint": "49740e3cda1ad7d33d39ae640807944dff49a7f056df62abdcd905c65a4eadfa", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 52 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|49740e3cda1ad7d33d39ae640807944dff49a7f056df62abdcd905c65a4eadfa", "aggregated_count": 52}}}, {"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": 48545, "scanner": "repobility-threat-engine", "fingerprint": "cd82c5993284f4ddbef4d3f89d028a13bcaf00b306359168ba3d1edff646b059", "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|cd82c5993284f4ddbef4d3f89d028a13bcaf00b306359168ba3d1edff646b059"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/commands/agent-rush.ts"}, "region": {"startLine": 69}}}]}, {"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": 48544, "scanner": "repobility-threat-engine", "fingerprint": "aa8a0ed6619cfe2a8aacd1af3dc01398d5007790abe23d87cae0478958f5424e", "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|aa8a0ed6619cfe2a8aacd1af3dc01398d5007790abe23d87cae0478958f5424e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/commands/agent-mode.ts"}, "region": {"startLine": 141}}}]}, {"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": 48543, "scanner": "repobility-threat-engine", "fingerprint": "8e1d5f06fbfdcf35377f1b07f634f81a50835ae3755fb4956b2e513c0fd27ee1", "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|8e1d5f06fbfdcf35377f1b07f634f81a50835ae3755fb4956b2e513c0fd27ee1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/branding.ts"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 6625, "scanner": "repobility-threat-engine", "fingerprint": "d438fc2d14c63660d615290dceab2a5421ef5f4c5a8a429a3564895c539fbbc1", "category": "credential_exposure", "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": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d438fc2d14c63660d615290dceab2a5421ef5f4c5a8a429a3564895c539fbbc1"}}}, {"ruleId": "SEC020", "level": "none", "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": 6624, "scanner": "repobility-threat-engine", "fingerprint": "58f88fabf651ccbd2f130f5793ca523f8ca987558ce80200481aec453684d6e5", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "The token term appears to refer to NLP/model token counts, a tokenizer, or blockchain token metadata rather than credential material", "evidence": {"match": "print(\"  -> 5x faster time-per-output-token\")", "reason": "The token term appears to refer to NLP/model token counts, a tokenizer, or blockchain token metadata rather than credential material", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|12|print - 5x faster time-per-output-token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/vllm_example.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "SEC020", "level": "none", "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": 6623, "scanner": "repobility-threat-engine", "fingerprint": "36f2bea0464004c4a1cb9ffb8904538612a851c7f93ef01aff19b56dbee6736a", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "logger.debug(\"Adding %s: %s\", restrict.name, restrict.allow_tokens[0])", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|26|logger.debug adding s: s restrict.name restrict.allow_tokens 0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/vertex_ai_vector_search.py"}, "region": {"startLine": 264}}}]}, {"ruleId": "SEC020", "level": "none", "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": 6622, "scanner": "repobility-threat-engine", "fingerprint": "5da2b74cbd426cdd28eec64e4f85566c3857f7f13e7ab4bb55a98f053ba5f86f", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log line appears to mention secret metadata or a redacted value rather than printing the secret", "evidence": {"match": "print(\"Error: MEM0_API_KEY not set.\", file=sys.stderr)", "reason": "Log line appears to mention secret metadata or a redacted value rather than printing the secret", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|1|print error: mem0_api_key not set. file sys.stderr"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/scripts/configure.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "ERR001", "level": "none", "message": {"text": "[ERR001] Silent Exception Swallowing (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 6621, "scanner": "repobility-threat-engine", "fingerprint": "c21ddaa747070b8f43ab9ea8338b91ebfc00884512370f910cd6f33605573e80", "category": "error_handling", "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": {"reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|c21ddaa747070b8f43ab9ea8338b91ebfc00884512370f910cd6f33605573e80"}}}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 6617, "scanner": "repobility-threat-engine", "fingerprint": "f78b05f3525efdc18a5d1983ba1263e47eaa8a772967c623a7aa23730bd5139a", "category": "crypto", "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": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|f78b05f3525efdc18a5d1983ba1263e47eaa8a772967c623a7aa23730bd5139a"}}}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 6616, "scanner": "repobility-threat-engine", "fingerprint": "19064d5dfda5873fa4a9ece52a47fef81db1f9ff6b89ea71c61741da66027d0b", "category": "crypto", "severity": "info", "confidence": 0.15, "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.15, "correlation_key": "code|crypto|token|171|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/multimodal-demo/useChat.ts"}, "region": {"startLine": 171}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 6615, "scanner": "repobility-threat-engine", "fingerprint": "76fb124a3aaf7a2f4232daed346bb9cafd57e2c9051eba01314ddc8945d31c30", "category": "crypto", "severity": "info", "confidence": 0.15, "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.15, "correlation_key": "code|crypto|token|655|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/components/ui/sidebar.tsx"}, "region": {"startLine": 655}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 6614, "scanner": "repobility-threat-engine", "fingerprint": "d2ac851e0a01e5a5c2520b91d498a75417d9aefb5665b2552d8ba6bd1b6293d4", "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|17|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "vercel-ai-sdk/src/mem0-generic-language-model.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "SEC002", "level": "none", "message": {"text": "[SEC002] Hardcoded API Key (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 6610, "scanner": "repobility-threat-engine", "fingerprint": "18d4ce13a465f19bcf45fffa40e653d480b9ee7d44f2ada2d65baedce524e6c4", "category": "credential_exposure", "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": {"reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|18d4ce13a465f19bcf45fffa40e653d480b9ee7d44f2ada2d65baedce524e6c4"}}}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48798, "scanner": "repobility-supply-chain", "fingerprint": "a2c0cc1073c520ab0f0a09f98f8f9737b52d581e44ca8885c716ac068101d1f7", "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|a2c0cc1073c520ab0f0a09f98f8f9737b52d581e44ca8885c716ac068101d1f7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ts-sdk-cd.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48797, "scanner": "repobility-supply-chain", "fingerprint": "f3c85f378ead9b62fa72bd5f01fe6bf4f70179d74a8d3eb356aead84453dc1ae", "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|f3c85f378ead9b62fa72bd5f01fe6bf4f70179d74a8d3eb356aead84453dc1ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ts-sdk-cd.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pypa/gh-action-pypi-publish` pinned to mutable ref `@release/v1`: `uses: pypa/gh-action-pypi-publish@release/v1` 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": 48796, "scanner": "repobility-supply-chain", "fingerprint": "ad73fd966f3466e1fd3fc64e042e2168165eebf89d655fd291f00001b528426a", "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|ad73fd966f3466e1fd3fc64e042e2168165eebf89d655fd291f00001b528426a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-python-cd.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v5`: `uses: actions/setup-python@v5` 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": 48795, "scanner": "repobility-supply-chain", "fingerprint": "408775d2d65fe4d7c05cae36dddbffa58560d6d62c724cdae236956c9754ebbc", "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|408775d2d65fe4d7c05cae36dddbffa58560d6d62c724cdae236956c9754ebbc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-python-cd.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48794, "scanner": "repobility-supply-chain", "fingerprint": "e3485daaa34d137cf548472625fd590eda2cca6f1fafd625518b18745fe671e8", "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|e3485daaa34d137cf548472625fd590eda2cca6f1fafd625518b18745fe671e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-python-cd.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pypa/gh-action-pypi-publish` pinned to mutable ref `@release/v1`: `uses: pypa/gh-action-pypi-publish@release/v1` 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": 48793, "scanner": "repobility-supply-chain", "fingerprint": "498d2b5c25115a22f2736e28b8cefdbb12ea065fa7d9f23dd7f3fed2eb0a7a4d", "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|498d2b5c25115a22f2736e28b8cefdbb12ea065fa7d9f23dd7f3fed2eb0a7a4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cd.yml"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v2`: `uses: actions/setup-python@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": 48792, "scanner": "repobility-supply-chain", "fingerprint": "8373f04c5649d8cac7770417dadb03ddca4afc9f650ff08b488f555994982474", "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|8373f04c5649d8cac7770417dadb03ddca4afc9f650ff08b488f555994982474"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cd.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v2`: `uses: actions/checkout@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": 48791, "scanner": "repobility-supply-chain", "fingerprint": "59d73ea4e2abe3724a9499a750339e1987bf435f858f191679b4007db45881cc", "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|59d73ea4e2abe3724a9499a750339e1987bf435f858f191679b4007db45881cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cd.yml"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48790, "scanner": "repobility-supply-chain", "fingerprint": "7a222eb1bee458b630fdfdd3485a1a5e5ba485e6dd0ebfb1892fcd8f2e3b6771", "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|7a222eb1bee458b630fdfdd3485a1a5e5ba485e6dd0ebfb1892fcd8f2e3b6771"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docs-llms-txt-check.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48789, "scanner": "repobility-supply-chain", "fingerprint": "e4c5bf48bc52fd17c31aad3ee6b72a9b9a582ee71b7c2ddd8b1a63d49f6a7420", "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|e4c5bf48bc52fd17c31aad3ee6b72a9b9a582ee71b7c2ddd8b1a63d49f6a7420"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-cd.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48788, "scanner": "repobility-supply-chain", "fingerprint": "c23a081dc5aa210e22bf69463f4a2bd75fa1d36543705aa8b6f1a8d1c79ec317", "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|c23a081dc5aa210e22bf69463f4a2bd75fa1d36543705aa8b6f1a8d1c79ec317"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-cd.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48787, "scanner": "repobility-supply-chain", "fingerprint": "4c4ce1ba2fa0a19a23be62971b97a3f94fbfb0c35069bad7b6131236c300eb46", "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|4c4ce1ba2fa0a19a23be62971b97a3f94fbfb0c35069bad7b6131236c300eb46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-cd.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48786, "scanner": "repobility-supply-chain", "fingerprint": "96447eaea602accab3f6e8979b0e590efb64cce6ab2b2a6eaebb439fbfbb582d", "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|96447eaea602accab3f6e8979b0e590efb64cce6ab2b2a6eaebb439fbfbb582d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48785, "scanner": "repobility-supply-chain", "fingerprint": "d3d0637957950aaade2d0c2d8d2666a986560abfdef2f5df2665a283639dfbe6", "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|d3d0637957950aaade2d0c2d8d2666a986560abfdef2f5df2665a283639dfbe6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 79}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48784, "scanner": "repobility-supply-chain", "fingerprint": "023907119b09f6bd69f85478fb259e3f013d8eee3e68f5bac692d59342530cde", "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|023907119b09f6bd69f85478fb259e3f013d8eee3e68f5bac692d59342530cde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48783, "scanner": "repobility-supply-chain", "fingerprint": "2dbf36fbf473f41b256d17430b597bbb3f0afcdda5962cc014014a19b3fe5384", "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|2dbf36fbf473f41b256d17430b597bbb3f0afcdda5962cc014014a19b3fe5384"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48782, "scanner": "repobility-supply-chain", "fingerprint": "b57341f36a4ae73093a6f2f87aef70d16cfc456031c51f71321bb42afae880c3", "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|b57341f36a4ae73093a6f2f87aef70d16cfc456031c51f71321bb42afae880c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48781, "scanner": "repobility-supply-chain", "fingerprint": "1ca5b6bb57d7b5c3edf3e0d706433b6dabe0903fe04584da212452ae6bc74ea9", "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|1ca5b6bb57d7b5c3edf3e0d706433b6dabe0903fe04584da212452ae6bc74ea9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 51}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48780, "scanner": "repobility-supply-chain", "fingerprint": "067fd6bfd0f9836cb1753789e76b9d703a386ab5a4d1898676bacc972b8d0470", "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|067fd6bfd0f9836cb1753789e76b9d703a386ab5a4d1898676bacc972b8d0470"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 27}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `pnpm/action-setup` pinned to mutable ref `@v4`: `uses: pnpm/action-setup@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48779, "scanner": "repobility-supply-chain", "fingerprint": "1784ea0ee336b4661432ca00c64ec9c3d9b490dcd312622c0b533fa4660fa14b", "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|1784ea0ee336b4661432ca00c64ec9c3d9b490dcd312622c0b533fa4660fa14b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 22}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 48778, "scanner": "repobility-supply-chain", "fingerprint": "df7f9b965dd41c3b2bbd4e16b9250e8a54a3d7028c20af377a3bd30bc7ae66af", "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|df7f9b965dd41c3b2bbd4e16b9250e8a54a3d7028c20af377a3bd30bc7ae66af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/cli-node-ci.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `redhat-plumbers-in-action/advanced-issue-labeler` pinned to mutable ref `@v3`: `uses: redhat-plumbers-in-action/advanced-issue-labeler@v3` 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": 48777, "scanner": "repobility-supply-chain", "fingerprint": "ff4d3523655bb0c34b81e0415f2366d0c7cfb951bcf1ef17642eefa05077fc3b", "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|ff4d3523655bb0c34b81e0415f2366d0c7cfb951bcf1ef17642eefa05077fc3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/issue-labeler.yml"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `stefanbuck/github-issue-parser` pinned to mutable ref `@v3`: `uses: stefanbuck/github-issue-parser@v3` 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": 48776, "scanner": "repobility-supply-chain", "fingerprint": "180791e9fd7a649306f4871f03456d1469ad98e4fb5f77216935963f28a42d45", "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|180791e9fd7a649306f4871f03456d1469ad98e4fb5f77216935963f28a42d45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/issue-labeler.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `redhat-plumbers-in-action/advanced-issue-labeler` pinned to mutable ref `@v3`: `uses: redhat-plumbers-in-action/advanced-issue-labeler@v3` 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": 48775, "scanner": "repobility-supply-chain", "fingerprint": "dc20532b3e512c7cead050710719ad5a59f0d1150e8b4f0c58271e8a591f0b40", "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|dc20532b3e512c7cead050710719ad5a59f0d1150e8b4f0c58271e8a591f0b40"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/issue-labeler.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `stefanbuck/github-issue-parser` pinned to mutable ref `@v3`: `uses: stefanbuck/github-issue-parser@v3` 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": 48774, "scanner": "repobility-supply-chain", "fingerprint": "2d15a1a50e00504362d2c650fb8a55473f018bc63216d5a2673eedb700a7c7a8", "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|2d15a1a50e00504362d2c650fb8a55473f018bc63216d5a2673eedb700a7c7a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/issue-labeler.yml"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:20-alpine` not pinned by digest: `FROM node:20-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 48773, "scanner": "repobility-supply-chain", "fingerprint": "45e465c512e888c86a5152b0869fe1108075affcce722866322de0b36862f14e", "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|45e465c512e888c86a5152b0869fe1108075affcce722866322de0b36862f14e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.12-slim` not pinned by digest: `FROM python:3.12-slim` 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": 48772, "scanner": "repobility-supply-chain", "fingerprint": "c371619520c6c2e5962be5a9548f885bf50b426a35c863a9b50824788ecebaca", "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|c371619520c6c2e5962be5a9548f885bf50b426a35c863a9b50824788ecebaca"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:18-alpine` not pinned by digest: `FROM node:18-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 48771, "scanner": "repobility-supply-chain", "fingerprint": "3b0202eb9fdedbc614385b4a411912e57979d2694c3a46fbd9c046c543f80872", "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|3b0202eb9fdedbc614385b4a411912e57979d2694c3a46fbd9c046c543f80872"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/Dockerfile"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.12` not pinned by digest: `FROM python:3.12` 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": 48769, "scanner": "repobility-supply-chain", "fingerprint": "c5498da04d3dcce513acf6b1943ef2f24265a2d76c9922a13a120a15759901c8", "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|c5498da04d3dcce513acf6b1943ef2f24265a2d76c9922a13a120a15759901c8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.12-slim` not pinned by digest: `FROM python:3.12-slim` 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": 48768, "scanner": "repobility-supply-chain", "fingerprint": "a7eb6e573beb3556563b97647701ca2699ea000c0ba8b856d71c1d9d06667aa4", "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|a7eb6e573beb3556563b97647701ca2699ea000c0ba8b856d71c1d9d06667aa4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_generate_response_with_tools_no_tool_calls` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48766, "scanner": "repobility-route-auth", "fingerprint": "f28e1a3a044a229a0f4a03bcd5754d1d002f6f1b8890f34e81c0884c2cfadbc6", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|f28e1a3a044a229a0f4a03bcd5754d1d002f6f1b8890f34e81c0884c2cfadbc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 153}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_generate_response_with_tools` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48765, "scanner": "repobility-route-auth", "fingerprint": "6258aa6b8eb424d6fb4c67861e84b456989c39cabb6db72d6ec8a5d045f5af82", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|6258aa6b8eb424d6fb4c67861e84b456989c39cabb6db72d6ec8a5d045f5af82"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_generate_response_without_tools` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48764, "scanner": "repobility-route-auth", "fingerprint": "9e52704b6e19183c4c7d7343d4eb07a7dfc429e9f4eeb3d3f180917215002e67", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|9e52704b6e19183c4c7d7343d4eb07a7dfc429e9f4eeb3d3f180917215002e67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_init_with_placeholder_api_key_uses_default_credential` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48763, "scanner": "repobility-route-auth", "fingerprint": "67c7f490ef3dbcebf41497247b924c0d3cb7e2154bac3ae5d07e9a6d882e5450", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|67c7f490ef3dbcebf41497247b924c0d3cb7e2154bac3ae5d07e9a6d882e5450"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_init_with_default_credential` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48762, "scanner": "repobility-route-auth", "fingerprint": "286768df8e2bd07c51777fa7b235c1088e5612f5b34500d778d4bee0cefe0554", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|286768df8e2bd07c51777fa7b235c1088e5612f5b34500d778d4bee0cefe0554"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH mem0.llms.azure_openai_structured.AzureOpenAI has no auth: Handler `test_init_with_api_key` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48761, "scanner": "repobility-route-auth", "fingerprint": "e816dec3b1abdbe083b1c2f3ba0d438650976fe6bd99eb74e91d5af2cef124d3", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|e816dec3b1abdbe083b1c2f3ba0d438650976fe6bd99eb74e91d5af2cef124d3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/llms/test_azure_openai_structured.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI POST /{client_name}/sse/{user_id}/messages/ has no auth: Handler `handle_post_message` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48760, "scanner": "repobility-route-auth", "fingerprint": "4dd800811f7f5a18a6fc8f86a5b4567f02c78ede7ddffeff265c532c22680292", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|4dd800811f7f5a18a6fc8f86a5b4567f02c78ede7ddffeff265c532c22680292"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/mcp_server.py"}, "region": {"startLine": 471}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI POST /messages/ has no auth: Handler `handle_get_message` is registered with router/app.post(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 48759, "scanner": "repobility-route-auth", "fingerprint": "9efe10dc178bd319ee2ec1f87173fbf6ebc60638f02297eee24c7d257c0a7494", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|9efe10dc178bd319ee2ec1f87173fbf6ebc60638f02297eee24c7d257c0a7494"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/mcp_server.py"}, "region": {"startLine": 466}}}]}, {"ruleId": "MINED110", "level": "error", "message": {"text": "[MINED110] Blocking call `input` inside async function `interactive_mode`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress."}, "properties": {"repobilityId": 48758, "scanner": "repobility-ast-engine", "fingerprint": "4245792e8353cdc3494ed173b116c996aa35e50bb3b34561570f30f258790bc3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "asyncio-blocking-call", "owasp": null, "cwe_ids": ["CWE-833"], "languages": ["python"], "observations_count": 31606}, "scanner": "repobility-ast-engine", "correlation_key": "fp|4245792e8353cdc3494ed173b116c996aa35e50bb3b34561570f30f258790bc3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/healthcare_assistant_google_adk.py"}, "region": {"startLine": 184}}}]}, {"ruleId": "MINED110", "level": "error", "message": {"text": "[MINED110] Blocking call `input` inside async function `interactive_mode`: `input` is a synchronous (blocking) call. When invoked inside an `async def` it stalls the event loop, preventing every other coroutine in the process from making progress."}, "properties": {"repobilityId": 48757, "scanner": "repobility-ast-engine", "fingerprint": "5af0b94a799f61845520667b8da4b49f9bd901f770f3833995d5b4a1b59f58c4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "asyncio-blocking-call", "owasp": null, "cwe_ids": ["CWE-833"], "languages": ["python"], "observations_count": 31606}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5af0b94a799f61845520667b8da4b49f9bd901f770f3833995d5b4a1b59f58c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/healthcare_assistant_google_adk.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.client` used but never assigned in __init__: Method `test_get_memory_without_key` of class `TestAuthDisabled` reads `self.client`, 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": 48729, "scanner": "repobility-ast-engine", "fingerprint": "8995edcec1bc9ab90b17b2511e3df98aef688f7bf1a9614174326d7183cf84a4", "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|8995edcec1bc9ab90b17b2511e3df98aef688f7bf1a9614174326d7183cf84a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.client` used but never assigned in __init__: Method `test_root_redirects_to_docs` of class `TestAuthDisabled` reads `self.client`, 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": 48728, "scanner": "repobility-ast-engine", "fingerprint": "c028f51d42e7d6fd1346292cc7f37ca9a43e6bc68b3b1e1ef6c21f056902848a", "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|c028f51d42e7d6fd1346292cc7f37ca9a43e6bc68b3b1e1ef6c21f056902848a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.app` used but never assigned in __init__: Method `_setup` of class `TestAuthDisabled` reads `self.app`, 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": 48727, "scanner": "repobility-ast-engine", "fingerprint": "7b8a9c26e92822f516e995145ddfc1cf8d2bbbee1aa7d178f7f29ad1a4106fbc", "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|7b8a9c26e92822f516e995145ddfc1cf8d2bbbee1aa7d178f7f29ad1a4106fbc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.mock` used but never assigned in __init__: Method `_setup` of class `TestAuthDisabled` reads `self.mock`, 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": 48726, "scanner": "repobility-ast-engine", "fingerprint": "8fabbb6d15eea5ff280bdf3106b591d76559edabbb2302241fe20199c23405fd", "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|8fabbb6d15eea5ff280bdf3106b591d76559edabbb2302241fe20199c23405fd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.client` used but never assigned in __init__: Method `_setup` of class `TestAuthDisabled` reads `self.client`, 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": 48725, "scanner": "repobility-ast-engine", "fingerprint": "5e47734c2d9107368eb2d9ef60cf16ea759ccba4e89ee6e22f09fe23a85634b8", "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|5e47734c2d9107368eb2d9ef60cf16ea759ccba4e89ee6e22f09fe23a85634b8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.app` used but never assigned in __init__: Method `_setup` of class `TestAuthDisabled` reads `self.app`, 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": 48724, "scanner": "repobility-ast-engine", "fingerprint": "78b6a349cf7b3d59c7d4864b842fd3a6c814ffdf220a74ac652295237ee716a8", "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|78b6a349cf7b3d59c7d4864b842fd3a6c814ffdf220a74ac652295237ee716a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_server_auth.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_mock_async_memory` used but never assigned in __init__: Method `test_close_when_db_is_none` of class `TestAsyncMemoryLifecycle` reads `self._make_mock_async_memory`, 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": 48723, "scanner": "repobility-ast-engine", "fingerprint": "936d2b0d19fe2cb4b008a3c0415b0788eed2f1a83f189072232d7f45909a8de9", "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|936d2b0d19fe2cb4b008a3c0415b0788eed2f1a83f189072232d7f45909a8de9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry.py"}, "region": {"startLine": 329}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_mock_memory` used but never assigned in __init__: Method `test_close_when_db_is_none` of class `TestMemoryLifecycle` reads `self._make_mock_memory`, 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": 48722, "scanner": "repobility-ast-engine", "fingerprint": "af4beffafdbbeaeda64e03e42ee455a7890845cef6cc9a1ed918c86eae61ec93", "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|af4beffafdbbeaeda64e03e42ee455a7890845cef6cc9a1ed918c86eae61ec93"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry.py"}, "region": {"startLine": 303}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_mock_memory` used but never assigned in __init__: Method `test_double_close_is_safe` of class `TestMemoryLifecycle` reads `self._make_mock_memory`, 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": 48721, "scanner": "repobility-ast-engine", "fingerprint": "60397b8b437ea0df2633e89a9170e0b3511f253b969229ff15b7cae74165267d", "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|60397b8b437ea0df2633e89a9170e0b3511f253b969229ff15b7cae74165267d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry.py"}, "region": {"startLine": 295}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_get_all_rejects_internal_whitespace_user_id: Test function `test_get_all_rejects_internal_whitespace_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48720, "scanner": "repobility-ast-engine", "fingerprint": "bb93bf039e9123ffff564e79ea23f5475096baa8ce7047374c1899e034671f91", "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|bb93bf039e9123ffff564e79ea23f5475096baa8ce7047374c1899e034671f91"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 274}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_get_all_rejects_whitespace_only_user_id: Test function `test_get_all_rejects_whitespace_only_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48719, "scanner": "repobility-ast-engine", "fingerprint": "817534d97aab764163d7d390c97ccce9b08a6fbe60728c7ee8bd41eeb460aeea", "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|817534d97aab764163d7d390c97ccce9b08a6fbe60728c7ee8bd41eeb460aeea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 269}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_search_rejects_tab_in_user_id: Test function `test_search_rejects_tab_in_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48718, "scanner": "repobility-ast-engine", "fingerprint": "99cfc0ab41ec7741c11be57febc974ceb01a666a142d1aae645b906b622b4299", "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|99cfc0ab41ec7741c11be57febc974ceb01a666a142d1aae645b906b622b4299"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 264}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_search_rejects_internal_whitespace_user_id: Test function `test_search_rejects_internal_whitespace_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48717, "scanner": "repobility-ast-engine", "fingerprint": "1164fe684c4da2c3b4bbfaf278f97871d21d65f849a4045a91cf2e121be5e0a9", "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|1164fe684c4da2c3b4bbfaf278f97871d21d65f849a4045a91cf2e121be5e0a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 259}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_search_rejects_whitespace_only_user_id: Test function `test_search_rejects_whitespace_only_user_id` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48716, "scanner": "repobility-ast-engine", "fingerprint": "8ede14645eed099dc82998ac84e99c0e13871478a075f893b40fb9c4e78c1814", "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|8ede14645eed099dc82998ac84e99c0e13871478a075f893b40fb9c4e78c1814"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 254}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_update_with_empty_metadata: Test function `test_update_with_empty_metadata` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48715, "scanner": "repobility-ast-engine", "fingerprint": "772c04c10edb4a8fd9312224e26981e33d586b427a7996009f82bddc8878bd31", "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|772c04c10edb4a8fd9312224e26981e33d586b427a7996009f82bddc8878bd31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_main.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_does_not_raise_on_read_failure: Test function `test_does_not_raise_on_read_failure` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48714, "scanner": "repobility-ast-engine", "fingerprint": "27bdb60d41615bc4e54bc30bd0b54b730e4c89b20c871c25645e70aca1f73c77", "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|27bdb60d41615bc4e54bc30bd0b54b730e4c89b20c871c25645e70aca1f73c77"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 369}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_anon_id_equal_to_email: Test function `test_skips_anon_id_equal_to_email` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48713, "scanner": "repobility-ast-engine", "fingerprint": "96f8b531631e974f8f6f4591675ab986c47df8fedf687b24f2c148b89b3adc7c", "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|96f8b531631e974f8f6f4591675ab986c47df8fedf687b24f2c148b89b3adc7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 352}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_does_not_raise_on_telemetry_failure: Test function `test_does_not_raise_on_telemetry_failure` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48712, "scanner": "repobility-ast-engine", "fingerprint": "dc299dd71abff51ddd9a5fb76a964a8e1d684261697a658a51a64c18bb4f8058", "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|dc299dd71abff51ddd9a5fb76a964a8e1d684261697a658a51a64c18bb4f8058"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 334}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_when_telemetry_disabled: Test function `test_skips_when_telemetry_disabled` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48711, "scanner": "repobility-ast-engine", "fingerprint": "c6c0f27750b2d121607c88637f30db3b03023c7f71dcc7966f63b55ec5cf8ed9", "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|c6c0f27750b2d121607c88637f30db3b03023c7f71dcc7966f63b55ec5cf8ed9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 317}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_when_email_invalid: Test function `test_skips_when_email_invalid` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48710, "scanner": "repobility-ast-engine", "fingerprint": "71347ff3bc747b3e64dbf6121da74b1f2279e168786d62f7c2535b00edc921f6", "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|71347ff3bc747b3e64dbf6121da74b1f2279e168786d62f7c2535b00edc921f6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 308}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_when_pair_already_aliased: Test function `test_skips_when_pair_already_aliased` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48709, "scanner": "repobility-ast-engine", "fingerprint": "b2b03029590ba04fb2a8034a60573cac36207372af512e115554db19ab8c43d4", "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|b2b03029590ba04fb2a8034a60573cac36207372af512e115554db19ab8c43d4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 291}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_fires_identify_for_cli_anon: Test function `test_fires_identify_for_cli_anon` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48708, "scanner": "repobility-ast-engine", "fingerprint": "c860f0f62f9a88d931adc4a8c2724b51c093eadfecf8c3d8cf55d110bd5848fb", "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|c860f0f62f9a88d931adc4a8c2724b51c093eadfecf8c3d8cf55d110bd5848fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 254}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_fires_identify_for_oss_uuid: Test function `test_fires_identify_for_oss_uuid` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48707, "scanner": "repobility-ast-engine", "fingerprint": "d37a44c626617d7e0912e5f3259675a76000699bc25fff4c0a970abc6d53cf99", "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|d37a44c626617d7e0912e5f3259675a76000699bc25fff4c0a970abc6d53cf99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_does_not_raise_on_posthog_error: Test function `test_does_not_raise_on_posthog_error` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48706, "scanner": "repobility-ast-engine", "fingerprint": "2119c9df65d743bf053d3bc26a42cc4d21991a306b56d5d9072d9f81aefba7aa", "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|2119c9df65d743bf053d3bc26a42cc4d21991a306b56d5d9072d9f81aefba7aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 212}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_when_inputs_empty: Test function `test_skips_when_inputs_empty` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48705, "scanner": "repobility-ast-engine", "fingerprint": "f2a9634f3b4665104de95c8101edbdb526838c6e1a36f6d266de4b9821c8ed1e", "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|f2a9634f3b4665104de95c8101edbdb526838c6e1a36f6d266de4b9821c8ed1e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 194}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_skips_when_anon_equals_email: Test function `test_skips_when_anon_equals_email` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48704, "scanner": "repobility-ast-engine", "fingerprint": "e38f416546f305c4f4f077afcc656e8cfa7f87954b7e112b8c2bdca913402036", "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|e38f416546f305c4f4f077afcc656e8cfa7f87954b7e112b8c2bdca913402036"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_aliasing.py"}, "region": {"startLine": 185}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_does_not_override_caller_supplied_sample_rate_for_hot_path` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48703, "scanner": "repobility-ast-engine", "fingerprint": "8700ded53921f1be71fb102bf1020c9eebf7156bf03e08d03dc4d97838c01387", "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|8700ded53921f1be71fb102bf1020c9eebf7156bf03e08d03dc4d97838c01387"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_rate_one_passes_all_events` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48702, "scanner": "repobility-ast-engine", "fingerprint": "56302631193a2de1cd9f0652e47838f1f400d07c9b7f6a5416760771566d0222", "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|56302631193a2de1cd9f0652e47838f1f400d07c9b7f6a5416760771566d0222"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 93}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_rate_zero_still_passes_lifecycle` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48701, "scanner": "repobility-ast-engine", "fingerprint": "ef98b7189041c7d45d684343fcc4c67cfc16b25f7655210c3b0b2337fed1dc9f", "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|ef98b7189041c7d45d684343fcc4c67cfc16b25f7655210c3b0b2337fed1dc9f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_rate_zero_drops_all_hot_path` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48700, "scanner": "repobility-ast-engine", "fingerprint": "2fede58418062abc61d579e4941de6f987dde8a5225606b30d8a1a38e26dc4b4", "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|2fede58418062abc61d579e4941de6f987dde8a5225606b30d8a1a38e26dc4b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_lifecycle_annotates_sample_rate_one` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48699, "scanner": "repobility-ast-engine", "fingerprint": "8bb46c9a650ca986ca5faf4055fdd294872e005d8e87c85e0ae8696b84f73e98", "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|8bb46c9a650ca986ca5faf4055fdd294872e005d8e87c85e0ae8696b84f73e98"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_hot_path_annotates_sample_rate` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48698, "scanner": "repobility-ast-engine", "fingerprint": "3c98fc1380a5321363481695c4cb1f2ede41db73ea84283d4b9e5efcd0ee46ad", "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|3c98fc1380a5321363481695c4cb1f2ede41db73ea84283d4b9e5efcd0ee46ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_hot_path_event_passes_when_random_below_rate` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48697, "scanner": "repobility-ast-engine", "fingerprint": "230173584b27455f987b95a2f364fb57999692ce2043ae2b594a98ae29760c93", "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|230173584b27455f987b95a2f364fb57999692ce2043ae2b594a98ae29760c93"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_hot_path_event_dropped_when_random_above_rate` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48696, "scanner": "repobility-ast-engine", "fingerprint": "ab6a917564cdfacc4acd98cb2bd4fb20c90afd93b6e72f9b6b52214039088d53", "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|ab6a917564cdfacc4acd98cb2bd4fb20c90afd93b6e72f9b6b52214039088d53"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._msg` used but never assigned in __init__: Method `test_lifecycle_event_passes_through_at_high_random` of class `TestSamplingBeforeSend` reads `self._msg`, 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": 48695, "scanner": "repobility-ast-engine", "fingerprint": "86e5617286bf9091f14727329f7a97d523ec56e0981ad3e7753131e5dbb92f90", "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|86e5617286bf9091f14727329f7a97d523ec56e0981ad3e7753131e5dbb92f90"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_telemetry_sampling.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_no_args_raises_with_decay_in_message: Test function `test_no_args_raises_with_decay_in_message` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48693, "scanner": "repobility-ast-engine", "fingerprint": "8b105cae2b9d3a1e484cce5c4dcb48da31934829d3747fc3bd78e688d2b166bd", "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|8b105cae2b9d3a1e484cce5c4dcb48da31934829d3747fc3bd78e688d2b166bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_and_simple_equality_no_merge` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48692, "scanner": "repobility-ast-engine", "fingerprint": "8f66d55eb90ab0ac7802bd7343d4f80c5e7524120e1d3870b8efbfa3073dde48", "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|8f66d55eb90ab0ac7802bd7343d4f80c5e7524120e1d3870b8efbfa3073dde48"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 789}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_and_mixed_keys_with_same_key_overlap` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48691, "scanner": "repobility-ast-engine", "fingerprint": "916a222869bc844fa585790e45b43b3b8da4a9fd34465d0f07786bd77be9b370", "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|916a222869bc844fa585790e45b43b3b8da4a9fd34465d0f07786bd77be9b370"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 781}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_and_same_key_three_operators_merged` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48690, "scanner": "repobility-ast-engine", "fingerprint": "1921c8583eb8a045ed499065e55fba98561c2d40e73645ec87c25327cdf5987c", "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|1921c8583eb8a045ed499065e55fba98561c2d40e73645ec87c25327cdf5987c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 773}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_and_same_key_different_operators_merged` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48689, "scanner": "repobility-ast-engine", "fingerprint": "56917f97a2d98e8f5c5b38f7b8ef908d806de12359fcac6fe91103ab83ff5732", "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|56917f97a2d98e8f5c5b38f7b8ef908d806de12359fcac6fe91103ab83ff5732"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 765}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_multiple_keys_with_multiple_operators` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48688, "scanner": "repobility-ast-engine", "fingerprint": "ad1ba132b3a08ac1739b0c6c479f8d428203f70641d59f9cab23bb9f079697f5", "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|ad1ba132b3a08ac1739b0c6c479f8d428203f70641d59f9cab23bb9f079697f5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 753}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_single_operator_still_works` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48687, "scanner": "repobility-ast-engine", "fingerprint": "daf9ae045fc8217316c86d2f7e4c88ad5842fe69f5c01f25d9acce10e79bbfba", "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|daf9ae045fc8217316c86d2f7e4c88ad5842fe69f5c01f25d9acce10e79bbfba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 745}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self._make_memory` used but never assigned in __init__: Method `test_multiple_operators_same_key_merged` of class `TestProcessMetadataFiltersMerge` reads `self._make_memory`, 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": 48686, "scanner": "repobility-ast-engine", "fingerprint": "754f06f2ad64808cffe8daf810a1f596654dd23b678b45fe0e65f36672782b8f", "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|754f06f2ad64808cffe8daf810a1f596654dd23b678b45fe0e65f36672782b8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 737}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_get_all_rejects_user_id_kwarg: Test function `test_get_all_rejects_user_id_kwarg` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48685, "scanner": "repobility-ast-engine", "fingerprint": "2a6c1a4ad8ef497fb57c2771efe0dd1389d7a38e3795dd5b1d98af4f42b60837", "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|2a6c1a4ad8ef497fb57c2771efe0dd1389d7a38e3795dd5b1d98af4f42b60837"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 845}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_search_rejects_user_id_kwarg: Test function `test_search_rejects_user_id_kwarg` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48684, "scanner": "repobility-ast-engine", "fingerprint": "2669684d0ce92e054309a571a66020624cda80cf008bbc3e3512e3b93a947a24", "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|2669684d0ce92e054309a571a66020624cda80cf008bbc3e3512e3b93a947a24"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 827}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_async_update_nonexistent_memory_raises_error: Test function `test_async_update_nonexistent_memory_raises_error` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48683, "scanner": "repobility-ast-engine", "fingerprint": "80f0fac4cc723d9c88267f44b8cbcaef0bc65e00b2060faffbfd8ea1f7e76447", "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|80f0fac4cc723d9c88267f44b8cbcaef0bc65e00b2060faffbfd8ea1f7e76447"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 419}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_update_nonexistent_memory_raises_error: Test function `test_update_nonexistent_memory_raises_error` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48682, "scanner": "repobility-ast-engine", "fingerprint": "1bb28db1d6a6f782ce9b379fefcfce5c5fe2d9ead95b45de74675bd821e7066a", "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|1bb28db1d6a6f782ce9b379fefcfce5c5fe2d9ead95b45de74675bd821e7066a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_async_delete_nonexistent_memory_raises_error: Test function `test_async_delete_nonexistent_memory_raises_error` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48681, "scanner": "repobility-ast-engine", "fingerprint": "174918f4a13547c78da4c50e30c4bb35bd0162a2695c667b4f1813de91958326", "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|174918f4a13547c78da4c50e30c4bb35bd0162a2695c667b4f1813de91958326"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 360}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_delete_nonexistent_memory_raises_error: Test function `test_delete_nonexistent_memory_raises_error` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48680, "scanner": "repobility-ast-engine", "fingerprint": "2a6c470ca86f0487d1cc034699c6bf5bfa29defeed2627701c636a337c1c0e6b", "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|2a6c470ca86f0487d1cc034699c6bf5bfa29defeed2627701c636a337c1c0e6b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 329}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_add_infer_with_malformed_llm_facts: Test function `test_add_infer_with_malformed_llm_facts` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 48679, "scanner": "repobility-ast-engine", "fingerprint": "304f032fa2250244994f6bf102d9822360e7cb2f45393af9cfbabee94d2c6095", "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|304f032fa2250244994f6bf102d9822360e7cb2f45393af9cfbabee94d2c6095"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_memory.py"}, "region": {"startLine": 256}}}]}, {"ruleId": "AGT002", "level": "error", "message": {"text": "LLM memory extraction can be prompt-injected into storing fake facts"}, "properties": {"repobilityId": 48675, "scanner": "repobility-agent-runtime", "fingerprint": "02626eeb92902a86bbd0d61989e639cfd7cd7634c9d4284ca41233dd04e266e9", "category": "llm_injection", "severity": "high", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File appears to persist LLM-extracted memory from user/assistant exchanges without visible schema validation or prompt-pattern rejection.", "evidence": {"rule_id": "AGT002", "scanner": "repobility-agent-runtime", "data_flow": "chat_exchange_to_persistent_memory", "references": ["https://owasp.org/www-project-top-10-for-large-language-model-applications/"], "correlation_key": "fp|02626eeb92902a86bbd0d61989e639cfd7cd7634c9d4284ca41233dd04e266e9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/prompts.py"}, "region": {"startLine": 116}}}]}, {"ruleId": "MINED027", "level": "error", "message": {"text": "[MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState \u2014 React skips re-render on mutated reference."}, "properties": {"repobilityId": 48641, "scanner": "repobility-threat-engine", "fingerprint": "95ea2e4fc492e4c875a8951fb81daf2bb2a114b0ff189ee22059816316bbdb35", "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": "react-state-array-mutation", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347961+00:00", "triaged_in_corpus": 15, "observations_count": 14444, "ai_coder_pattern_id": 136}, "scanner": "repobility-threat-engine", "correlation_key": "fp|95ea2e4fc492e4c875a8951fb81daf2bb2a114b0ff189ee22059816316bbdb35"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/store/memoriesSlice.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "MINED027", "level": "error", "message": {"text": "[MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState \u2014 React skips re-render on mutated reference."}, "properties": {"repobilityId": 48640, "scanner": "repobility-threat-engine", "fingerprint": "26e4dd876ef122df1e08215bc6338ca365466d432d736ed47c2adf8aa9bde207", "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": "react-state-array-mutation", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347961+00:00", "triaged_in_corpus": 15, "observations_count": 14444, "ai_coder_pattern_id": 136}, "scanner": "repobility-threat-engine", "correlation_key": "fp|26e4dd876ef122df1e08215bc6338ca365466d432d736ed47c2adf8aa9bde207"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/store/filtersSlice.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED027", "level": "error", "message": {"text": "[MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState \u2014 React skips re-render on mutated reference."}, "properties": {"repobilityId": 48639, "scanner": "repobility-threat-engine", "fingerprint": "cc0387a0ad02328fef7d2f1954584c991c7bd2f8f1e5fdaed68c48f5d06b4351", "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": "react-state-array-mutation", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347961+00:00", "triaged_in_corpus": 15, "observations_count": 14444, "ai_coder_pattern_id": 136}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cc0387a0ad02328fef7d2f1954584c991c7bd2f8f1e5fdaed68c48f5d06b4351"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/store/appsSlice.ts"}, "region": {"startLine": 195}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 48632, "scanner": "repobility-threat-engine", "fingerprint": "8c517462722b89f32b7c431c70884e02d1809e7158c555e35914edfeebf201c2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.post(\"\", response_model=CreateKeyResponse, status_code=201)\ndef create_key(body: CreateKeyRe", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8c517462722b89f32b7c431c70884e02d1809e7158c555e35914edfeebf201c2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/routers/api_keys.py"}, "region": {"startLine": 61}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 48631, "scanner": "repobility-threat-engine", "fingerprint": "d0487a4c46b5e686442af9581f3af03ba5670c277125791bc2a6ef7f18da06a3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.put(\"/\", response_model=ConfigSchema)\nasync def update_configuration(config: ConfigSchema, d", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d0487a4c46b5e686442af9581f3af03ba5670c277125791bc2a6ef7f18da06a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/config.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "SEC135", "level": "error", "message": {"text": "[SEC135] Auth/permission check missing on AI-generated endpoint: Mutating HTTP endpoint generated by an AI agent without an auth decorator or middleware. The number-one production-incident pattern we see in AI-generated SaaS code: the AI builds the route, builds the handler, and forgets to wire the auth check that the rest of the codebase uses. CWE-862 (missing authorization). High-severity because the route is fully functional, just unprotected \u2014 attackers can call it directly."}, "properties": {"repobilityId": 48630, "scanner": "repobility-threat-engine", "fingerprint": "114ba201be6a1724450674d6cea2c29157af3ec038f66588c2c194cae9a6702b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@router.put(\"/{app_id}\")\nasync def update_app_details(\n    app_id: UUID,\n    is_active: bool,\n    db", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC135", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|114ba201be6a1724450674d6cea2c29157af3ec038f66588c2c194cae9a6702b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/app/routers/apps.py"}, "region": {"startLine": 214}}}]}, {"ruleId": "MINED021", "level": "error", "message": {"text": "[MINED021] Path Traversal Os Join: os.path.join(user_dir, filename) where filename can contain \"../\" \u2014 directory escape."}, "properties": {"repobilityId": 48622, "scanner": "repobility-threat-engine", "fingerprint": "2ff70dd5c0ef7847e082cb52a0a76f62f4752f7b285795ce8afa2c75e576b89b", "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": "path-traversal-os-join", "owasp": "A01:2021", "cwe_ids": ["CWE-22"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347947+00:00", "triaged_in_corpus": 15, "observations_count": 45678, "ai_coder_pattern_id": 31}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2ff70dd5c0ef7847e082cb52a0a76f62f4752f7b285795ce8afa2c75e576b89b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/setup_coding_categories.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 48621, "scanner": "repobility-threat-engine", "fingerprint": "c92a3e92aa77eb2f7a6b5092cc9121f58f7be026fabf2653f542f45cdca0927a", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(\n        r\"^##\\s+Retention[^\\n]*\\n(.*?)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|58|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/parse_mem0_config.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED006", "level": "error", "message": {"text": "[MINED006] Overcatch Baseexception: except BaseException: ... \u2014 prevents Ctrl+C and SystemExit from working."}, "properties": {"repobilityId": 48614, "scanner": "repobility-threat-engine", "fingerprint": "c579e5ac3ddb0eb60f2f0e328df0013dd6a1e431e8d28404528115a713a6a07e", "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": "overcatch-baseexception", "owasp": null, "cwe_ids": ["CWE-705"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347911+00:00", "triaged_in_corpus": 15, "observations_count": 230624, "ai_coder_pattern_id": 8}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c579e5ac3ddb0eb60f2f0e328df0013dd6a1e431e8d28404528115a713a6a07e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/voice_assistant_elevenlabs.py"}, "region": {"startLine": 228}}}]}, {"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": 48606, "scanner": "repobility-threat-engine", "fingerprint": "d2543f567a254a44b5f081aac6df2a328b33f5b0600d0bd2a6bd0d31d73a2504", "category": "credential_exposure", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Credential-bearing variable appears to be printed or logged", "evidence": {"match": "print(secrets.token_urlsafe(16)", "reason": "Credential-bearing variable appears to be printed or logged", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.85, "correlation_key": "secret|server/scripts/seed.sh|1|print secrets.token_urlsafe 16"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/scripts/seed.sh"}, "region": {"startLine": 7}}}]}, {"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": 48602, "scanner": "repobility-threat-engine", "fingerprint": "c45bdf71232bd74cde05673f050f7ede8c4a07bea8d8f1064b3d74222f9ff951", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Exec (failed", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c45bdf71232bd74cde05673f050f7ede8c4a07bea8d8f1064b3d74222f9ff951"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/filtering.ts"}, "region": {"startLine": 18}}}]}, {"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": 48601, "scanner": "repobility-threat-engine", "fingerprint": "d62c92e30ac62121ba11835d8f1b317e4edd800a93265a0f05ce3db3bb51b131", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(className", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d62c92e30ac62121ba11835d8f1b317e4edd800a93265a0f05ce3db3bb51b131"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/mem0-demo/components/mem0/markdown.tsx"}, "region": {"startLine": 191}}}]}, {"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": 48592, "scanner": "repobility-threat-engine", "fingerprint": "25c073d1879029b526e3d3ca9dbaea81956f8823ef5f659ef5ecd15b235c4e31", "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(req, timeout=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|105|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/telemetry.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 48576, "scanner": "repobility-threat-engine", "fingerprint": "1b64fd1e5dc0b8db7564f617a9cbdccf4b52b02f57cebbfe979eb763159cab12", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1b64fd1e5dc0b8db7564f617a9cbdccf4b52b02f57cebbfe979eb763159cab12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/config.py"}, "region": {"startLine": 192}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 48575, "scanner": "repobility-threat-engine", "fingerprint": "733925ac6bfb0301f10463b28889406132c569b448e158bea142cd74da89e1a7", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|733925ac6bfb0301f10463b28889406132c569b448e158bea142cd74da89e1a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/commands/agent_mode_cmd.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 48574, "scanner": "repobility-threat-engine", "fingerprint": "e895a4b21ae9c7ac08a3b28dd5081a2198efa94e555abf3c1c6804f17b8b139d", "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": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e895a4b21ae9c7ac08a3b28dd5081a2198efa94e555abf3c1c6804f17b8b139d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/backend/platform.py"}, "region": {"startLine": 352}}}]}, {"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": 48568, "scanner": "repobility-threat-engine", "fingerprint": "3f63bab3fb4c984106b039ffc87d287896bdc6c3dc4df1895a37b536a810ab9b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "base_config.update(self.model_kwargs)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3f63bab3fb4c984106b039ffc87d287896bdc6c3dc4df1895a37b536a810ab9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/configs/llms/aws_bedrock.py"}, "region": {"startLine": 90}}}]}, {"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": 48567, "scanner": "repobility-threat-engine", "fingerprint": "d046fa3fe51f63d8ff679b40ec9116adabc0d1e857a94d5217346cc5c70405dd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "client.project.update(custom_categories=proposed)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d046fa3fe51f63d8ff679b40ec9116adabc0d1e857a94d5217346cc5c70405dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/auto_setup_categories.py"}, "region": {"startLine": 151}}}]}, {"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": 48566, "scanner": "repobility-threat-engine", "fingerprint": "f1ea68942aed4b2bb009dac4eee00c21ad2eb69b5e4fab95ff7d72f821e5c3ae", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "req.destroy();", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f1ea68942aed4b2bb009dac4eee00c21ad2eb69b5e4fab95ff7d72f821e5c3ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/telemetry-sender.cjs"}, "region": {"startLine": 45}}}]}, {"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": 48564, "scanner": "repobility-threat-engine", "fingerprint": "b1a6a17029d7e9a61be2d7eaaba8c99e4761ad3996c325fde3168b7e76d6a74e", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(f", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b1a6a17029d7e9a61be2d7eaaba8c99e4761ad3996c325fde3168b7e76d6a74e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/multimodal-demo/src/utils/fileUtils.ts"}, "region": {"startLine": 6}}}]}, {"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": 48563, "scanner": "repobility-threat-engine", "fingerprint": "70175018e3f43c80e8af33b25808acd81b74f2651f695ad613dcd193395c1b4b", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "urllib.request.urlopen(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|70175018e3f43c80e8af33b25808acd81b74f2651f695ad613dcd193395c1b4b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/telemetry_sender.py"}, "region": {"startLine": 66}}}]}, {"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": 48562, "scanner": "repobility-threat-engine", "fingerprint": "f5a95ef06edaa7a33d84ddbcfa33c7429c580c3abee2a659ae2f78431fef07e0", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f5a95ef06edaa7a33d84ddbcfa33c7429c580c3abee2a659ae2f78431fef07e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/telemetry-sender.cjs"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 48561, "scanner": "repobility-threat-engine", "fingerprint": "aa756df6a5ca5da671763947dcbcf08a7b519a933e2c2b2a831d938cf2d6cf1b", "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|aa756df6a5ca5da671763947dcbcf08a7b519a933e2c2b2a831d938cf2d6cf1b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/utils.py"}, "region": {"startLine": 209}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 48560, "scanner": "repobility-threat-engine", "fingerprint": "65b424104eb71fc08af8215d12aa82565b9b01a36eaa6b0d7f6d6cea7e226c59", "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|65b424104eb71fc08af8215d12aa82565b9b01a36eaa6b0d7f6d6cea7e226c59"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/telemetry.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 48559, "scanner": "repobility-threat-engine", "fingerprint": "6da0865787c4062d9e57904fdcbe604981a87648baaf35993efca4d525cdef34", "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|6da0865787c4062d9e57904fdcbe604981a87648baaf35993efca4d525cdef34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/telemetry.ts"}, "region": {"startLine": 68}}}]}, {"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": 48549, "scanner": "repobility-threat-engine", "fingerprint": "9f3c6d93766c3d64d346926f498afe7d6fd6a5029724989bedb0a93cd23206bb", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((memory: Mem0Memory) => `Previous context: ${memory.memory}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9f3c6d93766c3d64d346926f498afe7d6fd6a5029724989bedb0a93cd23206bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/multimodal-demo/useChat.ts"}, "region": {"startLine": 153}}}]}, {"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": 48548, "scanner": "repobility-threat-engine", "fingerprint": "69fc9a76b711d526fdf73dbb9eb3b11dddf01996a0839b5ac4877154b87024ff", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((memory: Mem0Memory) => `Previous context: ${memory.memory}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|69fc9a76b711d526fdf73dbb9eb3b11dddf01996a0839b5ac4877154b87024ff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/multimodal-demo/src/hooks/useChat.ts"}, "region": {"startLine": 153}}}]}, {"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": 48547, "scanner": "repobility-threat-engine", "fingerprint": "7d0efbf88ce1180e6372929642915a51f3a3e3b65d133cbf79cbc32a44b39dc9", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(([k, v]) => `${k}=${v}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7d0efbf88ce1180e6372929642915a51f3a3e3b65d133cbf79cbc32a44b39dc9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/output.ts"}, "region": {"startLine": 389}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6705, "scanner": "repobility-journey-contract", "fingerprint": "9111ee3bec55cc347cd77ff2150c0b46498777b41834969406a592f8dee99884", "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|376|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/app/setup/page.tsx"}, "region": {"startLine": 376}}}]}, {"ruleId": "JRN009", "level": "error", "message": {"text": "Secret-like setting is echoed into a password input value"}, "properties": {"repobilityId": 6704, "scanner": "repobility-journey-contract", "fingerprint": "4854d409224a1d8f58f605081b113bf2e903b56a0d11de301b862efb6caa4355", "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|server/dashboard/src/app/ auth /login/login-form.tsx|111|jrn009"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/src/app/(auth)/login/login-form.tsx"}, "region": {"startLine": 111}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 6703, "scanner": "repobility-journey-contract", "fingerprint": "2064b2b8f43fccd3b1c43c0324113be3b8e60aa4998350ea211547a9a0ed85a7", "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|openclaw/config.ts|42|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 3}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/config.ts"}, "region": {"startLine": 42}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6675, "scanner": "repobility-docker", "fingerprint": "be907b5950f9046c06b9e1e654b0bb0d2295a30e2bd83dfec1f1b4b494b48164", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|be907b5950f9046c06b9e1e654b0bb0d2295a30e2bd83dfec1f1b4b494b48164"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/dashboard/Dockerfile"}, "region": {"startLine": 19}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6671, "scanner": "repobility-docker", "fingerprint": "2d619483cbf520c040f65983b44f5c41b94573223d2554a661f343b9178b2e22", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|2d619483cbf520c040f65983b44f5c41b94573223d2554a661f343b9178b2e22"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6669, "scanner": "repobility-docker", "fingerprint": "19e3e9e3cda176752892bb1e87c704ba9bf05a4feccec31a0e0595d7e4d24a5f", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|19e3e9e3cda176752892bb1e87c704ba9bf05a4feccec31a0e0595d7e4d24a5f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/ui/Dockerfile"}, "region": {"startLine": 24}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6665, "scanner": "repobility-docker", "fingerprint": "9b4573deae1815d8e3a91969b779c66f48dce7c6b2e1780c74655854bd51112c", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|9b4573deae1815d8e3a91969b779c66f48dce7c6b2e1780c74655854bd51112c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openmemory/api/Dockerfile"}, "region": {"startLine": 11}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6662, "scanner": "repobility-docker", "fingerprint": "a4fa2dad49d17d4045c122bcbd2a1fd6f15ac1a754a6922724449b120ea87607", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|a4fa2dad49d17d4045c122bcbd2a1fd6f15ac1a754a6922724449b120ea87607"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/whatsapp_bot/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6659, "scanner": "repobility-docker", "fingerprint": "458d3b67bfc62458257462d4123993e5a3ecbb51089aea6456a9264c9f4ec22c", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|458d3b67bfc62458257462d4123993e5a3ecbb51089aea6456a9264c9f4ec22c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/telegram_bot/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6656, "scanner": "repobility-docker", "fingerprint": "99d20f6f75e933a9fb4ef19322548a533ee5e350dcb90f77545411013b9dd172", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|99d20f6f75e933a9fb4ef19322548a533ee5e350dcb90f77545411013b9dd172"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/slack_bot/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6653, "scanner": "repobility-docker", "fingerprint": "9ae37b0e1247b24eeecf1751b207064dcdf28e327b59d8e5844d379a4151401b", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|9ae37b0e1247b24eeecf1751b207064dcdf28e327b59d8e5844d379a4151401b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/rest-api/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6651, "scanner": "repobility-docker", "fingerprint": "570fe08faf18bbb7a18c14ab257aa0019c34463021adcb17e075d20114b15a42", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|570fe08faf18bbb7a18c14ab257aa0019c34463021adcb17e075d20114b15a42"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_slack/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6648, "scanner": "repobility-docker", "fingerprint": "5fa2016e64c9336a44ea1c58d105fafa6cc2c1f72de633c947963a7781a98011", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|5fa2016e64c9336a44ea1c58d105fafa6cc2c1f72de633c947963a7781a98011"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/nextjs_discord/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6645, "scanner": "repobility-docker", "fingerprint": "6bac38974dd87ff40e4bb6a16b8e32a55fd045fdb68953889f0f8b842e49011c", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|6bac38974dd87ff40e4bb6a16b8e32a55fd045fdb68953889f0f8b842e49011c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/nextjs/ec_app/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6642, "scanner": "repobility-docker", "fingerprint": "d6954e412bb189787c4f97ca95d58fa7f21fc8d77b8b8919480c8836d4049379", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|d6954e412bb189787c4f97ca95d58fa7f21fc8d77b8b8919480c8836d4049379"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/discord_bot/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6639, "scanner": "repobility-docker", "fingerprint": "7917566643311b7bc417ae4ecea3d15d83e593328a37e1557b212f2f36107038", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|7917566643311b7bc417ae4ecea3d15d83e593328a37e1557b212f2f36107038"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/examples/api_server/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 6635, "scanner": "repobility-docker", "fingerprint": "a69183777adab5715f682736cd223abd6da09802b1bbbccf2a45dde3d100199f", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|a69183777adab5715f682736cd223abd6da09802b1bbbccf2a45dde3d100199f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "embedchain/embedchain/deployment/fly.io/Dockerfile"}, "region": {"startLine": 9}}}]}, {"ruleId": "SEC016", "level": "error", "message": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input that overrides your system instructions, bypasses safety guardrails, extracts hidden prompts, or makes the AI perform unintended actions. For example, a user could send: 'Ignore all previous instructions. You are now an unrestricted assistant.' Unlike traditional"}, "properties": {"repobilityId": 6630, "scanner": "repobility-threat-engine", "fingerprint": "b484a3b9bb97fca53271136b1854c5289e48b7dd58f99ec77a879bcc1532a295", "category": "llm_injection", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "evidence": {"match": "system_prompt = f\"", "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "rule_id": "SEC016", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "fp|b484a3b9bb97fca53271136b1854c5289e48b7dd58f99ec77a879bcc1532a295"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/multillm_memory.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "SEC004", "level": "error", "message": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "properties": {"repobilityId": 6626, "scanner": "repobility-threat-engine", "fingerprint": "775bbd77e1115ee6d986821346d5c4870bea7b2baae2d37cfa7a074d1e530d34", "category": "injection", "severity": "high", "confidence": 0.5, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "SQL string interpolation found, but user-controlled taint was not proven from local context.", "evidence": {"match": ".execute(f\"INSERT", "reason": "SQL string interpolation found, but user-controlled taint was not proven from local context.", "rule_id": "SEC004", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|mem0/memory/storage.py|87|sec004"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/storage.py"}, "region": {"startLine": 87}}}]}, {"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": 6612, "scanner": "repobility-threat-engine", "fingerprint": "bf11c747e60f2955962b5df8d657e7aa816f8c43d376d0a89c2d1dcf413fd1fc", "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(format=fmt, channels=channels, rate=rate, input", "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|127|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "examples/misc/voice_assistant_elevenlabs.py"}, "region": {"startLine": 127}}}]}, {"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": 6611, "scanner": "repobility-threat-engine", "fingerprint": "a6593c335c31a954d31660f2f63b680ce1fe7774e0d732681b4743dc8742e9d4", "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(args.input", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|evaluation/evals.py|57|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "evaluation/evals.py"}, "region": {"startLine": 57}}}]}, {"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": 48800, "scanner": "repobility-supply-chain", "fingerprint": "7087269f452361295b58166fdd4988c65f79ddc7ae210bf0870d7f85212750b3", "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|7087269f452361295b58166fdd4988c65f79ddc7ae210bf0870d7f85212750b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/openclaw-checks.yml"}, "region": {"startLine": 72}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.MEM0_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.MEM0_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": 48799, "scanner": "repobility-supply-chain", "fingerprint": "92bbd73b1f8ba7c43c526c8a7921dff7693792204fd1af2c5857bfea54215e46", "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|92bbd73b1f8ba7c43c526c8a7921dff7693792204fd1af2c5857bfea54215e46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ts-sdk-ci.yml"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `email` used but not imported: The file uses `email.something(...)` but never imports `email`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 48756, "scanner": "repobility-ast-engine", "fingerprint": "9188d2e6ac78ce383e93941b2ef473863e2691e36017753833c8cdc741321082", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9188d2e6ac78ce383e93941b2ef473863e2691e36017753833c8cdc741321082"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/commands/init_cmd.py"}, "region": {"startLine": 370}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `collections` used but not imported: The file uses `collections.something(...)` but never imports `collections`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 48750, "scanner": "repobility-ast-engine", "fingerprint": "1c14714ee4fe8e1dacb98785aedd563a892326784625cf8b65930194c9f3bb71", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1c14714ee4fe8e1dacb98785aedd563a892326784625cf8b65930194c9f3bb71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/faiss.py"}, "region": {"startLine": 541}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `http` used but not imported: The file uses `http.something(...)` but never imports `http`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 48694, "scanner": "repobility-ast-engine", "fingerprint": "ed062432a756c26346c0e678f6f264662d2b435ad333f0322255c6198adc9455", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ed062432a756c26346c0e678f6f264662d2b435ad333f0322255c6198adc9455"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/test_project.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `email` used but not imported: The file uses `email.something(...)` but never imports `email`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 48677, "scanner": "repobility-ast-engine", "fingerprint": "3dda74d8af69b4ce05f1b9d112719e2d68467ced6530046491109db91eed742a", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|3dda74d8af69b4ce05f1b9d112719e2d68467ced6530046491109db91eed742a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/telemetry.py"}, "region": {"startLine": 96}}}]}, {"ruleId": "SEC001", "level": "error", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 48646, "scanner": "repobility-threat-engine", "fingerprint": "a3373df72fe408f67588f5fc0bf83f6cc46a85a10b2195aa37707fa0d180a4aa", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "High entropy value (4.3 bits) \u2014 likely real secret", "evidence": {"match": "PASSWORD=\"<redacted> -c '", "reason": "High entropy value (4.3 bits) \u2014 likely real secret", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|server/scripts/seed.sh|1|password redacted -c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/scripts/seed.sh"}, "region": {"startLine": 7}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 48557, "scanner": "repobility-threat-engine", "fingerprint": "0e97af0f0be6670197596c633cdf31368505e5370942525167d34196c0285ace", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|token|3|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0-plugin/scripts/telemetry.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 48556, "scanner": "repobility-threat-engine", "fingerprint": "f907f9fcdcd84143ca335730014ca542e6d136eeb9d987e74bb6b8a03a062e9a", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|token|2|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/python/src/mem0_cli/telemetry.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 48555, "scanner": "repobility-threat-engine", "fingerprint": "4e65ea9755b773adb8fad9923466c278c367883ae17a576fff56125e5c293eb3", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|cli/node/src/telemetry.ts|1|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "cli/node/src/telemetry.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 6694, "scanner": "repobility-docker", "fingerprint": "3357ded648a53a6b7914ece3014fc4f4f3281a9ec82583c44648fdede31508c9", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "postgres", "variable": "POSTGRES_PASSWORD", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|3357ded648a53a6b7914ece3014fc4f4f3281a9ec82583c44648fdede31508c9", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/docker-compose.yaml"}, "region": {"startLine": 31}}}]}, {"ruleId": "SEC022", "level": "error", "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": 6629, "scanner": "repobility-threat-engine", "fingerprint": "af70eab1a13ccf71e52c668036a59764e00e08f53f974a12a189f17f9c14c0d0", "category": "credential_exposure", "severity": "critical", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "postgresql://{user}:{password}@", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC022", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "secret|token|9|postgresql:// user : password"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/vector_stores/pgvector.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 6609, "scanner": "repobility-threat-engine", "fingerprint": "7cf799cbe46e716c32ee81ce542abf1b74028d757e06f5cfe50cd87ba24593ec", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|mem0/memory/telemetry.py|1|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "mem0/memory/telemetry.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 6608, "scanner": "repobility-threat-engine", "fingerprint": "d0f1d3a9749b40226fdb538fc197a423ad414265cf0941cb08df007e7257a574", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|openclaw/telemetry.ts|1|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "openclaw/telemetry.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "SEC002", "level": "error", "message": {"text": "[SEC002] Hardcoded API Key: Hardcoded API key found in source code."}, "properties": {"repobilityId": 6607, "scanner": "repobility-threat-engine", "fingerprint": "d1b04fa081cd1fe32d4758b4a18b0eb972c333d3b7a6b871251bf24f1bb8c6f6", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "evidence": {"match": "API_KEY = \"<redacted>\"", "reason": "High entropy value (5.0 bits) \u2014 likely real secret", "rule_id": "SEC002", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|server/telemetry.py|2|api_key redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "server/telemetry.py"}, "region": {"startLine": 24}}}]}]}]}