{"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: `}` has no version pin: Unpinned pip requirement means every fresh install may resolve a di", "shortDescription": {"text": "[MINED124] requirements.txt: `}` 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 ne"}, "fullDescription": {"text": "Replace `}` with `}==<version>` and manage upgrades through PRs / Dependabot."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "medium", "confidence": 0.9, "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": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "WEB015", "name": "Public web app has no Content Security Policy", "shortDescription": {"text": "Public web app has no Content Security Policy"}, "fullDescription": {"text": "Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "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": "DKR014", "name": "Dockerfile copies broad context with incomplete .dockerignore", "shortDescription": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "fullDescription": {"text": "Tighten .dockerignore or replace COPY . with explicit COPY statements."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.76, "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": "DKR009", "name": "Dockerfile separates apt update from install", "shortDescription": {"text": "Dockerfile separates apt update from install"}, "fullDescription": {"text": "Combine update and install in the same RUN instruction and clean package indexes in that layer."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.86, "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": "Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "AIC001", "name": "Parallel implementation file sits beside a canonical file", "shortDescription": {"text": "Parallel implementation file sits beside a canonical file"}, "fullDescription": {"text": "Merge the intended change into the canonical file, update tests/imports, and delete the parallel implementation if it is not the active entry point."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.82, "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": "SEC134", "name": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left ", "shortDescription": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets"}, "fullDescription": {"text": "Move dummy values to fixtures / seed files. In application code, require these to come from config or fail closed. Add a CI grep that rejects 'lorem ipsum' and 'example.com' outside test files."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "WEB011", "name": "Public web app has no humans.txt", "shortDescription": {"text": "Public web app has no humans.txt"}, "fullDescription": {"text": "Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "WEB008", "name": "Public docs site has no llms.txt", "shortDescription": {"text": "Public docs site has no llms.txt"}, "fullDescription": {"text": "Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "WEB002", "name": "Public web app has no sitemap", "shortDescription": {"text": "Public web app has no sitemap"}, "fullDescription": {"text": "Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "WEB001", "name": "Public web app has no robots.txt", "shortDescription": {"text": "Public web app has no robots.txt"}, "fullDescription": {"text": "Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKR010", "name": "Dockerfile leaves apt package indexes in the image layer", "shortDescription": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "fullDescription": {"text": "End the apt install layer with `rm -rf /var/lib/apt/lists/*`."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": "Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AIC005", "name": "Duplicate top-level symbol appears in a patch-style file", "shortDescription": {"text": "Duplicate top-level symbol appears in a patch-style file"}, "fullDescription": {"text": "Keep one authoritative implementation, update imports to point at it, and remove or rename the duplicate symbol."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "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": "DKR002", "name": "Compose service `openclaw-cli` image is selected through a build variable", "shortDescription": {"text": "Compose service `openclaw-cli` image is selected through a build variable"}, "fullDescription": {"text": "Resolve the variable to a versioned tag or digest in production builds and document the allowed images."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "info", "confidence": 0.48, "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": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 18 more): Same pattern found in 18 additional f", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 18 more): Same pattern found in 18 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": "MINED054", "name": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely.", "shortDescription": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC118", "name": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 2 more): Same pattern found in 2 additional files. ", "shortDescription": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Use `uuid.uuid4()` (random) or `secrets.token_urlsafe()` for tokens. In Go, use `uuid.NewRandom()` (google/uuid)."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC114", "name": "[SEC114] path.join / Path() on user-controlled segment without containment check (and 5 more): Same pattern found in 5 a", "shortDescription": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "fullDescription": {"text": "After joining, re-check containment: `if !strings.HasPrefix(filepath.Clean(joined), filepath.Clean(baseDir)+string(os.PathSeparator)) { error }`. In Node: `path.resolve(base, x); if (!resolved.startsWith(base + path.sep)) throw`."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal (and 10 more): Same pattern found in 10 additional files. Review if nee", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout.", "shortDescription": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "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": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 9 more): Same pattern found in 9 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 9 more): Same pattern found in 9 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": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 51 more): Same pattern found in 51 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 51 more): Same pattern found in 51 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": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 74 more): Same pattern found in 74 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 74 more): Same pattern found in 74 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 173 more): Same pattern found in 173 ad", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 173 more): Same pattern found in 173 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": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 8 more): Same pattern found in 8 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 8 more): Same pattern found in 8 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": "MINED134", "name": "[MINED134] Binary file `apps/android/gradle/wrapper/gradle-wrapper.jar` committed in source repo: `apps/android/gradle/w", "shortDescription": {"text": "[MINED134] Binary file `apps/android/gradle/wrapper/gradle-wrapper.jar` committed in source repo: `apps/android/gradle/wrapper/gradle-wrapper.jar` is a .jar binary (48,966 bytes) committed to a repo that otherwise has 17058 source files. Tr"}, "fullDescription": {"text": "Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` resolves the tag at build time. The ", "shortDescription": {"text": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images shou"}, "fullDescription": {"text": "Replace with: `FROM ubuntu:24.04@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED126", "name": "[MINED126] Workflow container/services image `ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` unpinned: `conta", "shortDescription": {"text": "[MINED126] Workflow container/services image `ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` unpinned: `container/services image: ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` without `@sha256:...` pulls a mutable tag"}, "fullDescription": {"text": "Replace with `ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04@sha256:<digest>`. Re-pin via Dependabot Docker scope."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run t", "shortDescription": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) in"}, "fullDescription": {"text": "Replace with: `uses: actions/checkout@<40-char-sha>  # v6` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED131", "name": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.14.1`: `.pre-commit-", "shortDescription": {"text": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.14.1`: `.pre-commit-config.yaml` references `https://github.com/astral-sh/ruff-pre-commit` at `rev: v0.14.1`. If `{rev}` is a branch or vers"}, "fullDescription": {"text": "Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.temp_dir` used but never assigned in __init__: Method `tearDown` of class `TestQuickValidate` reads `se", "shortDescription": {"text": "[MINED108] `self.temp_dir` used but never assigned in __init__: Method `tearDown` of class `TestQuickValidate` reads `self.temp_dir`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the f"}, "fullDescription": {"text": "Initialize `self.temp_dir = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN004", "name": "Consent is collected in UI without visible backend audit persistence", "shortDescription": {"text": "Consent is collected in UI without visible backend audit persistence"}, "fullDescription": {"text": "Persist consent as a backend record with subject, actor, purpose, scope, legal text version, timestamp, IP address, user agent, and revocation state."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "DKR006", "name": "Dockerfile pipes a remote script into a shell", "shortDescription": {"text": "Dockerfile pipes a remote script into a shell"}, "fullDescription": {"text": "Download the artifact, verify its checksum or signature, pin the version, and then execute it."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "SEC035", "name": "[SEC035] Unbounded Resource Allocation \u2014 DoS risk: Allocating resources (buffers, recursion stack, large ranges) based o", "shortDescription": {"text": "[SEC035] Unbounded Resource Allocation \u2014 DoS risk: Allocating resources (buffers, recursion stack, large ranges) based on user input without an upper bound. Attackers send `size=10000000` to exhaust memory, or trigger expensive computation."}, "fullDescription": {"text": "Cap user-controlled sizes BEFORE allocation:\n  size = min(int(request.args.get('n', 100)), MAX_SIZE)\nSet framework-level limits:\n  Flask:    app.config['MAX_CONTENT_LENGTH'] = 10 * 1024 * 1024\n  FastAPI:  use middleware to enforce request size\n  Django:   DATA_UPLOAD_MAX_MEMORY_SIZE in settings.py\nNever raise `sys.setrecursionlimit` past 10K without a deeper review."}, "properties": {"scanner": "repobility-threat-engine", "category": "resource_exhaustion", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC033", "name": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without fil", "shortDescription": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting ever"}, "fullDescription": {"text": "Sanitize keys BEFORE merge:\n  function sanitize(obj) {\n    delete obj.__proto__;\n    delete obj.constructor;\n    delete obj.prototype;\n    return obj;\n  }\nOr use Object.create(null) for the target. Or use Map() for user-key-indexed data. Upgrade lodash >= 4.17.21 for partial mitigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "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": "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": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported fr", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED008", "name": "[MINED008] Swift Force Unwrap: optional! crashes on nil. Use guard let or if let.", "shortDescription": {"text": "[MINED008] Swift Force Unwrap: optional! crashes on nil. Use guard let or if let."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC018", "name": "[SEC018] AI-Agent Secret Retrieval Command: A command that prints or embeds credentials was committed. AI coding agents ", "shortDescription": {"text": "[SEC018] AI-Agent Secret Retrieval Command: A command that prints or embeds credentials was committed. AI coding agents often add these commands while trying to help with setup or deployment, but they can leak live secrets through logs, she"}, "fullDescription": {"text": "Remove the command, use a secret manager or CI masked secret, and rotate any credential that may have been printed."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_requ", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_API_TOKEN }` lets a PR from any fork exfiltrat"}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "SEC084", "name": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scop", "shortDescription": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "fullDescription": {"text": "Use static imports or a static mapping `const modules = { foo: require('./foo') }`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/711"}, "properties": {"repository": "openclaw/openclaw", "repoUrl": "https://github.com/openclaw/openclaw", "branch": "main"}, "results": [{"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `}` 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": 57478, "scanner": "repobility-supply-chain", "fingerprint": "acd3fa0bce813e073c5b14dad409dfee6ed555f8b44f477ad9d005851ec0ec93", "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|acd3fa0bce813e073c5b14dad409dfee6ed555f8b44f477ad9d005851ec0ec93"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `};` 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": 57477, "scanner": "repobility-supply-chain", "fingerprint": "26d25548f2883713b50da8deddb5aecd47c527ef2437c7421039922230b0042c", "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|26d25548f2883713b50da8deddb5aecd47c527ef2437c7421039922230b0042c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `install: [],` 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": 57476, "scanner": "repobility-supply-chain", "fingerprint": "c6e85fe57fc47fcba1ca1952f7ef2048015a1ff1a6c27297f4d439e82027b030", "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|c6e85fe57fc47fcba1ca1952f7ef2048015a1ff1a6c27297f4d439e82027b030"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `configChecks: [],` 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": 57475, "scanner": "repobility-supply-chain", "fingerprint": "5ed7dad33aa8c48ae9de9037396eaf4c37fb27553a0599d2d45419c80b2c58bb", "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|5ed7dad33aa8c48ae9de9037396eaf4c37fb27553a0599d2d45419c80b2c58bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `missing: createEmptyRequirements(),` 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": 57474, "scanner": "repobility-supply-chain", "fingerprint": "833c38ceb47e0d1d8e789def77f14b8de4e370132542347ae06883c3192e691d", "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|833c38ceb47e0d1d8e789def77f14b8de4e370132542347ae06883c3192e691d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `requirements: createEmptyRequirements(),` 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": 57473, "scanner": "repobility-supply-chain", "fingerprint": "0f8cf7761ef73fa8a18654d8f2047b8483c7be8c7d031fcfa9ad3b44b28ff021", "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|0f8cf7761ef73fa8a18654d8f2047b8483c7be8c7d031fcfa9ad3b44b28ff021"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `return {` 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": 57472, "scanner": "repobility-supply-chain", "fingerprint": "ad6d1b9b43390b23d6fb38cf8df89cc35e4792fce6ef5ff36accb657e40afd58", "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|ad6d1b9b43390b23d6fb38cf8df89cc35e4792fce6ef5ff36accb657e40afd58"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `export function createEmptyInstallChecks() {` 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": 57471, "scanner": "repobility-supply-chain", "fingerprint": "a2e0f552c4dba61eea02fade30507b6987f571bda147e36db3d03f38c99fafe2", "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|a2e0f552c4dba61eea02fade30507b6987f571bda147e36db3d03f38c99fafe2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `/** Build an empty install-check result with all requirement buckets present. */` 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": 57470, "scanner": "repobility-supply-chain", "fingerprint": "90956a8b1cae11344c1784457b42b0819e77967c38dd0723d8c60ed4469c5b37", "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|90956a8b1cae11344c1784457b42b0819e77967c38dd0723d8c60ed4469c5b37"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `}` 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": 57469, "scanner": "repobility-supply-chain", "fingerprint": "2ad649aefddd6f17ac1215439e3e9918495e71c81308bb586e1e1fcb4ff0973d", "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|2ad649aefddd6f17ac1215439e3e9918495e71c81308bb586e1e1fcb4ff0973d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `};` 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": 57468, "scanner": "repobility-supply-chain", "fingerprint": "47f75341fec3b66c455bffc76277fa33577e4b64707ade7fbd0a1ef54d86efce", "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|47f75341fec3b66c455bffc76277fa33577e4b64707ade7fbd0a1ef54d86efce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 9}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `os: [],` 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": 57467, "scanner": "repobility-supply-chain", "fingerprint": "0c3af3cf321a9636b69d29a8f8761d32f144f9948b47ee0b01899afd53ec5173", "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|0c3af3cf321a9636b69d29a8f8761d32f144f9948b47ee0b01899afd53ec5173"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `config: [],` 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": 57466, "scanner": "repobility-supply-chain", "fingerprint": "d84357d13a9b14e5c8f9ce68e3647523a9cf1caf0cfbfe3b42bbdd22ea472bb2", "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|d84357d13a9b14e5c8f9ce68e3647523a9cf1caf0cfbfe3b42bbdd22ea472bb2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `env: [],` 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": 57465, "scanner": "repobility-supply-chain", "fingerprint": "a41287d5dd487eb29ed68198c8d1733d76cf58c2c81ce383ac8285a54d28ea89", "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|a41287d5dd487eb29ed68198c8d1733d76cf58c2c81ce383ac8285a54d28ea89"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `anyBins: [],` 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": 57464, "scanner": "repobility-supply-chain", "fingerprint": "3625f908ce3c2f4f368093816fb11e064af533a6dbe4828528f31b693cfd5133", "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|3625f908ce3c2f4f368093816fb11e064af533a6dbe4828528f31b693cfd5133"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `bins: [],` 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": 57463, "scanner": "repobility-supply-chain", "fingerprint": "168b4b3dc558ecf4e3939d8b08a3c0b3736737ab37192c6910bcbdc198c446e2", "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|168b4b3dc558ecf4e3939d8b08a3c0b3736737ab37192c6910bcbdc198c446e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `return {` 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": 57462, "scanner": "repobility-supply-chain", "fingerprint": "e3b0ba0026b73ef641406d28469928c5b25283206b10efaccf6185bd8346b52f", "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|e3b0ba0026b73ef641406d28469928c5b25283206b10efaccf6185bd8346b52f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `function createEmptyRequirements() {` 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": 57461, "scanner": "repobility-supply-chain", "fingerprint": "4d0ecaa9882855d2778f6655a3ff5d4fcd8a92ec8d77a8a13239acb866f2eb9b", "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|4d0ecaa9882855d2778f6655a3ff5d4fcd8a92ec8d77a8a13239acb866f2eb9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `// Shared empty requirement/install-check fixtures for CLI tests.` 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": 57460, "scanner": "repobility-supply-chain", "fingerprint": "238136f332c500af31f0d139acbc0c4bbd580f77bccebe342280bf03b6412ecc", "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|238136f332c500af31f0d139acbc0c4bbd580f77bccebe342280bf03b6412ecc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/requirements-test-fixtures.ts"}, "region": {"startLine": 1}}}]}, {"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": 57402, "scanner": "repobility-ast-engine", "fingerprint": "1930fd8504e7c6a715acb9e7c49ca2b75fc2f5a74efa862e27166f64e21feab2", "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|1930fd8504e7c6a715acb9e7c49ca2b75fc2f5a74efa862e27166f64e21feab2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/package_skill.py"}, "region": {"startLine": 114}}}]}, {"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": 57398, "scanner": "repobility-ast-engine", "fingerprint": "1be82e75e9a01941b1a93cb8f16986b590cfd6497e4ff5819e3dae16a55ae455", "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|1be82e75e9a01941b1a93cb8f16986b590cfd6497e4ff5819e3dae16a55ae455"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/init_skill.py"}, "region": {"startLine": 300}}}]}, {"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": 57397, "scanner": "repobility-ast-engine", "fingerprint": "90409bcb7e2eb2b1c63e58ec3d783dc08dc5fe775714d447ebf0dbf23db8a079", "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|90409bcb7e2eb2b1c63e58ec3d783dc08dc5fe775714d447ebf0dbf23db8a079"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/init_skill.py"}, "region": {"startLine": 292}}}]}, {"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": 57396, "scanner": "repobility-ast-engine", "fingerprint": "28e2ca0f32e87f4495a34235a6088f128fe40ce5e26f30ea2c51c9f17a21385d", "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|28e2ca0f32e87f4495a34235a6088f128fe40ce5e26f30ea2c51c9f17a21385d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/init_skill.py"}, "region": {"startLine": 280}}}]}, {"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": 57388, "scanner": "repobility-ast-engine", "fingerprint": "1edbe36c30e6663d3b0cfce9a63393955bd1f0fa972164e19d1bc063a668ac45", "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|1edbe36c30e6663d3b0cfce9a63393955bd1f0fa972164e19d1bc063a668ac45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/model_usage.py"}, "region": {"startLine": 259}}}]}, {"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": 57387, "scanner": "repobility-ast-engine", "fingerprint": "7ff2ab40e93ef6ebc351eac814dcdab95b489ba5b5757e89f43b6613f75eb32f", "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|7ff2ab40e93ef6ebc351eac814dcdab95b489ba5b5757e89f43b6613f75eb32f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/model_usage.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 57371, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB015", "level": "warning", "message": {"text": "Public web app has no Content Security Policy"}, "properties": {"repobilityId": 57370, "scanner": "repobility-web-presence", "fingerprint": "7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63", "category": "quality", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no CSP header, framework header config, Helmet policy, or CSP meta tag was discovered.", "evidence": {"rule_id": "WEB015", "scanner": "repobility-web-presence", "references": ["https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "index.html"}, "region": {"startLine": 1}}}]}, {"ruleId": "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": 57364, "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": ["Express", "Next.js"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 57361, "scanner": "repobility-docker", "fingerprint": "b9ba9940f0fec997c41b6e93ca998cf787c7e6e352a63bdb0b848f08103b7f14", "category": "docker", "severity": "medium", "confidence": 0.76, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Broad context copy found and .dockerignore misses sensitive defaults.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|b9ba9940f0fec997c41b6e93ca998cf787c7e6e352a63bdb0b848f08103b7f14", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/Dockerfile.qr-import"}, "region": {"startLine": 31}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 57360, "scanner": "repobility-docker", "fingerprint": "54984a675337ba7357c21cbe9e3cf0e6a38d59094d9aba3d5e8a1389f7e32ab4", "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": "bare", "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|54984a675337ba7357c21cbe9e3cf0e6a38d59094d9aba3d5e8a1389f7e32ab4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/Dockerfile"}, "region": {"startLine": 41}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 57354, "scanner": "repobility-docker", "fingerprint": "5570ca09c125f1b6a240484a03e7b1d8fcdfa4db43f149f29282c5017246788a", "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": "node:24-bookworm-slim@sha256:242549cd46785b480c832479a730f4f2a20865d61ea2e404fdb2a5c3d3b73ecf", "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|5570ca09c125f1b6a240484a03e7b1d8fcdfa4db43f149f29282c5017246788a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/install-sh-smoke/Dockerfile"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR009", "level": "warning", "message": {"text": "Dockerfile separates apt update from install"}, "properties": {"repobilityId": 57353, "scanner": "repobility-docker", "fingerprint": "5cfdc113a616ca8bfbd54694eba56fd7071ab9caaa8d018d4ffa5817d9b5ae3b", "category": "docker", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Package index update appears without package installation in the same layer.", "evidence": {"rule_id": "DKR009", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|5cfdc113a616ca8bfbd54694eba56fd7071ab9caaa8d018d4ffa5817d9b5ae3b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/install-sh-smoke/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR009", "level": "warning", "message": {"text": "Dockerfile separates apt update from install"}, "properties": {"repobilityId": 57351, "scanner": "repobility-docker", "fingerprint": "b5faa9ba8efbc2e2fe8dba3e63dc3a8ad088c577f0dbf429617ec68905933087", "category": "docker", "severity": "medium", "confidence": 0.86, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Package index update appears without package installation in the same layer.", "evidence": {"rule_id": "DKR009", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|b5faa9ba8efbc2e2fe8dba3e63dc3a8ad088c577f0dbf429617ec68905933087"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/install-sh-nonroot/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 57349, "scanner": "repobility-docker", "fingerprint": "12cea713ba3842f7ace01beaca4e6a52dcab09c1d5b83c9f43f8b5be37452ace", "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": "node:24-bookworm-slim@sha256:242549cd46785b480c832479a730f4f2a20865d61ea2e404fdb2a5c3d3b73ecf", "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|12cea713ba3842f7ace01beaca4e6a52dcab09c1d5b83c9f43f8b5be37452ace"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/cleanup-smoke/Dockerfile"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 57348, "scanner": "repobility-docker", "fingerprint": "47b68cc0c136ef956cd5226b9dda318fe7f1efa79405b759a1bc521b74d2c52d", "category": "docker", "severity": "medium", "confidence": 0.76, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Broad context copy found and .dockerignore misses sensitive defaults.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|47b68cc0c136ef956cd5226b9dda318fe7f1efa79405b759a1bc521b74d2c52d", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/cleanup-smoke/Dockerfile"}, "region": {"startLine": 31}}}]}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 57340, "scanner": "repobility-docker", "fingerprint": "2a655b6f226b2d9d40d36264f677e7ae1fea7a62475b9617a4708c08a89f1c78", "category": "docker", "severity": "medium", "confidence": 0.76, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Broad context copy found and .dockerignore misses sensitive defaults.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|2a655b6f226b2d9d40d36264f677e7ae1fea7a62475b9617a4708c08a89f1c78", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 99}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 57335, "scanner": "repobility-docker", "fingerprint": "383a45dde1793f52eaaaa6b6198ad8b83c15f35d82d1c7c455ec7c0d3602275c", "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": "ubuntu:24.04", "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|383a45dde1793f52eaaaa6b6198ad8b83c15f35d82d1c7c455ec7c0d3602275c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/images/live-media-runner/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 57334, "scanner": "repobility-agent-runtime", "fingerprint": "43183eb6b617911fe13ae52c817b6bb64df1acc2a90c9a7713d23cc03691e6cc", "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|43183eb6b617911fe13ae52c817b6bb64df1acc2a90c9a7713d23cc03691e6cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/install/exe-dev.md"}, "region": {"startLine": 67}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 57317, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3568a1e7666c0fe5d9f5388524f97b0d7673905d3cc71aa6c01aec8aecd5593f", "category": "quality", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Source filename has a patch-style suffix and a same-directory canonical sibling exists.", "evidence": {"suffix": "update", "rule_id": "AIC001", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195", "https://knip.dev/"], "canonical_file": "src/commands/status.ts", "correlation_key": "fp|3568a1e7666c0fe5d9f5388524f97b0d7673905d3cc71aa6c01aec8aecd5593f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/commands/status.update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 57316, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e08654d06223efbc10f76f86e6cc3ca5d9c7da9a23d473bcb0cc976125c7a5a3", "category": "quality", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Source filename has a patch-style suffix and a same-directory canonical sibling exists.", "evidence": {"suffix": "update", "rule_id": "AIC001", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195", "https://knip.dev/"], "canonical_file": "src/commands/doctor.ts", "correlation_key": "fp|e08654d06223efbc10f76f86e6cc3ca5d9c7da9a23d473bcb0cc976125c7a5a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/commands/doctor-update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 57310, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b6db6c68d3387cd4c37a4a6640340c411742195a014d41e3a9e15bdf1b21ff35", "category": "quality", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Source filename has a patch-style suffix and a same-directory canonical sibling exists.", "evidence": {"suffix": "update", "rule_id": "AIC001", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195", "https://knip.dev/"], "canonical_file": "src/agents/apply-patch.ts", "correlation_key": "fp|b6db6c68d3387cd4c37a4a6640340c411742195a014d41e3a9e15bdf1b21ff35"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/agents/apply-patch-update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 57303, "scanner": "repobility-ai-code-hygiene", "fingerprint": "89635fe85c55ef3014dc4eb3b5cf7e9673cf61c79b417c083c17f0881b89187f", "category": "quality", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Source filename has a patch-style suffix and a same-directory canonical sibling exists.", "evidence": {"suffix": "backup", "rule_id": "AIC001", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195", "https://knip.dev/"], "canonical_file": "extensions/matrix/src/migration-snapshot.ts", "correlation_key": "fp|89635fe85c55ef3014dc4eb3b5cf7e9673cf61c79b417c083c17f0881b89187f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/migration-snapshot-backup.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 57280, "scanner": "repobility-threat-engine", "fingerprint": "70a7f56cd808ce6e83814365a60f1872ef8f20d2e42723fe24f45d35f2eacc47", "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|70a7f56cd808ce6e83814365a60f1872ef8f20d2e42723fe24f45d35f2eacc47"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/plugin-registration.ts"}, "region": {"startLine": 191}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 57279, "scanner": "repobility-threat-engine", "fingerprint": "fb3687a6b1e180b2561f99f73fc2213c63ca540ab9fe8a491b2c327e561662d0", "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|fb3687a6b1e180b2561f99f73fc2213c63ca540ab9fe8a491b2c327e561662d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/runtime-turn.ts"}, "region": {"startLine": 98}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 57278, "scanner": "repobility-threat-engine", "fingerprint": "3b66d3fc5ee1fdca80b850980970b78e326c6f1610345da242a1f9502266fdf0", "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|3b66d3fc5ee1fdca80b850980970b78e326c6f1610345da242a1f9502266fdf0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/process-lease.ts"}, "region": {"startLine": 114}}}]}, {"ruleId": "SEC134", "level": "warning", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets to swap them. In production, these break demo flows, send mail to a real example.com host (it's owned by IANA), and leak that the codebase had an AI scaffolding pass."}, "properties": {"repobilityId": 57264, "scanner": "repobility-threat-engine", "fingerprint": "782a6c497e3a8b83b38b0c9a46c5e7e499eb0d4d14f4b3d3b98448659f305799", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url: \"https://example.com", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|782a6c497e3a8b83b38b0c9a46c5e7e499eb0d4d14f4b3d3b98448659f305799"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/routes/existing-session.test-support.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "SEC134", "level": "warning", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets to swap them. In production, these break demo flows, send mail to a real example.com host (it's owned by IANA), and leak that the codebase had an AI scaffolding pass."}, "properties": {"repobilityId": 57263, "scanner": "repobility-threat-engine", "fingerprint": "851a4fd2e9fceae6f1a16782c4bec246e5eedd758ab241d4182c9fc1088ab6a1", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"user@example.com\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|851a4fd2e9fceae6f1a16782c4bec246e5eedd758ab241d4182c9fc1088ab6a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/SessionData.swift"}, "region": {"startLine": 151}}}]}, {"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": 57252, "scanner": "repobility-threat-engine", "fingerprint": "6c0ab8e32c5ba1f98c4e7627d66331fe17bf8f4b6b4fa00a43716dd2bcbab98a", "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|144|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/codex-trust-config.ts"}, "region": {"startLine": 144}}}]}, {"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": 57251, "scanner": "repobility-threat-engine", "fingerprint": "b3c527a85947707e0c9370faab142c2e32018eaf18f6dc63a5cb8ce97b0ec31c", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Eval(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|30|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/protocol/OpenClawProtocolConstants.kt"}, "region": {"startLine": 30}}}]}, {"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": 57250, "scanner": "repobility-threat-engine", "fingerprint": "39cd7b7e0f8887bfffcd79d6573b6b6e97327967a8c07cd2dd234842c673a2ed", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "eval(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|198|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/CanvasController.kt"}, "region": {"startLine": 198}}}]}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 57369, "scanner": "repobility-web-presence", "fingerprint": "bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1", "category": "quality", "severity": "low", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks like a public web app but no humans.txt file or route was discovered.", "evidence": {"rule_id": "WEB011", "scanner": "repobility-web-presence", "references": ["https://github.com/Lissy93/web-check"], "correlation_key": "fp|bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "humans.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB008", "level": "note", "message": {"text": "Public docs site has no llms.txt"}, "properties": {"repobilityId": 57368, "scanner": "repobility-web-presence", "fingerprint": "cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks public and documentation-heavy but no llms.txt file or route was discovered.", "evidence": {"rule_id": "WEB008", "scanner": "repobility-web-presence", "references": ["https://llmstxt.org/"], "correlation_key": "fp|cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "llms.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB002", "level": "note", "message": {"text": "Public web app has no sitemap"}, "properties": {"repobilityId": 57367, "scanner": "repobility-web-presence", "fingerprint": "fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf", "category": "quality", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no sitemap file or route was discovered.", "evidence": {"rule_id": "WEB002", "scanner": "repobility-web-presence", "references": ["https://www.sitemaps.org/protocol.html", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|fccbe72d13ca3ba9197ec37b0daa0802fb6d5ebff54b3eb9f09b59b0f8d0acdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "sitemap.xml"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB001", "level": "note", "message": {"text": "Public web app has no robots.txt"}, "properties": {"repobilityId": 57366, "scanner": "repobility-web-presence", "fingerprint": "cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no robots.txt file or route was discovered.", "evidence": {"rule_id": "WEB001", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "robots.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57358, "scanner": "repobility-docker", "fingerprint": "996b44dd2a300a26b264c20a4923eea276fed61e06f64b3ebc833a9a47ed1c21", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|996b44dd2a300a26b264c20a4923eea276fed61e06f64b3ebc833a9a47ed1c21"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/sandbox/Dockerfile.common"}, "region": {"startLine": 24}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57356, "scanner": "repobility-docker", "fingerprint": "a9062392c6b36f4313a633511491382f53ec5132350b720997b050b2d52d020b", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|a9062392c6b36f4313a633511491382f53ec5132350b720997b050b2d52d020b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/sandbox/Dockerfile.browser"}, "region": {"startLine": 9}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57355, "scanner": "repobility-docker", "fingerprint": "621238a76b6f0d4e01698ed0dfb7d95df30f03e7140d6912e14a622564ca3f33", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|621238a76b6f0d4e01698ed0dfb7d95df30f03e7140d6912e14a622564ca3f33"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/sandbox/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57350, "scanner": "repobility-docker", "fingerprint": "0270f44cbff0e4b9a7c401b71827014f5a1918ae3f18fcf982f328a22bad8c02", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|0270f44cbff0e4b9a7c401b71827014f5a1918ae3f18fcf982f328a22bad8c02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/install-sh-e2e/Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57347, "scanner": "repobility-docker", "fingerprint": "34b9770e92092ecd3d6397d682fff642a8c7ab19ff1fecac170eb15703996e01", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|34b9770e92092ecd3d6397d682fff642a8c7ab19ff1fecac170eb15703996e01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/cleanup-smoke/Dockerfile"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57346, "scanner": "repobility-docker", "fingerprint": "508ba018693b4cba2a77aa0d6c8563210f4157192ad73795b6b5929305429df6", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|508ba018693b4cba2a77aa0d6c8563210f4157192ad73795b6b5929305429df6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 258}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57345, "scanner": "repobility-docker", "fingerprint": "044b2a1b038a876aff1f17ad6145fd003a77bb4ff050780851b5b56335d8adef", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|044b2a1b038a876aff1f17ad6145fd003a77bb4ff050780851b5b56335d8adef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 242}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57344, "scanner": "repobility-docker", "fingerprint": "7e8ad2043994d3c2ed9db41f806d434d714a9cae4fb4c7709bb13c954a7dca5d", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|7e8ad2043994d3c2ed9db41f806d434d714a9cae4fb4c7709bb13c954a7dca5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 226}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57343, "scanner": "repobility-docker", "fingerprint": "028bb4a97df39af1cd223297d4c1708bf0f9fbfa92357045f25166edccce5e68", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|028bb4a97df39af1cd223297d4c1708bf0f9fbfa92357045f25166edccce5e68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 215}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 57342, "scanner": "repobility-docker", "fingerprint": "7d8b350bb43bbaf6dafe03ad2c88ca64d7a459f7109c050edb5bbe57fe08c076", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|7d8b350bb43bbaf6dafe03ad2c88ca64d7a459f7109c050edb5bbe57fe08c076"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 172}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 57336, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC005", "level": "note", "message": {"text": "Duplicate top-level symbol appears in a patch-style file"}, "properties": {"repobilityId": 57333, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3cf3b46479b969b6410d99d3607904316bb34a77fd580ec24a558bd20c15a4d3", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Patch-style file defines a top-level symbol also defined in another source file.", "evidence": {"symbol": "resolveMatrixConfigPath", "rule_id": "AIC005", "scanner": "repobility-ai-code-hygiene", "references": ["https://github.com/jendrikseipp/vulture", "https://knip.dev/"], "duplicate_file": "extensions/matrix/src/matrix/config-paths.ts", "correlation_key": "fp|3cf3b46479b969b6410d99d3607904316bb34a77fd580ec24a558bd20c15a4d3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/matrix/config-update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57332, "scanner": "repobility-ai-code-hygiene", "fingerprint": "93a635ec44baf9c47afe482dea688c3b57a08da5d384d577381448a1479f1e12", "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": "apps/macos/Sources/OpenClaw/GeneralSettings.swift", "duplicate_line": 534, "correlation_key": "fp|93a635ec44baf9c47afe482dea688c3b57a08da5d384d577381448a1479f1e12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/OnboardingView+Pages.swift"}, "region": {"startLine": 389}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57331, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4645bbc5eda496932e82c6c8ee6fedf1faf00ed51e30637fcb70603ea8035198", "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": "apps/macos/Sources/OpenClaw/ExecCommandResolution.swift", "duplicate_line": 219, "correlation_key": "fp|4645bbc5eda496932e82c6c8ee6fedf1faf00ed51e30637fcb70603ea8035198"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/ExecSystemRunCommandValidator.swift"}, "region": {"startLine": 188}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57330, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ee248a8223e27879ac7c6be07e0d0efdca16b9bf88cda3a503e28e6c271c2fa3", "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": "apps/macos/Sources/OpenClaw/ExecEnvInvocationUnwrapper.swift", "duplicate_line": 49, "correlation_key": "fp|ee248a8223e27879ac7c6be07e0d0efdca16b9bf88cda3a503e28e6c271c2fa3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/ExecSystemRunCommandValidator.swift"}, "region": {"startLine": 152}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57329, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8a476912ada32c1c9b4fc047076d0ff3613219a2f7af2f724e5ceac77e811812", "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": "apps/ios/Sources/Services/WatchConnectivityTransport.swift", "duplicate_line": 155, "correlation_key": "fp|8a476912ada32c1c9b4fc047076d0ff3613219a2f7af2f724e5ceac77e811812"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/WatchExtension/Sources/WatchConnectivityReceiver.swift"}, "region": {"startLine": 35}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57328, "scanner": "repobility-ai-code-hygiene", "fingerprint": "44d87690aa749e83e71a72053c3866add6e2f2b55394e703876697923fce17d1", "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": "apps/ios/Sources/Voice/TalkModeManager+Permissions.swift", "duplicate_line": 23, "correlation_key": "fp|44d87690aa749e83e71a72053c3866add6e2f2b55394e703876697923fce17d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Voice/VoiceWakeManager.swift"}, "region": {"startLine": 339}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57327, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0cd70ed387df31465ba17f33c93030a2b2b2f66ff940c43497c551882a2556a2", "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": "apps/ios/Sources/Design/ChatProTab.swift", "duplicate_line": 168, "correlation_key": "fp|0cd70ed387df31465ba17f33c93030a2b2b2f66ff940c43497c551882a2556a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/RootTabs.swift"}, "region": {"startLine": 476}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57326, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4bce1552ca4d99f11a948ccf9e0054e39c182114490ffc75dbd3edc6230f3390", "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": "apps/ios/Sources/Onboarding/GatewayOnboardingView.swift", "duplicate_line": 140, "correlation_key": "fp|4bce1552ca4d99f11a948ccf9e0054e39c182114490ffc75dbd3edc6230f3390"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Onboarding/OnboardingWizardView.swift"}, "region": {"startLine": 552}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57325, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6e07a743199f0b40ff4520669fcd51173d4efdd3e8340c120b374b567529ff67", "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": "apps/ios/Sources/Design/SettingsProTab.swift", "duplicate_line": 149, "correlation_key": "fp|6e07a743199f0b40ff4520669fcd51173d4efdd3e8340c120b374b567529ff67"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Onboarding/OnboardingWizardView.swift"}, "region": {"startLine": 164}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57324, "scanner": "repobility-ai-code-hygiene", "fingerprint": "94274885d4525c657b4d21ba26acb0c67dee0a6b1d139adafe0d6b75267e210c", "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": "apps/ios/Sources/Design/SettingsProTab.swift", "duplicate_line": 128, "correlation_key": "fp|94274885d4525c657b4d21ba26acb0c67dee0a6b1d139adafe0d6b75267e210c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Gateway/GatewayQuickSetupSheet.swift"}, "region": {"startLine": 105}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57323, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d9aed0e499961c5cd26d7a4e659e861ca0e0f52ca4f0258ecf711e0e860c4922", "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": "apps/ios/Sources/Design/AgentProTab+Overview.swift", "duplicate_line": 344, "correlation_key": "fp|d9aed0e499961c5cd26d7a4e659e861ca0e0f52ca4f0258ecf711e0e860c4922"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Design/SettingsProTabActions.swift"}, "region": {"startLine": 91}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57322, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dfd400ed4735796543590398bdbab249a7e440619837906f5300611df2caf3b6", "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": "apps/ios/Sources/Design/AgentProDreamingDestination.swift", "duplicate_line": 427, "correlation_key": "fp|dfd400ed4735796543590398bdbab249a7e440619837906f5300611df2caf3b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Design/AgentProTab+DetailComponents.swift"}, "region": {"startLine": 6}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57321, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ff87c4fe936f43f68bd2a2099cc5912f8fe9cee5e32be556d5612b0b7c228f87", "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": "apps/ios/Sources/Design/AgentProDreamingDestination.swift", "duplicate_line": 94, "correlation_key": "fp|ff87c4fe936f43f68bd2a2099cc5912f8fe9cee5e32be556d5612b0b7c228f87"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Design/AgentProTab+Destinations.swift"}, "region": {"startLine": 126}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57320, "scanner": "repobility-ai-code-hygiene", "fingerprint": "efb4705245bd3e803e8550a729fb7e45e424a9e08fb96d55f8e45d57336fb994", "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": "apps/ios/Sources/Design/AgentProDreamingDestination.swift", "duplicate_line": 424, "correlation_key": "fp|efb4705245bd3e803e8550a729fb7e45e424a9e08fb96d55f8e45d57336fb994"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Design/AgentProNodesDestination.swift"}, "region": {"startLine": 230}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57319, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d0c2e262f0f8663dc12c2a43dcf5fe2547a0e4b350a5e4c9134a79e1f0904a41", "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": "apps/android/app/src/play/java/ai/openclaw/app/node/SmsHandler.kt", "duplicate_line": 1, "correlation_key": "fp|d0c2e262f0f8663dc12c2a43dcf5fe2547a0e4b350a5e4c9134a79e1f0904a41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/thirdParty/java/ai/openclaw/app/node/SmsHandler.kt"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 57318, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d373d420b256ec709b5dde00c7a0a97fabaf8279aa5e7d09ac207b5089b55993", "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": "apps/android/app/src/main/java/ai/openclaw/app/ui/design/ClawComponents.kt", "duplicate_line": 355, "correlation_key": "fp|d373d420b256ec709b5dde00c7a0a97fabaf8279aa5e7d09ac207b5089b55993"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/ui/design/ClawNavigation.kt"}, "region": {"startLine": 56}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57315, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c31177e6a399ae46c830757ad28026425f6b6e22cffd298edae0e51c9396edd5", "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": "backup", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|c31177e6a399ae46c830757ad28026425f6b6e22cffd298edae0e51c9396edd5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/cli/program/register.backup.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57314, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9bc0574bad27f4814cc020a606fff66b0128b5aad3639f483c063ab4da74dfd0", "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": "final", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|9bc0574bad27f4814cc020a606fff66b0128b5aad3639f483c063ab4da74dfd0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/auto-reply/reply/private-message-tool-final.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57313, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3e3a31ae29c83be49a56f4987fa275eb0fe1af37379ca36beeda10a32119627d", "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": "copy", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|3e3a31ae29c83be49a56f4987fa275eb0fe1af37379ca36beeda10a32119627d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/auto-reply/reply/agent-runner-failure-copy.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57312, "scanner": "repobility-ai-code-hygiene", "fingerprint": "402d447dfdcdf21ee24e78e800916e6596afa9138bb8cab76ce9c4643f8d2659", "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": "rewrite", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|402d447dfdcdf21ee24e78e800916e6596afa9138bb8cab76ce9c4643f8d2659"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/agents/embedded-agent-runner/transcript-rewrite.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57311, "scanner": "repobility-ai-code-hygiene", "fingerprint": "40344ef3e60b38680ae6ccce1bc3ecd751a4c631b5120a17fd1622054f65dadd", "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": "copy", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|40344ef3e60b38680ae6ccce1bc3ecd751a4c631b5120a17fd1622054f65dadd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/agents/auth-profiles/failure-copy.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57309, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c6853f3a8ba8d3c4d7f4c56579df2f20196b5772a612da5ecf63714da86c978b", "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": "fix", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|c6853f3a8ba8d3c4d7f4c56579df2f20196b5772a612da5ecf63714da86c978b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/whatsapp/src/security-fix.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57308, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7b4b4fa8336df6e1f954a65eb1d0235dda8d745eefd8941027fe69daf4a48ee3", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "draft", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|7b4b4fa8336df6e1f954a65eb1d0235dda8d745eefd8941027fe69daf4a48ee3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/telegram/src/native-tool-progress-draft.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57307, "scanner": "repobility-ai-code-hygiene", "fingerprint": "732ab99a4178a5a27f1aee8b33b95dc7e5ddb8ebb858fc7803064a238b9a5c91", "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": "backup", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|732ab99a4178a5a27f1aee8b33b95dc7e5ddb8ebb858fc7803064a238b9a5c91"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/qqbot/src/engine/config/credential-backup.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57306, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9542b079643c6b94e608083c3ae2ece681dd80a2e655607acec9a72e56b2eee9", "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": "copy", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|9542b079643c6b94e608083c3ae2ece681dd80a2e655607acec9a72e56b2eee9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/openai/auth-choice-copy.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57305, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3bcba25b2ef73273ceb43a511769664ad25ff880728bcce9e9c57730a03d9995", "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|3bcba25b2ef73273ceb43a511769664ad25ff880728bcce9e9c57730a03d9995"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/matrix/config-update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 57304, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f4d23720fc41006f68c9e37de4aa1108d303405f71abfccbe6a31b727f9fc147", "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|f4d23720fc41006f68c9e37de4aa1108d303405f71abfccbe6a31b727f9fc147"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/profile-update.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Compose service `openclaw-cli` image is selected through a build variable"}, "properties": {"repobilityId": 57363, "scanner": "repobility-docker", "fingerprint": "37296b255c09c6e40d610f22c28ed630b83d572ab9530eb9b391ce7f5755043b", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_IMAGE:-openclaw:local}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|37296b255c09c6e40d610f22c28ed630b83d572ab9530eb9b391ce7f5755043b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 91}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Compose service `openclaw-gateway` image is selected through a build variable"}, "properties": {"repobilityId": 57362, "scanner": "repobility-docker", "fingerprint": "eae93cdd06d659f414d0fab62fe863bd08cc14062974cba78d8efd76137be5d0", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_IMAGE:-openclaw:local}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|eae93cdd06d659f414d0fab62fe863bd08cc14062974cba78d8efd76137be5d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 57357, "scanner": "repobility-docker", "fingerprint": "955db47bc67819f1eebc432a7068af37a65b58f3a1ea98d8d010374ceb76d80e", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${BASE_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|955db47bc67819f1eebc432a7068af37a65b58f3a1ea98d8d010374ceb76d80e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/sandbox/Dockerfile.common"}, "region": {"startLine": 4}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 57341, "scanner": "repobility-docker", "fingerprint": "ebc1d19cfd0b29e83b7614997d9c77be9829f429d23210407632b30b077be539", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_NODE_BOOKWORM_SLIM_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|ebc1d19cfd0b29e83b7614997d9c77be9829f429d23210407632b30b077be539"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 145}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 57339, "scanner": "repobility-docker", "fingerprint": "f763d6e6680cb4ea43d4395b0571d2efc3fe1d288d85991527d17a99e5a549b7", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_NODE_BOOKWORM_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|f763d6e6680cb4ea43d4395b0571d2efc3fe1d288d85991527d17a99e5a549b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 49}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 57338, "scanner": "repobility-docker", "fingerprint": "1974ade86189672d291351d69ad449852581a66995728cf40148da0880735028", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_BUN_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|1974ade86189672d291351d69ad449852581a66995728cf40148da0880735028"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 48}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Dockerfile base image is selected through a build variable"}, "properties": {"repobilityId": 57337, "scanner": "repobility-docker", "fingerprint": "c6c4bdf6bc96901f4226f6bba27d0dcd8f21df59dcc18834e8256987446d9795", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${OPENCLAW_NODE_BOOKWORM_IMAGE}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|c6c4bdf6bc96901f4226f6bba27d0dcd8f21df59dcc18834e8256987446d9795"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 26}}}]}, {"ruleId": "SEC001", "level": "none", "message": {"text": "[SEC001] Hardcoded Password: Hardcoded password found in source code."}, "properties": {"repobilityId": 57302, "scanner": "repobility-threat-engine", "fingerprint": "e713042b9546c223f9e1156338a33f84b305a719be6f6dc45c28bab4a38457ee", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Environment variable or config lookup (credentials loaded safely)", "evidence": {"match": "PASSWORD = \"<redacted>\"", "reason": "Environment variable or config lookup (credentials loaded safely)", "rule_id": "SEC001", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|token|9|password redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/onboarding.test-harness.ts"}, "region": {"startLine": 98}}}]}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 18 more): Same pattern found in 18 additional files. Review if needed."}, "properties": {"repobilityId": 57290, "scanner": "repobility-threat-engine", "fingerprint": "c3044b4824c5c1c92be9983baca9b9d0570c3cb6a25dd87ac3208469596aaaf8", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 18 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 18 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|c3044b4824c5c1c92be9983baca9b9d0570c3cb6a25dd87ac3208469596aaaf8"}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 57286, "scanner": "repobility-threat-engine", "fingerprint": "246f92d938942fba7906ca9caaa928ac24fca1257d9978d8d827cd0f689648d6", "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|246f92d938942fba7906ca9caaa928ac24fca1257d9978d8d827cd0f689648d6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/server-context.test-harness.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "SEC118", "level": "none", "message": {"text": "[SEC118] UUIDv1 / UUIDv3 used for security-sensitive identifier (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 57285, "scanner": "repobility-threat-engine", "fingerprint": "b33b9fa30193bee8937fded79de0a89e3cbc0227353c6d1fa8988e662e74e331", "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": "SEC118", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|b33b9fa30193bee8937fded79de0a89e3cbc0227353c6d1fa8988e662e74e331"}}}, {"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": 57284, "scanner": "repobility-threat-engine", "fingerprint": "5d7a1f4b2e722a726e5385036882807fe7deb8a44cf4fa3ace9809d53c86deea", "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|223|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/gateway/browser-request.ts"}, "region": {"startLine": 223}}}]}, {"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": 57283, "scanner": "repobility-threat-engine", "fingerprint": "ca9c507c2a6c1f0008b90870cec51d5f6bcf925f488fb6b55f91ca951356baff", "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|201|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/routes/agent.debug.ts"}, "region": {"startLine": 201}}}]}, {"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": 57282, "scanner": "repobility-threat-engine", "fingerprint": "dde15b046a12afe53ce0af90a2f67c3fc0ffba05d1ba6c1a9a3e1e3c0cb7d6b2", "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|29|sec118"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/pw-tools-core.downloads.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 57281, "scanner": "repobility-threat-engine", "fingerprint": "5c81d47da75c572182ad0e4e4629636dbf842fd65f2c830612248897d6fb397f", "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": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|5c81d47da75c572182ad0e4e4629636dbf842fd65f2c830612248897d6fb397f"}}}, {"ruleId": "SEC114", "level": "none", "message": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "properties": {"repobilityId": 57277, "scanner": "repobility-threat-engine", "fingerprint": "812c1c0c1b9f86ff999179f5f0f257bed61ae320c1600ec91c87e434cce67f0a", "category": "path_traversal", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC114", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|812c1c0c1b9f86ff999179f5f0f257bed61ae320c1600ec91c87e434cce67f0a"}}}, {"ruleId": "SEC085", "level": "none", "message": {"text": "[SEC085] JS: child_process.exec with non-literal (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 57273, "scanner": "repobility-threat-engine", "fingerprint": "bc4fe1905face6abfbb1df553eea80cfb32ce77eb97423efe2e4a30a5efa5cba", "category": "quality", "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": "SEC085", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|bc4fe1905face6abfbb1df553eea80cfb32ce77eb97423efe2e4a30a5efa5cba"}}}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 57267, "scanner": "repobility-threat-engine", "fingerprint": "1648ae8b3a3fcd589ec1922cb7919fa210e5720d2c50939443ce6d9eb8a2a22c", "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|1648ae8b3a3fcd589ec1922cb7919fa210e5720d2c50939443ce6d9eb8a2a22c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/copilot/src/auth-bridge.ts"}, "region": {"startLine": 175}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 57266, "scanner": "repobility-threat-engine", "fingerprint": "bb61841aedc3889d6bbb654d1bdd2b1ce9a60ebfa522f5144aa918898a454166", "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|bb61841aedc3889d6bbb654d1bdd2b1ce9a60ebfa522f5144aa918898a454166"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClawMacCLI/EntryPoint.swift"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 57265, "scanner": "repobility-threat-engine", "fingerprint": "ddcae449ce70d5aabfb83c4252741c3a8b796be9b43d669aba035c69852973b6", "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|ddcae449ce70d5aabfb83c4252741c3a8b796be9b43d669aba035c69852973b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClawMacCLI/ConnectCommand.swift"}, "region": {"startLine": 97}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 57262, "scanner": "repobility-threat-engine", "fingerprint": "6ca3af492f7e6c1db301ad52802c2d4a47c0eeb5e4b8c82b99531327b37204e9", "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": "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|6ca3af492f7e6c1db301ad52802c2d4a47c0eeb5e4b8c82b99531327b37204e9", "aggregated_count": 9}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 57261, "scanner": "repobility-threat-engine", "fingerprint": "e5ffa352a0ed6556e031f43c5bfc154c5f982f1749c9523454bf51dd16f1b53b", "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|e5ffa352a0ed6556e031f43c5bfc154c5f982f1749c9523454bf51dd16f1b53b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/TailscaleService.swift"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 57260, "scanner": "repobility-threat-engine", "fingerprint": "fb8bf00bbb441aed06241c8803137a531988f1969093d424af212646d3daa221", "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|fb8bf00bbb441aed06241c8803137a531988f1969093d424af212646d3daa221"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/LaunchAgentManager.swift"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 57259, "scanner": "repobility-threat-engine", "fingerprint": "ac62c46403c2efd027997990b8ac1ad0bd1a207fb900040c16e8b9703862e0c5", "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|ac62c46403c2efd027997990b8ac1ad0bd1a207fb900040c16e8b9703862e0c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/ios/Sources/Settings/SettingsNetworkingHelpers.swift"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 51 more): Same pattern found in 51 additional files. Review if needed."}, "properties": {"repobilityId": 57258, "scanner": "repobility-threat-engine", "fingerprint": "106a2eb72746fec32ddebe2ebb24d193441b9eb723edb24fcfbd005be85eaf51", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 51 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|106a2eb72746fec32ddebe2ebb24d193441b9eb723edb24fcfbd005be85eaf51", "aggregated_count": 51}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 57257, "scanner": "repobility-threat-engine", "fingerprint": "6f9482bc8438f73a20c2a6fa76c266561de44e3de5452a53d74294b521059029", "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|6f9482bc8438f73a20c2a6fa76c266561de44e3de5452a53d74294b521059029"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/process-lease.ts"}, "region": {"startLine": 65}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 57256, "scanner": "repobility-threat-engine", "fingerprint": "b73ef481823e1dd52bd77a9ea87dcf4b037778675199b65cbe5e253f9461990f", "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|b73ef481823e1dd52bd77a9ea87dcf4b037778675199b65cbe5e253f9461990f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/codex-trust-config.ts"}, "region": {"startLine": 297}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 57255, "scanner": "repobility-threat-engine", "fingerprint": "1ee5ddf6e3c966d2b3610a30d7a0c670a46162a543650c409f892bb9ed2b8552", "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|1ee5ddf6e3c966d2b3610a30d7a0c670a46162a543650c409f892bb9ed2b8552"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/scripts/build-release-aab.ts"}, "region": {"startLine": 118}}}]}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 14 more): Same pattern found in 14 additional files. Review if needed."}, "properties": {"repobilityId": 57253, "scanner": "repobility-threat-engine", "fingerprint": "69b8d1ab6ebdf0e67a4943a9d246df28ccefb397d7d029799319621fefe41b25", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 14 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 14 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|69b8d1ab6ebdf0e67a4943a9d246df28ccefb397d7d029799319621fefe41b25"}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 74 more): Same pattern found in 74 additional files. Review if needed."}, "properties": {"repobilityId": 57249, "scanner": "repobility-threat-engine", "fingerprint": "acb95a5f9806a26cd1d990ace67ee2da53a788342deee262f5866f5be330f047", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 74 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 74 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|acb95a5f9806a26cd1d990ace67ee2da53a788342deee262f5866f5be330f047"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 173 more): Same pattern found in 173 additional files. Review if needed."}, "properties": {"repobilityId": 57245, "scanner": "repobility-threat-engine", "fingerprint": "d6ee80ee8d0a25c7cf8ca508dd3b478939d3e0c22375adbef86b8cd35667c463", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 173 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 173 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|d6ee80ee8d0a25c7cf8ca508dd3b478939d3e0c22375adbef86b8cd35667c463"}}}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 57241, "scanner": "repobility-threat-engine", "fingerprint": "501876d43fbaf15c6d4055194dcce53c187c4dbbef78a664b67e46162788cb51", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|501876d43fbaf15c6d4055194dcce53c187c4dbbef78a664b67e46162788cb51"}}}, {"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": 57240, "scanner": "repobility-threat-engine", "fingerprint": "d6e5cf239c18a9a0845ef3d970a69b64d4d1d49bc9ae69d73898849b7c850b69", "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.warning(\"notification permission denied status=\\(status.authorizationStatus.rawValue)", "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|2|logger.warning notification permission denied status token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/NotificationManager.swift"}, "region": {"startLine": 27}}}]}, {"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": 57239, "scanner": "repobility-threat-engine", "fingerprint": "fc34d9c12ed3086235a1ae143318a3a9bec5e39f2b0c94e11984e5d4c2f3f767", "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": "console.error(\"release provider secret preflight failed\")", "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|11|console.error release provider secret preflight failed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".agents/skills/release-openclaw-ci/scripts/verify-provider-secrets.mjs"}, "region": {"startLine": 115}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 8 more): Same pattern found in 8 additional files. Review if needed."}, "properties": {"repobilityId": 57237, "scanner": "repobility-threat-engine", "fingerprint": "f1e161962fe043d40b0b62354f7238946ffae30e19da416a3889d752e32876be", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 8 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|f1e161962fe043d40b0b62354f7238946ffae30e19da416a3889d752e32876be", "aggregated_count": 8}}}, {"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": 57236, "scanner": "repobility-threat-engine", "fingerprint": "540caf916010f07198874de5df075bfc66632cc35a438d222c84e3feaf546212", "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|540caf916010f07198874de5df075bfc66632cc35a438d222c84e3feaf546212"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/scripts/build-release-aab.ts"}, "region": {"startLine": 135}}}]}, {"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": 57235, "scanner": "repobility-threat-engine", "fingerprint": "c0785535074047dbd1a45258324e5c0dfd1e67e7ef13af1fa0e1454a25090f62", "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|c0785535074047dbd1a45258324e5c0dfd1e67e7ef13af1fa0e1454a25090f62"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".agents/skills/release-openclaw-ci/scripts/verify-provider-secrets.mjs"}, "region": {"startLine": 96}}}]}, {"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": 57234, "scanner": "repobility-threat-engine", "fingerprint": "d4ec2fd9d286aeb8c006fd51c5ac6fadb2f968d2e03e47894d78955bdfe81c30", "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|d4ec2fd9d286aeb8c006fd51c5ac6fadb2f968d2e03e47894d78955bdfe81c30"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".agents/skills/release-openclaw-ci/scripts/release-ci-summary.mjs"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED134", "level": "error", "message": {"text": "[MINED134] Binary file `apps/android/gradle/wrapper/gradle-wrapper.jar` committed in source repo: `apps/android/gradle/wrapper/gradle-wrapper.jar` is a .jar binary (48,966 bytes) committed to a repo that otherwise has 17058 source files. Trojan binaries inside otherwise-normal source repos are a known supply-chain attack: a compromised dependency or PR slips in a binary that gets executed by build scripts."}, "properties": {"repobilityId": 57479, "scanner": "repobility-supply-chain", "fingerprint": "fe14b7e8cae5618c5ac45ea3d9b0e9c69a5827bf307886d8dd802a90ff41e85c", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "suspicious-binary-in-src", "owasp": null, "cwe_ids": ["CWE-506"], "languages": ["any"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fe14b7e8cae5618c5ac45ea3d9b0e9c69a5827bf307886d8dd802a90ff41e85c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/gradle/wrapper/gradle-wrapper.jar"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `ubuntu:24.04` not pinned by digest: `FROM ubuntu:24.04` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 57459, "scanner": "repobility-supply-chain", "fingerprint": "7d0b8e7172a9e1ca809e55a14623749a178ea6c7ed753f83df46a81261ab14c2", "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|7d0b8e7172a9e1ca809e55a14623749a178ea6c7ed753f83df46a81261ab14c2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/images/live-media-runner/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` unpinned: `container/services image: ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 57434, "scanner": "repobility-supply-chain", "fingerprint": "5783a352bf16af47c140734aa7c3eb986eb538ce51b93159c116c124f5dfe7fe", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|5783a352bf16af47c140734aa7c3eb986eb538ce51b93159c116c124f5dfe7fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/openclaw-live-and-e2e-checks-reusable.yml"}, "region": {"startLine": 2450}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57432, "scanner": "repobility-supply-chain", "fingerprint": "8890dc79555b7cbe745ec8456d7bd4b3b18b7154b829efb130d53914f5cb1445", "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|8890dc79555b7cbe745ec8456d7bd4b3b18b7154b829efb130d53914f5cb1445"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/install-smoke.yml"}, "region": {"startLine": 292}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57431, "scanner": "repobility-supply-chain", "fingerprint": "424cae9b4d726b7d609e93dd3a61ca5c9492c9eb22030a4ef5ab5181e34dd2c7", "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|424cae9b4d726b7d609e93dd3a61ca5c9492c9eb22030a4ef5ab5181e34dd2c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/install-smoke.yml"}, "region": {"startLine": 220}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57430, "scanner": "repobility-supply-chain", "fingerprint": "2998bc20e944614ed05556825ba38ff1f198e7efa98e966d8c6302a88d98af85", "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|2998bc20e944614ed05556825ba38ff1f198e7efa98e966d8c6302a88d98af85"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/install-smoke.yml"}, "region": {"startLine": 109}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57429, "scanner": "repobility-supply-chain", "fingerprint": "eb6641cf4e7769288919c1c9dbe5d98621f198191829888e783e6d91cd6c36e3", "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|eb6641cf4e7769288919c1c9dbe5d98621f198191829888e783e6d91cd6c36e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/install-smoke.yml"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/upload-artifact` pinned to mutable ref `@v7`: `uses: actions/upload-artifact@v7` 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": 57428, "scanner": "repobility-supply-chain", "fingerprint": "5ae56a0e47c6b1f8f193bd297e2968cf29b3a947922e34bce70a7cb7e8f31158", "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|5ae56a0e47c6b1f8f193bd297e2968cf29b3a947922e34bce70a7cb7e8f31158"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/npm-telegram-beta-e2e.yml"}, "region": {"startLine": 272}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/download-artifact` pinned to mutable ref `@v8`: `uses: actions/download-artifact@v8` 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": 57427, "scanner": "repobility-supply-chain", "fingerprint": "30b775ce4c2be93f6cc4e8688d9727c7ba51752040be31874883dd0678e8f5e6", "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|30b775ce4c2be93f6cc4e8688d9727c7ba51752040be31874883dd0678e8f5e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/npm-telegram-beta-e2e.yml"}, "region": {"startLine": 200}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/download-artifact` pinned to mutable ref `@v8`: `uses: actions/download-artifact@v8` 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": 57426, "scanner": "repobility-supply-chain", "fingerprint": "482f0364db6f5c2e8f7014a16e2f6c7011db92e7a5feae5fb6040148626d7467", "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|482f0364db6f5c2e8f7014a16e2f6c7011db92e7a5feae5fb6040148626d7467"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/npm-telegram-beta-e2e.yml"}, "region": {"startLine": 193}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57425, "scanner": "repobility-supply-chain", "fingerprint": "c5e625f6fdf4e975070a2dc2800720996c5edc5a716b53a85390701e09649620", "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|c5e625f6fdf4e975070a2dc2800720996c5edc5a716b53a85390701e09649620"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/npm-telegram-beta-e2e.yml"}, "region": {"startLine": 123}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57424, "scanner": "repobility-supply-chain", "fingerprint": "7b805597e515c8606f7897edcf8eca909ec0a19108fde980935be20b96e088dd", "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|7b805597e515c8606f7897edcf8eca909ec0a19108fde980935be20b96e088dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docs-agent.yml"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/create-github-app-token` pinned to mutable ref `@v3`: `uses: actions/create-github-app-token@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": 57423, "scanner": "repobility-supply-chain", "fingerprint": "a41520ea8ca1edae19804cc686b751a36a1929a44db65fae826fa9788f506a34", "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|a41520ea8ca1edae19804cc686b751a36a1929a44db65fae826fa9788f506a34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 466}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/upload-artifact` pinned to mutable ref `@v7`: `uses: actions/upload-artifact@v7` 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": 57422, "scanner": "repobility-supply-chain", "fingerprint": "e6a2f7144548882e301c11160d741998a05b2b6c1d5e033649e05707b87ca29b", "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|e6a2f7144548882e301c11160d741998a05b2b6c1d5e033649e05707b87ca29b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 456}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-go` pinned to mutable ref `@v6`: `uses: actions/setup-go@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57421, "scanner": "repobility-supply-chain", "fingerprint": "6bcd419c74f259222f241c8a13d279d560982c7b0d9ba1e3ddaae691dc083074", "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|6bcd419c74f259222f241c8a13d279d560982c7b0d9ba1e3ddaae691dc083074"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 193}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/cache` pinned to mutable ref `@v4`: `uses: actions/cache@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": 57420, "scanner": "repobility-supply-chain", "fingerprint": "7c7c2a03ee24e76799ebea6eac534098436e92d1f650c3614155001b87f3ed92", "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|7c7c2a03ee24e76799ebea6eac534098436e92d1f650c3614155001b87f3ed92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 183}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57419, "scanner": "repobility-supply-chain", "fingerprint": "b7e476d791343a019ec79c51826d323799d314eaaa9a9a34483f323ab31b2986", "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|b7e476d791343a019ec79c51826d323799d314eaaa9a9a34483f323ab31b2986"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 168}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57418, "scanner": "repobility-supply-chain", "fingerprint": "212ad8819dace5ba2ab5afcf67baba4baff4d787d4667fc9432bc930017979d1", "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|212ad8819dace5ba2ab5afcf67baba4baff4d787d4667fc9432bc930017979d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v8`: `uses: actions/github-script@v8` 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": 57417, "scanner": "repobility-supply-chain", "fingerprint": "617b3e3022429f52aa32d2e8fe94f7eb78a439dcc031c9517b69637b777ba463", "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|617b3e3022429f52aa32d2e8fe94f7eb78a439dcc031c9517b69637b777ba463"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/mantis-slack-desktop-smoke.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/create-github-app-token` pinned to mutable ref `@v3`: `uses: actions/create-github-app-token@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": 57416, "scanner": "repobility-supply-chain", "fingerprint": "55e957689c89c8f85fe5c80126cb6017b771a25516c47e4c214d846d0aafac8b", "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|55e957689c89c8f85fe5c80126cb6017b771a25516c47e4c214d846d0aafac8b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/real-behavior-proof.yml"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/create-github-app-token` pinned to mutable ref `@v3`: `uses: actions/create-github-app-token@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": 57415, "scanner": "repobility-supply-chain", "fingerprint": "2bcff2394b8a6a3edbd9b71e8c9910d1af17811e7f4c8a78204ce74ec8cae7b5", "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|2bcff2394b8a6a3edbd9b71e8c9910d1af17811e7f4c8a78204ce74ec8cae7b5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/real-behavior-proof.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57414, "scanner": "repobility-supply-chain", "fingerprint": "bcd59846651726cedecefed7dfbee8005011ccc40aa9d03ef5365c54a8f621fe", "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|bcd59846651726cedecefed7dfbee8005011ccc40aa9d03ef5365c54a8f621fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/real-behavior-proof.yml"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57413, "scanner": "repobility-supply-chain", "fingerprint": "4fccef443f03ac3487d62f125a2c599c763445cb0a946e5cae4e6b9f27f982fc", "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|4fccef443f03ac3487d62f125a2c599c763445cb0a946e5cae4e6b9f27f982fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/duplicate-after-merge.yml"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/upload-artifact` pinned to mutable ref `@v7`: `uses: actions/upload-artifact@v7` 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": 57412, "scanner": "repobility-supply-chain", "fingerprint": "f864a61013137869f840a386a54c910f108021717b4d79883c51a20d436d6d21", "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|f864a61013137869f840a386a54c910f108021717b4d79883c51a20d436d6d21"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/opengrep-precise.yml"}, "region": {"startLine": 96}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4`: `uses: github/codeql-action/upload-sarif@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": 57411, "scanner": "repobility-supply-chain", "fingerprint": "0c80a44693d2f12276fac8e667b5e635b3a31237dc978dcc30bdd52b93f29ec2", "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|0c80a44693d2f12276fac8e667b5e635b3a31237dc978dcc30bdd52b93f29ec2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/opengrep-precise.yml"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57410, "scanner": "repobility-supply-chain", "fingerprint": "645a0e222a1150e241b8bf5affa002a334b5ccb732f6af01eabbe2b3b463d27b", "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|645a0e222a1150e241b8bf5affa002a334b5ccb732f6af01eabbe2b3b463d27b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/opengrep-precise.yml"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 57409, "scanner": "repobility-supply-chain", "fingerprint": "ad986873256b2abefe218a31e8c292e80c8a01cdffc2fb8a48b27298e10e6580", "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|ad986873256b2abefe218a31e8c292e80c8a01cdffc2fb8a48b27298e10e6580"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/windows-blacksmith-testbox.yml"}, "region": {"startLine": 111}}}]}, {"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": 57408, "scanner": "repobility-supply-chain", "fingerprint": "3ef163ccc52b5d8bcb1cfc1ed3d92e8ffa704199b0aed50ceaaf4ee0ef0c91e1", "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|3ef163ccc52b5d8bcb1cfc1ed3d92e8ffa704199b0aed50ceaaf4ee0ef0c91e1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/swabble/.github/workflows/ci.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/astral-sh/ruff-pre-commit` pinned to mutable rev `v0.14.1`: `.pre-commit-config.yaml` references `https://github.com/astral-sh/ruff-pre-commit` at `rev: v0.14.1`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 57407, "scanner": "repobility-supply-chain", "fingerprint": "ba44db821ea6b0729e496256cc163211ea626e0754022af13a680febc01f692b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|ba44db821ea6b0729e496256cc163211ea626e0754022af13a680febc01f692b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/zizmorcore/zizmor-pre-commit` pinned to mutable rev `v1.22.0`: `.pre-commit-config.yaml` references `https://github.com/zizmorcore/zizmor-pre-commit` at `rev: v1.22.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 57406, "scanner": "repobility-supply-chain", "fingerprint": "e2da21acdaeb76e2107ae4789b35bc4362485e7a1cc562e3e6971a5fde456c7f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|e2da21acdaeb76e2107ae4789b35bc4362485e7a1cc562e3e6971a5fde456c7f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/rhysd/actionlint` pinned to mutable rev `v1.7.10`: `.pre-commit-config.yaml` references `https://github.com/rhysd/actionlint` at `rev: v1.7.10`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 57405, "scanner": "repobility-supply-chain", "fingerprint": "6e466ee12a51a62e0991bc9633cd9e77fd283df75fd08e53222d79ddbec63507", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6e466ee12a51a62e0991bc9633cd9e77fd283df75fd08e53222d79ddbec63507"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/koalaman/shellcheck-precommit` pinned to mutable rev `v0.11.0`: `.pre-commit-config.yaml` references `https://github.com/koalaman/shellcheck-precommit` at `rev: v0.11.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 57404, "scanner": "repobility-supply-chain", "fingerprint": "b12f47b8fc8fee5d11925c391aee98eed06d74bf2b4ca654904270f625c83de4", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b12f47b8fc8fee5d11925c391aee98eed06d74bf2b4ca654904270f625c83de4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/pre-commit/pre-commit-hooks` pinned to mutable rev `v6.0.0`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/pre-commit-hooks` at `rev: v6.0.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 57403, "scanner": "repobility-supply-chain", "fingerprint": "1fe81fe17af77cd76daa7cd75957845a7c4d9074772a6736018d6823c8a793c0", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|1fe81fe17af77cd76daa7cd75957845a7c4d9074772a6736018d6823c8a793c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".pre-commit-config.yaml"}, "region": {"startLine": 9}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.temp_dir` used but never assigned in __init__: Method `tearDown` of class `TestQuickValidate` reads `self.temp_dir`, 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": 57401, "scanner": "repobility-ast-engine", "fingerprint": "6797e396d1860516d13819a39122ba9a80e21aeb1cc2c74db6a87a75b961d92e", "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|6797e396d1860516d13819a39122ba9a80e21aeb1cc2c74db6a87a75b961d92e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/test_quick_validate.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.temp_dir` used but never assigned in __init__: Method `tearDown` of class `TestQuickValidate` reads `self.temp_dir`, 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": 57400, "scanner": "repobility-ast-engine", "fingerprint": "43659c6caec319056257b08cdcd39261c196edb6edf8ba281492beca20005a1d", "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|43659c6caec319056257b08cdcd39261c196edb6edf8ba281492beca20005a1d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/test_quick_validate.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.temp_dir` used but never assigned in __init__: Method `setUp` of class `TestQuickValidate` reads `self.temp_dir`, 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": 57399, "scanner": "repobility-ast-engine", "fingerprint": "42e52698ace8bc4d2570a0145f7449ef9f668b93300d463f89d4cfba861b4d0d", "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|42e52698ace8bc4d2570a0145f7449ef9f668b93300d463f89d4cfba861b4d0d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/skill-creator/scripts/test_quick_validate.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertEqual` used but never assigned in __init__: Method `test_filter_by_days_keeps_recent_entries` of class `TestModelUsage` reads `self.assertEqual`, 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": 57395, "scanner": "repobility-ast-engine", "fingerprint": "a0dfe4c3c19f261b51c3bdcc658cdfc42537dfaefb5390acaa0155f16b8444d7", "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|a0dfe4c3c19f261b51c3bdcc658cdfc42537dfaefb5390acaa0155f16b8444d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertEqual` used but never assigned in __init__: Method `test_filter_by_days_keeps_recent_entries` of class `TestModelUsage` reads `self.assertEqual`, 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": 57394, "scanner": "repobility-ast-engine", "fingerprint": "69aea272a9844bb673f583ff6b21d4188882423da6050611b038b15a73d755b9", "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|69aea272a9844bb673f583ff6b21d4188882423da6050611b038b15a73d755b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertEqual` used but never assigned in __init__: Method `test_filter_by_days_keeps_recent_entries` of class `TestModelUsage` reads `self.assertEqual`, 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": 57393, "scanner": "repobility-ast-engine", "fingerprint": "575ff8998d3a11163c578deee88826ec387126d8dc3d429d4517d8b3bda45ca5", "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|575ff8998d3a11163c578deee88826ec387126d8dc3d429d4517d8b3bda45ca5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertRaises` used but never assigned in __init__: Method `test_positive_int_rejects_zero_and_negative` of class `TestModelUsage` reads `self.assertRaises`, 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": 57392, "scanner": "repobility-ast-engine", "fingerprint": "bd1266509ebfe8ae5290fa89e874e4859256ffe37cdc132614153f67ee46916f", "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|bd1266509ebfe8ae5290fa89e874e4859256ffe37cdc132614153f67ee46916f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertRaises` used but never assigned in __init__: Method `test_positive_int_rejects_zero_and_negative` of class `TestModelUsage` reads `self.assertRaises`, 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": 57391, "scanner": "repobility-ast-engine", "fingerprint": "ae2b7e01cf80c50771360a8a8bc3076072be196a1f12e895bef7745097f85410", "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|ae2b7e01cf80c50771360a8a8bc3076072be196a1f12e895bef7745097f85410"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertEqual` used but never assigned in __init__: Method `test_positive_int_accepts_valid_numbers` of class `TestModelUsage` reads `self.assertEqual`, 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": 57390, "scanner": "repobility-ast-engine", "fingerprint": "98f1e36770cf4694ca4f9d9869b7cdb39e2996242c798d102635cf9b1ae97b40", "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|98f1e36770cf4694ca4f9d9869b7cdb39e2996242c798d102635cf9b1ae97b40"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertEqual` used but never assigned in __init__: Method `test_positive_int_accepts_valid_numbers` of class `TestModelUsage` reads `self.assertEqual`, 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": 57389, "scanner": "repobility-ast-engine", "fingerprint": "f1c36ec8550fd770c7343db9570ea6884c33f2514ac388fc1b04f16f00fab013", "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|f1c36ec8550fd770c7343db9570ea6884c33f2514ac388fc1b04f16f00fab013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "skills/model-usage/scripts/test_model_usage.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.text_content` used but never assigned in __init__: Method `send_text` of class `UserDriver` reads `self.text_content`, 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": 57386, "scanner": "repobility-ast-engine", "fingerprint": "a8e816a6fcc14ae4233ac14899e9cc5c58a34d0bc070f11d4d2d9c680adc9674", "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|a8e816a6fcc14ae4233ac14899e9cc5c58a34d0bc070f11d4d2d9c680adc9674"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 403}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.settle_sent_message` used but never assigned in __init__: Method `send_text` of class `UserDriver` reads `self.settle_sent_message`, 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": 57385, "scanner": "repobility-ast-engine", "fingerprint": "6f722df696832cd03b004ec2804df4fadf91e57fef737b1cd98b72d1be571abd", "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|6f722df696832cd03b004ec2804df4fadf91e57fef737b1cd98b72d1be571abd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 389}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.encryption_key_for_current_tdlib` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.encryption_key_for_current_tdlib`, 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": 57384, "scanner": "repobility-ast-engine", "fingerprint": "c8bebe4ab30a292fec951a66df405a4bbb28d4f89f3fd35d1e1f6304bb3a4c27", "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|c8bebe4ab30a292fec951a66df405a4bbb28d4f89f3fd35d1e1f6304bb3a4c27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 342}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.encryption_key_for_current_tdlib` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.encryption_key_for_current_tdlib`, 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": 57383, "scanner": "repobility-ast-engine", "fingerprint": "57b9c48158d85a5f097ab2c75d1d39f6050319b7c46a40da6f5ca17a8c26443e", "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|57b9c48158d85a5f097ab2c75d1d39f6050319b7c46a40da6f5ca17a8c26443e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 332}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.show_qr_link` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.show_qr_link`, 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": 57382, "scanner": "repobility-ast-engine", "fingerprint": "afcc14d8eaf65b36a5611449015d878b4f132cba305785ad06eefef685d20688", "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|afcc14d8eaf65b36a5611449015d878b4f132cba305785ad06eefef685d20688"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 314}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.encryption_key` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.encryption_key`, 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": 57381, "scanner": "repobility-ast-engine", "fingerprint": "f9ce19c04b6b02bcb85bc44fe1e885a31273271218cedc8a6d06dc93fa9f6a18", "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|f9ce19c04b6b02bcb85bc44fe1e885a31273271218cedc8a6d06dc93fa9f6a18"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 295}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.td_params_current` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.td_params_current`, 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": 57380, "scanner": "repobility-ast-engine", "fingerprint": "cbc529f984d793b9178024d7502f572938b132309f1dc98efca245a4f0816733", "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|cbc529f984d793b9178024d7502f572938b132309f1dc98efca245a4f0816733"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 345}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.td_params_current` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.td_params_current`, 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": 57379, "scanner": "repobility-ast-engine", "fingerprint": "7ffb4a89950b4748513ba5481d03eb3e12048ead90ba03eb7c31313aee1cf5ab", "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|7ffb4a89950b4748513ba5481d03eb3e12048ead90ba03eb7c31313aee1cf5ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 335}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.td_params` used but never assigned in __init__: Method `authorize` of class `UserDriver` reads `self.td_params`, 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": 57378, "scanner": "repobility-ast-engine", "fingerprint": "9b89a25dde87a82cbb42e28e8e0a2c76ed8fe291ffbe9fe3cf7a800120ac4459", "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|9b89a25dde87a82cbb42e28e8e0a2c76ed8fe291ffbe9fe3cf7a800120ac4459"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 290}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.encryption_key` used but never assigned in __init__: Method `encryption_key_for_current_tdlib` of class `UserDriver` reads `self.encryption_key`, 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": 57377, "scanner": "repobility-ast-engine", "fingerprint": "ba902855c790a7b5695d3b46b375d2bd576651be69b5ec5eba4548031fd3fd17", "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|ba902855c790a7b5695d3b46b375d2bd576651be69b5ec5eba4548031fd3fd17"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 272}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.td_params` used but never assigned in __init__: Method `td_params_current` of class `UserDriver` reads `self.td_params`, 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": 57376, "scanner": "repobility-ast-engine", "fingerprint": "0e4ea2818b1a397be00f8ff5579b1b2bd9e41d9f1197f6b709a102eadf0a5138", "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|0e4ea2818b1a397be00f8ff5579b1b2bd9e41d9f1197f6b709a102eadf0a5138"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 259}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.receive` used but never assigned in __init__: Method `next_update` of class `TdClient` reads `self.receive`, 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": 57375, "scanner": "repobility-ast-engine", "fingerprint": "3cdfe94f123c76b143351dd0af8520d93218e88549eed4949a86831921551e60", "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|3cdfe94f123c76b143351dd0af8520d93218e88549eed4949a86831921551e60"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 220}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.handle_update` used but never assigned in __init__: Method `request` of class `TdClient` reads `self.handle_update`, 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": 57374, "scanner": "repobility-ast-engine", "fingerprint": "4b54923d05d99c950d0da771c39914f2a0bc1cc8caa775569f3ac248bf4e63bd", "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|4b54923d05d99c950d0da771c39914f2a0bc1cc8caa775569f3ac248bf4e63bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 210}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.receive` used but never assigned in __init__: Method `request` of class `TdClient` reads `self.receive`, 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": 57373, "scanner": "repobility-ast-engine", "fingerprint": "f0b5332c557e4b9292f09284c7d18911bbbc887ae2723d1e1500aec70ab08dd2", "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|f0b5332c557e4b9292f09284c7d18911bbbc887ae2723d1e1500aec70ab08dd2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 203}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.send` used but never assigned in __init__: Method `request` of class `TdClient` reads `self.send`, 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": 57372, "scanner": "repobility-ast-engine", "fingerprint": "df82368e5c7674451869a8302ac96d31d3d81f526392afdedcc118b3cf102880", "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|df82368e5c7674451869a8302ac96d31d3d81f526392afdedcc118b3cf102880"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/e2e/telegram-user-driver.py"}, "region": {"startLine": 200}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 57365, "scanner": "repobility-journey-contract", "fingerprint": "b98a9a1723424917edd0be9223125fd105c60a9f18adfe0ba7d972d5227e0c07", "category": "auth", "severity": "high", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Frontend consent wording was found, but backend consent/audit metadata was not visible.", "evidence": {"rule_id": "JRN004", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "correlation_key": "code|auth|token|243|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 4}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/msteams/src/pending-uploads-fs.ts"}, "region": {"startLine": 243}}}]}, {"ruleId": "DKR006", "level": "error", "message": {"text": "Dockerfile pipes a remote script into a shell"}, "properties": {"repobilityId": 57359, "scanner": "repobility-docker", "fingerprint": "a449f89ac9a6655071ccd2c61b2d48810200a617bd5132eeae2ea17d3acc22b3", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "RUN instruction contains curl/wget piped into a shell.", "evidence": {"rule_id": "DKR006", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|a449f89ac9a6655071ccd2c61b2d48810200a617bd5132eeae2ea17d3acc22b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/sandbox/Dockerfile.common"}, "region": {"startLine": 31}}}]}, {"ruleId": "DKR006", "level": "error", "message": {"text": "Dockerfile pipes a remote script into a shell"}, "properties": {"repobilityId": 57352, "scanner": "repobility-docker", "fingerprint": "2484fc2c1550e67757d6c64b51b35a4d4182c51b34de78173a829e5ab436110f", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "RUN instruction contains curl/wget piped into a shell.", "evidence": {"rule_id": "DKR006", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|2484fc2c1550e67757d6c64b51b35a4d4182c51b34de78173a829e5ab436110f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/docker/install-sh-nonroot/Dockerfile"}, "region": {"startLine": 28}}}]}, {"ruleId": "SEC035", "level": "error", "message": {"text": "[SEC035] Unbounded Resource Allocation \u2014 DoS risk: Allocating resources (buffers, recursion stack, large ranges) based on user input without an upper bound. Attackers send `size=10000000` to exhaust memory, or trigger expensive computation. CWE-770/400. Examples: CVE-2023-44487 (HTTP/2 Rapid Reset), countless YAML/XML billion-laughs variants."}, "properties": {"repobilityId": 57301, "scanner": "repobility-threat-engine", "fingerprint": "9a2281e41d8ac496d94c7a220227af2c4f9d93d67ea8c44db258ad13b8a2f708", "category": "resource_exhaustion", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Bytes(params.", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC035", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9a2281e41d8ac496d94c7a220227af2c4f9d93d67ea8c44db258ad13b8a2f708"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/file-transfer/src/node-host/file-fetch.ts"}, "region": {"startLine": 119}}}]}, {"ruleId": "SEC035", "level": "error", "message": {"text": "[SEC035] Unbounded Resource Allocation \u2014 DoS risk: Allocating resources (buffers, recursion stack, large ranges) based on user input without an upper bound. Attackers send `size=10000000` to exhaust memory, or trigger expensive computation. CWE-770/400. Examples: CVE-2023-44487 (HTTP/2 Rapid Reset), countless YAML/XML billion-laughs variants."}, "properties": {"repobilityId": 57300, "scanner": "repobility-threat-engine", "fingerprint": "7f2f4ccd2c8bd8b1e112c29ad16dcbfb98bb8feffc04464d5fe0f5169cbad2ae", "category": "resource_exhaustion", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Bytes(params.", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC035", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7f2f4ccd2c8bd8b1e112c29ad16dcbfb98bb8feffc04464d5fe0f5169cbad2ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/file-transfer/src/node-host/dir-fetch.ts"}, "region": {"startLine": 187}}}]}, {"ruleId": "SEC033", "level": "error", "message": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting every object in the process. CWE-1321. Real-world: CVE-2019-10744 (lodash), CVE-2021-23337 (lodash.set), CVE-2023-26136 (tough-cookie)."}, "properties": {"repobilityId": 57299, "scanner": "repobility-threat-engine", "fingerprint": "3dbaf886980f1af3b1d2831b726b96f76245b6b31a8a498c935ac77c51165260", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "[params.route.sessionKey] =", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC033", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3dbaf886980f1af3b1d2831b726b96f76245b6b31a8a498c935ac77c51165260"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/discord/src/monitor/native-command-model-picker-apply.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 57298, "scanner": "repobility-threat-engine", "fingerprint": "af47f754b55d7676facef2f4bf45ee7914c495d313009549e210e184641125f0", "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|af47f754b55d7676facef2f4bf45ee7914c495d313009549e210e184641125f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/diffs/src/viewer-assets.ts"}, "region": {"startLine": 158}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 57297, "scanner": "repobility-threat-engine", "fingerprint": "adbf4a38478a250fb19ea209d3fc1eb060f884da487c8e1d5ce93e9163a115a5", "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|adbf4a38478a250fb19ea209d3fc1eb060f884da487c8e1d5ce93e9163a115a5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/diffs-language-pack/src/viewer-assets.ts"}, "region": {"startLine": 84}}}]}, {"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": 57296, "scanner": "repobility-threat-engine", "fingerprint": "0f6de16a9cd1107ef2a6e62602d2734729a766531a8183f6b50d5d3f8837c454", "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(params.name, params", "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|33|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/matrix/src/matrix/sdk/idb-persistence.test-helpers.ts"}, "region": {"startLine": 33}}}]}, {"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": 57295, "scanner": "repobility-threat-engine", "fingerprint": "1f58ef6aa554ea506d9dcb8e19c2a958e7f760847214dd3503e02d08fda1151c", "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(params.input, { password: <redacted>", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|48|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/document-extract/document-extractor.ts"}, "region": {"startLine": 48}}}]}, {"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": 57294, "scanner": "repobility-threat-engine", "fingerprint": "c7004a9bd9ebeaa9568773fcac0aaa90c392fa5e3a6919ddc6036f89ed8c5d13", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(request", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|296|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/codex/src/app-server/sandbox-exec-server/http.ts"}, "region": {"startLine": 296}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 57293, "scanner": "repobility-threat-engine", "fingerprint": "7052fa346d41f5223e06789bf4347accb9fce7f002883f7e798144a19b3b1c41", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(re", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7052fa346d41f5223e06789bf4347accb9fce7f002883f7e798144a19b3b1c41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/imessage/src/monitor/reflection-guard.ts"}, "region": {"startLine": 31}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 57292, "scanner": "repobility-threat-engine", "fingerprint": "bc92cddaa7921f5c9bd81c4e8ddc661a6595c6e1e09f175b945523bb4ee4b400", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(`${", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bc92cddaa7921f5c9bd81c4e8ddc661a6595c6e1e09f175b945523bb4ee4b400"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/copilot/src/auth-bridge.ts"}, "region": {"startLine": 317}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 57291, "scanner": "repobility-threat-engine", "fingerprint": "7b302862cfad609b99706ec8162fb766cc1cc05f59d8f090a46cc0a399253cc6", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(source", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7b302862cfad609b99706ec8162fb766cc1cc05f59d8f090a46cc0a399253cc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/url-pattern.ts"}, "region": {"startLine": 20}}}]}, {"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": 57289, "scanner": "repobility-threat-engine", "fingerprint": "cf2176c8ee35a489f54aaf62ef476494c696ef0c2418a056d2f1204347b6b797", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((model) => `chutes/${model.id}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cf2176c8ee35a489f54aaf62ef476494c696ef0c2418a056d2f1204347b6b797"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/chutes/onboard.ts"}, "region": {"startLine": 29}}}]}, {"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": 57288, "scanner": "repobility-threat-engine", "fingerprint": "fa9124c111ce1ff5fe259901a903c83378620544712422b3612c7ede4b259d09", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((e) => `${e.timestamp} ${e.name ? `${e.name}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fa9124c111ce1ff5fe259901a903c83378620544712422b3612c7ede4b259d09"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/cli/browser-cli-debug.ts"}, "region": {"startLine": 132}}}]}, {"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": 57287, "scanner": "repobility-threat-engine", "fingerprint": "67573a9d71112d396ec9beaa77c9dd5d4267541b53866b80d010c1ee76433a0a", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((entry, index) => `${index + 1}. ${entry.text} -> ${entry.url}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|67573a9d71112d396ec9beaa77c9dd5d4267541b53866b80d010c1ee76433a0a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/snapshot-urls.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "SEC114", "level": "error", "message": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker-supplied segments does NOT prevent escape from the base directory. `../../../etc/passwd` resolves cleanly."}, "properties": {"repobilityId": 57276, "scanner": "repobility-threat-engine", "fingerprint": "5ee4d3201e736901f0ff6c8417793b38be40ee2e11e8a0bc7524dd1b980f47fd", "category": "path_traversal", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "path.resolve(params", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC114", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|156|sec114"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/paths.ts"}, "region": {"startLine": 156}}}]}, {"ruleId": "SEC114", "level": "error", "message": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker-supplied segments does NOT prevent escape from the base directory. `../../../etc/passwd` resolves cleanly."}, "properties": {"repobilityId": 57275, "scanner": "repobility-threat-engine", "fingerprint": "f6f006bfc23cda787353f8f3497e57af7fdb89b608b83f8af5c192cc77535047", "category": "path_traversal", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "path.resolve(params", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC114", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|23|sec114"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/output-files.ts"}, "region": {"startLine": 23}}}]}, {"ruleId": "SEC114", "level": "error", "message": {"text": "[SEC114] path.join / Path() on user-controlled segment without containment check: filepath.Clean / path.Join on attacker-supplied segments does NOT prevent escape from the base directory. `../../../etc/passwd` resolves cleanly."}, "properties": {"repobilityId": 57274, "scanner": "repobility-threat-engine", "fingerprint": "e9395ab0e8b283e89ffa4f00e1f0a12bf67bd155a3d3261cc687cf15ebc8a312", "category": "path_traversal", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "path.join(params", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC114", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|100|sec114"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/process-lease.ts"}, "region": {"startLine": 100}}}]}, {"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": 57272, "scanner": "repobility-threat-engine", "fingerprint": "94a64d5bf176de26cb09e7cc951bea9d9200e7c24d3ae1720467ed5524ec02e5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(path", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|94a64d5bf176de26cb09e7cc951bea9d9200e7c24d3ae1720467ed5524ec02e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/routes/dispatcher.ts"}, "region": {"startLine": 91}}}]}, {"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": 57271, "scanner": "repobility-threat-engine", "fingerprint": "a61ab9f80b9fcaecebc21b191d51d9aba76076499ce68175c91d5b3bd848e6d0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(normalizedSource", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a61ab9f80b9fcaecebc21b191d51d9aba76076499ce68175c91d5b3bd848e6d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/browser/src/browser/paths.ts"}, "region": {"startLine": 107}}}]}, {"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": 57270, "scanner": "repobility-threat-engine", "fingerprint": "b569410a4dca816d389ce4bb6aa8707eecd7959ab81525aa1cfc99b53d3e2335", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(line", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b569410a4dca816d389ce4bb6aa8707eecd7959ab81525aa1cfc99b53d3e2335"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "extensions/acpx/src/codex-trust-config.ts"}, "region": {"startLine": 144}}}]}, {"ruleId": "MINED008", "level": "error", "message": {"text": "[MINED008] Swift Force Unwrap: optional! crashes on nil. Use guard let or if let."}, "properties": {"repobilityId": 57269, "scanner": "repobility-threat-engine", "fingerprint": "ac5655c505f0fccb18539d0892080ddd346c489e13d3894f354372081ef0c045", "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": "swift-force-unwrap", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["swift"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347916+00:00", "triaged_in_corpus": 15, "observations_count": 210453, "ai_coder_pattern_id": 157}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ac5655c505f0fccb18539d0892080ddd346c489e13d3894f354372081ef0c045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/swabble/Sources/SwabbleCore/Support/AttributedString+Sentences.swift"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED008", "level": "error", "message": {"text": "[MINED008] Swift Force Unwrap: optional! crashes on nil. Use guard let or if let."}, "properties": {"repobilityId": 57268, "scanner": "repobility-threat-engine", "fingerprint": "e277ca89c78679e73a14692ecf0c1c5e5e6004fdc61b5c5e6d79881066aa7f19", "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": "swift-force-unwrap", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["swift"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347916+00:00", "triaged_in_corpus": 15, "observations_count": 210453, "ai_coder_pattern_id": 157}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e277ca89c78679e73a14692ecf0c1c5e5e6004fdc61b5c5e6d79881066aa7f19"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/shared/OpenClawKit/Sources/OpenClawKit/GatewayErrors.swift"}, "region": {"startLine": 185}}}]}, {"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": 57248, "scanner": "repobility-threat-engine", "fingerprint": "9973db9d8dfb5251611e40b8ee3e0f26342787cb167e7f90d6a2d76796a51666", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "tmpFile.delete()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9973db9d8dfb5251611e40b8ee3e0f26342787cb167e7f90d6a2d76796a51666"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/DebugHandler.kt"}, "region": {"startLine": 109}}}]}, {"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": 57247, "scanner": "repobility-threat-engine", "fingerprint": "1790fc5c03fa26b26f3bda08036fdf43c06c809f6296c9bc697d69d7a53b0315", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "filePayload.file.delete()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1790fc5c03fa26b26f3bda08036fdf43c06c809f6296c9bc697d69d7a53b0315"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/CameraHandler.kt"}, "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": 57246, "scanner": "repobility-threat-engine", "fingerprint": "adda8953c2f0be2e82b20c0cb4ab390d36cb6dfa3f8bd3f514f32d0beba6048d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "signer.update(payloadBytes, 0, payloadBytes.size)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|adda8953c2f0be2e82b20c0cb4ab390d36cb6dfa3f8bd3f514f32d0beba6048d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/gateway/DeviceIdentityStore.kt"}, "region": {"startLine": 74}}}]}, {"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": 57244, "scanner": "repobility-threat-engine", "fingerprint": "e98ad87d1c0dfb356eb98907422f628895c5d8b391515c00a906fb1cdfb7fc49", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e98ad87d1c0dfb356eb98907422f628895c5d8b391515c00a906fb1cdfb7fc49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/CanvasActionTrust.kt"}, "region": {"startLine": 14}}}]}, {"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": 57243, "scanner": "repobility-threat-engine", "fingerprint": "8184f66a15d739f50f487ec73071c96aa01dfc55053e6879efd659e74334ea12", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8184f66a15d739f50f487ec73071c96aa01dfc55053e6879efd659e74334ea12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/A2UIHandler.kt"}, "region": {"startLine": 16}}}]}, {"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": 57242, "scanner": "repobility-threat-engine", "fingerprint": "451b85c41f66a86d425211990328ac446ade5476749a72a89c3f4c5f1af2b9aa", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(i", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|451b85c41f66a86d425211990328ac446ade5476749a72a89c3f4c5f1af2b9aa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/gateway/DeviceIdentityStore.kt"}, "region": {"startLine": 115}}}]}, {"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": 57238, "scanner": "repobility-threat-engine", "fingerprint": "a13e5a2134e9badc39458d0f65263d2a79d096ae4d96b001cc03c676a7417e44", "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": "logger.log(level: .info, \"overlay autoSend immediate token=<redacted>", "reason": "Credential-bearing variable appears to be printed or logged", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.85, "correlation_key": "secret|token|8|logger.log level: .info overlay autosend immediate token redacted"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/macos/Sources/OpenClaw/VoiceWakeOverlayController+Session.swift"}, "region": {"startLine": 86}}}]}, {"ruleId": "SEC018", "level": "error", "message": {"text": "[SEC018] AI-Agent Secret Retrieval Command: A command that prints or embeds credentials was committed. AI coding agents often add these commands while trying to help with setup or deployment, but they can leak live secrets through logs, shell history, CI output, or documentation."}, "properties": {"repobilityId": 57233, "scanner": "repobility-threat-engine", "fingerprint": "66e9fc2b898e5a79f02ba72ef30be87bc1b32401e52c8d138892ebb840cc019c", "category": "credential_exposure", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "gh auth token", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC018", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "secret|. token|3|gh auth token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".agents/skills/release-openclaw-ci/scripts/release-ci-summary.mjs"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_API_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": 57458, "scanner": "repobility-supply-chain", "fingerprint": "98dae916e7b0c1749e58c0828238795a6ab9df519c6114ed60777a0bc5e7cda4", "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|98dae916e7b0c1749e58c0828238795a6ab9df519c6114ed60777a0bc5e7cda4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-check-arm-testbox.yml"}, "region": {"startLine": 130}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_KEY_OLD` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_API_KEY_OLD }` 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": 57457, "scanner": "repobility-supply-chain", "fingerprint": "71f21ef881eb907500090f2ab11f25b737546683aad70a24da1f722ebf1b3a51", "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|71f21ef881eb907500090f2ab11f25b737546683aad70a24da1f722ebf1b3a51"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-check-arm-testbox.yml"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_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": 57456, "scanner": "repobility-supply-chain", "fingerprint": "2ea9cf6a0629345be19fdee5458b1663a4c3446d7d9c69bfcb2f27056756968f", "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|2ea9cf6a0629345be19fdee5458b1663a4c3446d7d9c69bfcb2f27056756968f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-check-arm-testbox.yml"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.Z_AI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.Z_AI_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": 57455, "scanner": "repobility-supply-chain", "fingerprint": "44305495a2d45ba27175fb6f09806b04be1805f5c2393ef306a1cf8a0d29125c", "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|44305495a2d45ba27175fb6f09806b04be1805f5c2393ef306a1cf8a0d29125c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 230}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ZAI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ZAI_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": 57454, "scanner": "repobility-supply-chain", "fingerprint": "4a6657e712f2403b125afc18287d9e9584291238c7519bba328f468afd16f2f9", "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|4a6657e712f2403b125afc18287d9e9584291238c7519bba328f468afd16f2f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 229}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.XAI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.XAI_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": 57453, "scanner": "repobility-supply-chain", "fingerprint": "a8bc648bc1aa45d4564f5e3099b67bc5cb22233ea4357f0239c8da9359976b01", "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|a8bc648bc1aa45d4564f5e3099b67bc5cb22233ea4357f0239c8da9359976b01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 228}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.TOGETHER_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.TOGETHER_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": 57452, "scanner": "repobility-supply-chain", "fingerprint": "8eb0381bdfec7e35b3e72dc24b0bc32bab6790d73c7e72df218b7ee2969f8c3c", "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|8eb0381bdfec7e35b3e72dc24b0bc32bab6790d73c7e72df218b7ee2969f8c3c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 227}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.QWEN_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.QWEN_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": 57451, "scanner": "repobility-supply-chain", "fingerprint": "e3204c111473afc0420a38e62ba33558bb1aa6bb0a1ae92a24e45e1902ae0106", "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|e3204c111473afc0420a38e62ba33558bb1aa6bb0a1ae92a24e45e1902ae0106"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 226}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OPENROUTER_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OPENROUTER_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": 57450, "scanner": "repobility-supply-chain", "fingerprint": "a2834556b29a5595af5344cdb2d976dbfaecf226481db277ba0d1254ef8c7825", "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|a2834556b29a5595af5344cdb2d976dbfaecf226481db277ba0d1254ef8c7825"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 225}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OPENAI_BASE_URL` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OPENAI_BASE_URL }` 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": 57449, "scanner": "repobility-supply-chain", "fingerprint": "9790750cf9ec2047369fef606e6eee078d29b411351710ef8b5272ba76263634", "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|9790750cf9ec2047369fef606e6eee078d29b411351710ef8b5272ba76263634"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 224}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OPENAI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OPENAI_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": 57448, "scanner": "repobility-supply-chain", "fingerprint": "f18cb0f717596a57a013089f128c1e5000567dad961651f7ad7a565525259779", "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|f18cb0f717596a57a013089f128c1e5000567dad961651f7ad7a565525259779"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 223}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.MOONSHOT_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.MOONSHOT_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": 57447, "scanner": "repobility-supply-chain", "fingerprint": "a1f699e6794f018cfff60e264ea4d82e215d1f8d7c258ac22ea8613e15837461", "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|a1f699e6794f018cfff60e264ea4d82e215d1f8d7c258ac22ea8613e15837461"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 222}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.MISTRAL_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.MISTRAL_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": 57446, "scanner": "repobility-supply-chain", "fingerprint": "5b15b2b74a40fa09d38dc10e52b79bce062518843e7fe1fdc217e4680a3133e1", "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|5b15b2b74a40fa09d38dc10e52b79bce062518843e7fe1fdc217e4680a3133e1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 221}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.MINIMAX_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.MINIMAX_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": 57445, "scanner": "repobility-supply-chain", "fingerprint": "c82652773379722ec3d3e0dbdda20c919dd38b619a026b0bb89a5a842c445a97", "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|c82652773379722ec3d3e0dbdda20c919dd38b619a026b0bb89a5a842c445a97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 220}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.KIMI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.KIMI_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": 57444, "scanner": "repobility-supply-chain", "fingerprint": "8c3bc73d2030fe9ca74c99e09814786ccd189145c431d32a44b604cf7079f601", "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|8c3bc73d2030fe9ca74c99e09814786ccd189145c431d32a44b604cf7079f601"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 219}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GROQ_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GROQ_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": 57443, "scanner": "repobility-supply-chain", "fingerprint": "55dc1639c8b0f20d5f4f92ed1fc2fe66e5e544cdc5f4c9f83344c11021f48eaf", "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|55dc1639c8b0f20d5f4f92ed1fc2fe66e5e544cdc5f4c9f83344c11021f48eaf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 218}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GOOGLE_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GOOGLE_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": 57442, "scanner": "repobility-supply-chain", "fingerprint": "7a58a232dc80c683130bf4b33fa7202b7729710a383aa88087c71ff27b265c51", "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|7a58a232dc80c683130bf4b33fa7202b7729710a383aa88087c71ff27b265c51"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 217}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GEMINI_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GEMINI_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": 57441, "scanner": "repobility-supply-chain", "fingerprint": "26933fda9dd45f29ea1c9e503b468b44d8d1906fd238f3eeb72274439c45fbbb", "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|26933fda9dd45f29ea1c9e503b468b44d8d1906fd238f3eeb72274439c45fbbb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 216}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.FIREWORKS_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.FIREWORKS_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": 57440, "scanner": "repobility-supply-chain", "fingerprint": "07eafad9fbe9d352f961a52cfe42d44ed5308e417120ce6301a25c769d820051", "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|07eafad9fbe9d352f961a52cfe42d44ed5308e417120ce6301a25c769d820051"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 215}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.DEEPINFRA_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.DEEPINFRA_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": 57439, "scanner": "repobility-supply-chain", "fingerprint": "5041a980ab7c1b59908ff96a102b9e1e7899d2c4f68e054f3c126763598b8930", "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|5041a980ab7c1b59908ff96a102b9e1e7899d2c4f68e054f3c126763598b8930"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 214}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CEREBRAS_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CEREBRAS_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": 57438, "scanner": "repobility-supply-chain", "fingerprint": "a6a54fb511c44ada25a5d5f028a470ed32e273f232f48c5be0d19233068c0bf3", "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|a6a54fb511c44ada25a5d5f028a470ed32e273f232f48c5be0d19233068c0bf3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 213}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_API_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": 57437, "scanner": "repobility-supply-chain", "fingerprint": "3a6ee09bfbb4741d87b9f6f44136c1157e33c42f3ad4b33b6fddf17b71c41b6f", "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|3a6ee09bfbb4741d87b9f6f44136c1157e33c42f3ad4b33b6fddf17b71c41b6f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 212}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_KEY_OLD` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_API_KEY_OLD }` 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": 57436, "scanner": "repobility-supply-chain", "fingerprint": "0661ef7d645ffac6a1824f2a7dcb4bcf35902399a40c4537c163087e13dfc142", "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|0661ef7d645ffac6a1824f2a7dcb4bcf35902399a40c4537c163087e13dfc142"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 211}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.ANTHROPIC_API_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.ANTHROPIC_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": 57435, "scanner": "repobility-supply-chain", "fingerprint": "d44cfd0f8900c309cec7251dbe5d8b539cda23569e4384be60952704b437a09e", "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|d44cfd0f8900c309cec7251dbe5d8b539cda23569e4384be60952704b437a09e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci-build-artifacts-testbox.yml"}, "region": {"startLine": 210}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.OPENCLAW_GH_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.OPENCLAW_GH_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": 57433, "scanner": "repobility-supply-chain", "fingerprint": "a6db0560a321a8e103eab2eaedeed2e489d6b7f88df271f07469038185edc7da", "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|a6db0560a321a8e103eab2eaedeed2e489d6b7f88df271f07469038185edc7da"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/website-installer-sync.yml"}, "region": {"startLine": 136}}}]}, {"ruleId": "SEC084", "level": "error", "message": {"text": "[SEC084] JS: require() with non-literal: require(<variable>) loads arbitrary modules \u2014 equivalent to eval at module scope. Ported from eslint-plugin-security detect-non-literal-require (Apache-2.0)."}, "properties": {"repobilityId": 57254, "scanner": "repobility-threat-engine", "fingerprint": "e3fe7cad2f2d608430b9aea91dad8fca281bcb82e6a0cbf00a578557d49d6cd9", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(initialWidth", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e3fe7cad2f2d608430b9aea91dad8fca281bcb82e6a0cbf00a578557d49d6cd9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "apps/android/app/src/main/java/ai/openclaw/app/node/JpegSizeLimiter.kt"}, "region": {"startLine": 34}}}]}]}]}