{"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: `scikit-learn` has no version pin: Unpinned pip requirement means every fresh install may r", "shortDescription": {"text": "[MINED124] requirements.txt: `scikit-learn` 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 "}, "fullDescription": {"text": "Replace `scikit-learn` with `scikit-learn==<version>` and manage upgrades through PRs / Dependabot."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "medium", "confidence": 0.9, "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": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR007", "name": "Docker build context has no .dockerignore", "shortDescription": {"text": "Docker build context has no .dockerignore"}, "fullDescription": {"text": "Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "DKR015", "name": "Docker build context is very large", "shortDescription": {"text": "Docker build context is very large"}, "fullDescription": {"text": "Shrink the build context with .dockerignore, move generated/runtime data outside the build context, and copy only the manifest files needed for cached dependency layers."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.84, "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": "AIC004", "name": "Suspicious implementation file appears unreferenced", "shortDescription": {"text": "Suspicious implementation file appears unreferenced"}, "fullDescription": {"text": "Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.78, "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": "SEC112", "name": "[SEC112] Go html/template bypass \u2014 text/template used for HTML output, or template.HTML on user input: Go's `text/templa", "shortDescription": {"text": "[SEC112] Go html/template bypass \u2014 text/template used for HTML output, or template.HTML on user input: Go's `text/template` does no HTML escaping. `template.HTML(x)` marks data as already-safe. Using either with user input = XSS."}, "fullDescription": {"text": "Use `html/template` (NOT `text/template`) for HTML responses. Never wrap user input with `template.HTML/JS/URL`."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC091", "name": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnera", "shortDescription": {"text": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnerable to Slowloris. Ported from gosec G112 + G114 (Apache-2.0)."}, "fullDescription": {"text": "Construct `&http.Server{Addr: ..., ReadHeaderTimeout: 5*time.Second, ReadTimeout: 10*time.Second, WriteTimeout: 30*time.Second}`."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "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": "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": "WEB005", "name": "robots.txt does not advertise a sitemap", "shortDescription": {"text": "robots.txt does not advertise a sitemap"}, "fullDescription": {"text": "Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "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": "ERR003", "name": "[ERR003] Ignored Error (Go): Ignoring error return values.", "shortDescription": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "fullDescription": {"text": "Handle the error or use errcheck linter."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC132", "name": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the la", "shortDescription": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on it"}, "fullDescription": {"text": "Python: `f\"prefix {var} suffix\"`. JS/TS: `` `prefix ${var} suffix` ``. Add a lint rule (pyupgrade UP032, eslint prefer-template) so future PRs catch this automatically."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED071", "name": "[MINED071] Go Panic Call (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED071] Go Panic Call (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC093", "name": "[SEC093] Go: exec.Command with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[SEC093] Go: exec.Command with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Use a constant command name and validate args via a whitelist."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED033", "name": "[MINED033] Go Recover Without Log (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[MINED033] Go Recover Without Log (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED060", "name": "[MINED060] Go Context No Cancel (and 7 more): Same pattern found in 7 additional files. Review if needed.", "shortDescription": {"text": "[MINED060] Go Context No Cancel (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-401 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii (and 25 more): Same pattern found in 25 additional files. Review if needed.", "shortDescription": {"text": "[MINED049] Print Pii (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 33 more): Same pattern found in 33 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 33 more): Same pattern found in 33 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": "MINED013", "name": "[MINED013] Password In Url (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED013] Password In Url (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 1 more): Same pattern found in 1 addit", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 1 more): Same pattern found in 1 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": "MINED043", "name": "[MINED043] Http Not Https (and 20 more): Same pattern found in 20 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 20 more): Same pattern found in 20 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": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal (and 3 more): Same pattern found in 3 additional files. Review if neede", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal (and 3 more): Same pattern found in 3 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": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 35 more): Same pattern found in 35 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 35 more): Same pattern found in 35 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": "MINED044", "name": "[MINED044] Js Console Log Prod (and 19 more): Same pattern found in 19 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 19 more): Same pattern found in 19 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": "MINED117", "name": "[MINED117] Workflow declares `permissions: write-all`: The job's GITHUB_TOKEN gets EVERY permission scope. If the workfl", "shortDescription": {"text": "[MINED117] Workflow declares `permissions: write-all`: The job's GITHUB_TOKEN gets EVERY permission scope. If the workflow is ever compromised (mutable action, fork PR, injected step), the attacker can push to main, publish packages, alter "}, "fullDescription": {"text": "Replace with a scoped block: `permissions:\\n  contents: read\\n  issues: write` (only the scopes you need)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED126", "name": "[MINED126] Workflow container/services image `redis:7` unpinned: `container/services image: redis:7` without `@sha256:..", "shortDescription": {"text": "[MINED126] Workflow container/services image `redis:7` unpinned: `container/services image: redis:7` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline a"}, "fullDescription": {"text": "Replace with `redis:7@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/setup-go` pinned to mutable ref `@v5`: `uses: actions/setup-go@v5` resolves at workflow-run t", "shortDescription": {"text": "[MINED115] Action `actions/setup-go` pinned to mutable ref `@v5`: `uses: actions/setup-go@v5` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) in"}, "fullDescription": {"text": "Replace with: `uses: actions/setup-go@<40-char-sha>  # v5` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED122", "name": "[MINED122] package.json dep `@actions/github-script` pulled from URL/Git: `devDependencies.@actions/github-script` = `gi", "shortDescription": {"text": "[MINED122] package.json dep `@actions/github-script` pulled from URL/Git: `devDependencies.@actions/github-script` = `github:actions/github-script#v9.0.0` bypasses the npm registry. No integrity hash, no version locking, no registry-side sc"}, "fullDescription": {"text": "Publish the dependency to npm (or your private registry) and reference it by `^x.y.z`. If that's not possible, lock by commit SHA: `git+https://...#<full-sha>` AND verify the SHA in CI."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `mcr.microsoft.com/devcontainers/go:1-bookworm` not pinned by digest: `FROM mcr.microsoft.com", "shortDescription": {"text": "[MINED118] Dockerfile FROM `mcr.microsoft.com/devcontainers/go:1-bookworm` not pinned by digest: `FROM mcr.microsoft.com/devcontainers/go:1-bookworm` resolves the tag at build time. The registry CAN re-push a different image for the same ta"}, "fullDescription": {"text": "Replace with: `FROM mcr.microsoft.com/devcontainers/go:1-bookworm@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_no_invalid_params: Test function `test_no_invalid_params` runs code but contains ", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_no_invalid_params: Test function `test_no_invalid_params` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "MINED016", "name": "[MINED016] Go Error Ignored: _, err := fn() with err not checked. Go anti-pattern.", "shortDescription": {"text": "[MINED016] Go Error Ignored: _, err := fn() with err not checked. Go anti-pattern."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-754 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC100", "name": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make ", "shortDescription": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "fullDescription": {"text": "Allowlist specific origins. For dynamic per-request validation, validate against a known list and echo the origin back. Never combine wildcard origin with credentials."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that int", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTM"}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "MINED012", "name": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code.", "shortDescription": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_reque", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_TOKEN }` lets a PR from any fork exfiltrate "}, "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": "MINED035", "name": "[MINED035] Js New Function: new Function(...) compiles strings to functions.", "shortDescription": {"text": "[MINED035] Js New Function: new Function(...) compiles strings to functions."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-95 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "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/1048"}, "properties": {"repository": "github/gh-aw", "repoUrl": "https://github.com/github/gh-aw", "branch": "main"}, "results": [{"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `scikit-learn` 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": 103047, "scanner": "repobility-supply-chain", "fingerprint": "94a78c29b7c2b21f7ce992dbfd5f2fe84305cfc6153d76f3b5ebbb3e634ab1ab", "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|94a78c29b7c2b21f7ce992dbfd5f2fe84305cfc6153d76f3b5ebbb3e634ab1ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/requirements.txt"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `numpy` 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": 103046, "scanner": "repobility-supply-chain", "fingerprint": "c851ee2270f7ef654df64e0621bced44f0accdac81e1da6f3b1bb58ddd52d597", "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|c851ee2270f7ef654df64e0621bced44f0accdac81e1da6f3b1bb58ddd52d597"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/requirements.txt"}, "region": {"startLine": 3}}}]}, {"ruleId": "MINED124", "level": "warning", "message": {"text": "[MINED124] requirements.txt: `markitdown-mcp` 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": 103045, "scanner": "repobility-supply-chain", "fingerprint": "134e3e65e8f2179c0293f89e949ced3370aedc989fea86fcdae0b2930787886d", "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|134e3e65e8f2179c0293f89e949ced3370aedc989fea86fcdae0b2930787886d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/requirements.txt"}, "region": {"startLine": 2}}}]}, {"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": 103011, "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": ["GraphQL"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 103010, "scanner": "repobility-docker", "fingerprint": "43cfe7ad0436f84ff77e31b737785f0e5e8bb5f9a2083666e6d33419652d9722", "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": "alpine:3.21", "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|43cfe7ad0436f84ff77e31b737785f0e5e8bb5f9a2083666e6d33419652d9722"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 103009, "scanner": "repobility-docker", "fingerprint": "c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Dockerfile exists but repository root has no .dockerignore.", "evidence": {"rule_id": "DKR007", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c98378cf8c37e4866e89d6ca06a24b7e8c44654aa34e6e4bf1367c4a4c0c5b44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 103008, "scanner": "repobility-docker", "fingerprint": "2d2208484c91d91d396bb391119712bf46319d44b21645394b977aa95113373d", "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": "mcr.microsoft.com/devcontainers/go:1-bookworm", "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|2d2208484c91d91d396bb391119712bf46319d44b21645394b977aa95113373d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".devcontainer/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR015", "level": "warning", "message": {"text": "Docker build context is very large"}, "properties": {"repobilityId": 103007, "scanner": "repobility-docker", "fingerprint": "b15d4f710afeff2af4cd4ab204332853f9025b78869a0e87bb466a798bb1a15b", "category": "docker", "severity": "medium", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Estimated Docker build context exceeds Repobility's size or file-count threshold.", "evidence": {"capped": false, "rule_id": "DKR015", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "largest_paths": [{"path": ".git/objects/pack/pack-43e30c109b10ade8fabf134e8c048b14c41bd755.pack", "size_mb": 210.6}, {"path": "docs/public/videos/install-and-add-workflow-in-cli.mp4", "size_mb": 68.4}, {"path": "docs/public/videos/create-workflow-on-github.mp4", "size_mb": 53.3}, {"path": "gh-aw-wasm", "size_mb": 22.7}, {"path": "docs/public/videos/create-pat-org-agent.mp4", "size_mb": 18.4}], "included_files": 5189, "context_size_mb": 539.4, "correlation_key": "fp|b15d4f710afeff2af4cd4ab204332853f9025b78869a0e87bb466a798bb1a15b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 103006, "scanner": "repobility-agent-runtime", "fingerprint": "3ac22148ee644312e1908cfbd06b974389221618d3ec22791a9acf19cc94d4b7", "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|3ac22148ee644312e1908cfbd06b974389221618d3ec22791a9acf19cc94d4b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/daily-byok-ollama-test.md"}, "region": {"startLine": 23}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 103005, "scanner": "repobility-agent-runtime", "fingerprint": "c709cd98c819c1818efc332ab31256c281bdff8b00dbb08af9577923c270340b", "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|c709cd98c819c1818efc332ab31256c281bdff8b00dbb08af9577923c270340b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/copilot-setup-steps.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 103004, "scanner": "repobility-agent-runtime", "fingerprint": "b1b6f564e9825fb245bc508aa1ed007daac2b10a8057226dbb629ebfa96481e2", "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|b1b6f564e9825fb245bc508aa1ed007daac2b10a8057226dbb629ebfa96481e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".devcontainer/devcontainer.json"}, "region": {"startLine": 50}}}]}, {"ruleId": "AIC004", "level": "warning", "message": {"text": "Suspicious implementation file appears unreferenced"}, "properties": {"repobilityId": 102973, "scanner": "repobility-ai-code-hygiene", "fingerprint": "fc884190407dc0256ed68b9d1790aaccde171d243b471bc3e1cfb7dd06fe3dfa", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Patch-style source file has no detected inbound reference from other repository files.", "evidence": {"suffix": "update", "rule_id": "AIC004", "scanner": "repobility-ai-code-hygiene", "references": ["https://knip.dev/", "https://github.com/jendrikseipp/vulture"], "correlation_key": "fp|fc884190407dc0256ed68b9d1790aaccde171d243b471bc3e1cfb7dd06fe3dfa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/outcome_eval_update.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC001", "level": "warning", "message": {"text": "Parallel implementation file sits beside a canonical file"}, "properties": {"repobilityId": 102970, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a82812c1bedfa585abfe911cb20c63f2c159a3dd564b6093a2825f905032850b", "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": "pkg/cli/outcome_eval.go", "correlation_key": "fp|a82812c1bedfa585abfe911cb20c63f2c159a3dd564b6093a2825f905032850b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/outcome_eval_update.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC112", "level": "warning", "message": {"text": "[SEC112] Go html/template bypass \u2014 text/template used for HTML output, or template.HTML on user input: Go's `text/template` does no HTML escaping. `template.HTML(x)` marks data as already-safe. Using either with user input = XSS."}, "properties": {"repobilityId": 102960, "scanner": "repobility-threat-engine", "fingerprint": "ad4ee46d87354fd3687063a6da73fe0fec08f78a6d21ecf7e3696e8f1b524bf6", "category": "xss", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "fmt.Fprintln(w, fmt.Sprintf(...)) calls that should be rewritten as fmt.Fprintf(w, ...)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC112", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ad4ee46d87354fd3687063a6da73fe0fec08f78a6d21ecf7e3696e8f1b524bf6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/fprintlnsprintf/fprintlnsprintf.go"}, "region": {"startLine": 19}}}]}, {"ruleId": "SEC112", "level": "warning", "message": {"text": "[SEC112] Go html/template bypass \u2014 text/template used for HTML output, or template.HTML on user input: Go's `text/template` does no HTML escaping. `template.HTML(x)` marks data as already-safe. Using either with user input = XSS."}, "properties": {"repobilityId": 102959, "scanner": "repobility-threat-engine", "fingerprint": "9c19d8e2e4630cf83b909380e1778fb705b2ac4c7c798acf61a139ade4bc1af5", "category": "xss", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "fmt.Fprintln(output, console.FormatInfoMessage(startMsg))\n\n\t// Use provided context or fall back to", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC112", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9c19d8e2e4630cf83b909380e1778fb705b2ac4c7c798acf61a139ade4bc1af5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/retry.go"}, "region": {"startLine": 64}}}]}, {"ruleId": "SEC091", "level": "warning", "message": {"text": "[SEC091] Go: net/http server without timeouts: HTTP server without ReadHeaderTimeout/ReadTimeout/WriteTimeout is vulnerable to Slowloris. Ported from gosec G112 + G114 (Apache-2.0)."}, "properties": {"repobilityId": 102958, "scanner": "repobility-threat-engine", "fingerprint": "b7a838de597d629fac49563c38362e8c4925e4398fbaa114b3aa5d90ba0f426a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "http.Server{\n\t\tAddr:              addr,\n\t\tHandler:           handlerWithLogging,\n\t\tReadHeaderTimeout", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC091", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b7a838de597d629fac49563c38362e8c4925e4398fbaa114b3aa5d90ba0f426a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_server_http.go"}, "region": {"startLine": 80}}}]}, {"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": 102941, "scanner": "repobility-threat-engine", "fingerprint": "5f8313dfba9530b992c2c2034e0288330bc4420f427010baccb52408fe7a1d99", "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|5f8313dfba9530b992c2c2034e0288330bc4420f427010baccb52408fe7a1d99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/add_wizard_command.go"}, "region": {"startLine": 47}}}]}, {"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": 102906, "scanner": "repobility-threat-engine", "fingerprint": "a7c31f2c1f98309bfb4f827f3cbc81d08019e6f894624b61ae9f999da47c8268", "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|95|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/dynamic_checkout.cjs"}, "region": {"startLine": 95}}}]}, {"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": 102905, "scanner": "repobility-threat-engine", "fingerprint": "6cbe2aec72c5b70ebdeb6e84e35570187f18c8f980148ea397fa5ba1e619efbc", "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|69|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/comment_memory_helpers.cjs"}, "region": {"startLine": 69}}}]}, {"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": 102904, "scanner": "repobility-threat-engine", "fingerprint": "298f2625884ae610fa02c39f92ca6564f4b0384b71baea948f048d69b55c5ef8", "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|80|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/apply_safe_outputs_replay.cjs"}, "region": {"startLine": 80}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 102899, "scanner": "repobility-threat-engine", "fingerprint": "ab4a546614652dea7650453a7f273fbf11b5fc2e5983476dd59d584dc16fb835", "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|ab4a546614652dea7650453a7f273fbf11b5fc2e5983476dd59d584dc16fb835"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/action_setup_otlp.cjs"}, "region": {"startLine": 191}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 102898, "scanner": "repobility-threat-engine", "fingerprint": "7a7a3e287a215d22c6a9989fd7ccfed8cf81803fa1491b10a0c425b702ac60b9", "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|7a7a3e287a215d22c6a9989fd7ccfed8cf81803fa1491b10a0c425b702ac60b9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/action_conclusion_otlp.cjs"}, "region": {"startLine": 97}}}]}, {"ruleId": "WEB005", "level": "note", "message": {"text": "robots.txt does not advertise a sitemap"}, "properties": {"repobilityId": 103012, "scanner": "repobility-web-presence", "fingerprint": "433593e59ae4d20649acb59e33bdf3ff74d9013805e429741eeca819d6a68891", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Discovered robots file or route lacks a Sitemap directive.", "evidence": {"rule_id": "WEB005", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://www.sitemaps.org/protocol.html"], "correlation_key": "fp|433593e59ae4d20649acb59e33bdf3ff74d9013805e429741eeca819d6a68891"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/aw/syntax-agentic.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103003, "scanner": "repobility-ai-code-hygiene", "fingerprint": "1e99b4a6e860f33b5ccde96bb6d649c7e592220a8ba0b85515f095845a9a2b2a", "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": "pkg/linters/osexitinlibrary/osexitinlibrary.go", "duplicate_line": 15, "correlation_key": "fp|1e99b4a6e860f33b5ccde96bb6d649c7e592220a8ba0b85515f095845a9a2b2a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/panic-in-library-code/panic-in-library-code.go"}, "region": {"startLine": 19}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103002, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8216396b51b836e03acdd85c864f70dfb7f9bf4e40bbd159284a2014f8e4374e", "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": "pkg/linters/fmterrorfnoverbs/fmterrorfnoverbs.go", "duplicate_line": 20, "correlation_key": "fp|8216396b51b836e03acdd85c864f70dfb7f9bf4e40bbd159284a2014f8e4374e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/ossetenvlibrary/ossetenvlibrary.go"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103001, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d553a9b296fe5cd52eeb164c699fd1f45a31dac1fb77697f9c0340495e48e9e8", "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": "pkg/linters/osexitinlibrary/osexitinlibrary.go", "duplicate_line": 21, "correlation_key": "fp|d553a9b296fe5cd52eeb164c699fd1f45a31dac1fb77697f9c0340495e48e9e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/ossetenvlibrary/ossetenvlibrary.go"}, "region": {"startLine": 22}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103000, "scanner": "repobility-ai-code-hygiene", "fingerprint": "945e3374d63dc875fd584355df4943a3d8eeea39178b037855ad4c3d0822320d", "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": "pkg/linters/fmterrorfnoverbs/fmterrorfnoverbs.go", "duplicate_line": 20, "correlation_key": "fp|945e3374d63dc875fd584355df4943a3d8eeea39178b037855ad4c3d0822320d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/osexitinlibrary/osexitinlibrary.go"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102999, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6a53ec6b6fa707798e0819a4001c6617a3fe9db5a0f64c35177bbbf68dc41377", "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": "pkg/linters/contextcancelnotdeferred/contextcancelnotdeferred.go", "duplicate_line": 16, "correlation_key": "fp|6a53ec6b6fa707798e0819a4001c6617a3fe9db5a0f64c35177bbbf68dc41377"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/manualmutexunlock/manualmutexunlock.go"}, "region": {"startLine": 16}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102998, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c220e08fe0785a77f104d59fe0a0fdec656d09fbc3e5e7c6eb40e0be1d615deb", "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": "pkg/linters/fmterrorfnoverbs/fmterrorfnoverbs.go", "duplicate_line": 16, "correlation_key": "fp|c220e08fe0785a77f104d59fe0a0fdec656d09fbc3e5e7c6eb40e0be1d615deb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/fprintlnsprintf/fprintlnsprintf.go"}, "region": {"startLine": 14}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102997, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e599e15ee13f40ebe85200db5923fc6cca1145a1846e69594c2e0e779906ac68", "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": "pkg/linters/contextcancelnotdeferred/contextcancelnotdeferred.go", "duplicate_line": 16, "correlation_key": "fp|e599e15ee13f40ebe85200db5923fc6cca1145a1846e69594c2e0e779906ac68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/fileclosenotdeferred/fileclosenotdeferred.go"}, "region": {"startLine": 16}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102996, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4001b4f71993cd3607c75996b62e27d91f7b7bc5aef12baacb7bd0b1445722fe", "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": "pkg/cli/runner_guard.go", "duplicate_line": 3, "correlation_key": "fp|4001b4f71993cd3607c75996b62e27d91f7b7bc5aef12baacb7bd0b1445722fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/zizmor.go"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102995, "scanner": "repobility-ai-code-hygiene", "fingerprint": "98990fad9962237f02d50a003ffba2f7dc32cd523454f0ae3355411fc27ac1ab", "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": "pkg/cli/status_command.go", "duplicate_line": 366, "correlation_key": "fp|98990fad9962237f02d50a003ffba2f7dc32cd523454f0ae3355411fc27ac1ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/workflows.go"}, "region": {"startLine": 59}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102994, "scanner": "repobility-ai-code-hygiene", "fingerprint": "46cb3252a3425b710b07d522c5f87e3757f9dec6f78f6fe3074584671be85d02", "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": "pkg/cli/update_actions.go", "duplicate_line": 1, "correlation_key": "fp|46cb3252a3425b710b07d522c5f87e3757f9dec6f78f6fe3074584671be85d02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/update_container_pins.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102993, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5ee25760cfb10a7ff8536b92880592133973bd97814f6ce1dff187e6ced00bfe", "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": "pkg/cli/compile_compiler_setup.go", "duplicate_line": 1, "correlation_key": "fp|5ee25760cfb10a7ff8536b92880592133973bd97814f6ce1dff187e6ced00bfe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/trial_support.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102992, "scanner": "repobility-ai-code-hygiene", "fingerprint": "382fe0115d6cfbbeeea231b4300165f5b7caab69f2e976450ae869e87b147fcf", "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": "pkg/cli/run_workflow_execution.go", "duplicate_line": 1, "correlation_key": "fp|382fe0115d6cfbbeeea231b4300165f5b7caab69f2e976450ae869e87b147fcf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/trial_helpers.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102991, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8214135aa94edaa4cd3ae62f6c1d369b0691bb65d0c968eed11fd7af1804b0bb", "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": "pkg/cli/list_workflows_command.go", "duplicate_line": 143, "correlation_key": "fp|8214135aa94edaa4cd3ae62f6c1d369b0691bb65d0c968eed11fd7af1804b0bb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/status_command.go"}, "region": {"startLine": 112}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102990, "scanner": "repobility-ai-code-hygiene", "fingerprint": "11f4961dc3eaa5e0165dee3692bcd37b0bc2ee6cfe0dd726d11c0f427d4294d0", "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": "pkg/cli/poutine.go", "duplicate_line": 222, "correlation_key": "fp|11f4961dc3eaa5e0165dee3692bcd37b0bc2ee6cfe0dd726d11c0f427d4294d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/runner_guard.go"}, "region": {"startLine": 158}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102989, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b0d358c4448098e84847577036b679b18624d55881914b561ff0b46f30ba0c9b", "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": "pkg/cli/includes.go", "duplicate_line": 89, "correlation_key": "fp|b0d358c4448098e84847577036b679b18624d55881914b561ff0b46f30ba0c9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/resources.go"}, "region": {"startLine": 48}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102988, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0a8e57742c2a59908a650b53fee888bd0a7dd23691dd88fb2cb3c9f12cf87bd9", "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": "pkg/cli/imports.go", "duplicate_line": 179, "correlation_key": "fp|0a8e57742c2a59908a650b53fee888bd0a7dd23691dd88fb2cb3c9f12cf87bd9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/packages.go"}, "region": {"startLine": 55}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102987, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0921ffb19360901d52c96722fdb6eeb8b03bffb57d4d1998f28b5ad74146aa6c", "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": "pkg/cli/outcome_eval_generic.go", "duplicate_line": 165, "correlation_key": "fp|0921ffb19360901d52c96722fdb6eeb8b03bffb57d4d1998f28b5ad74146aa6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/outcome_eval_pr.go"}, "region": {"startLine": 55}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102986, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2cca5492e10645a6f57c61dbebbe06eb97fa9f62f105f0b17a1851c2f4733472", "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": "pkg/cli/mcp_inspect.go", "duplicate_line": 28, "correlation_key": "fp|2cca5492e10645a6f57c61dbebbe06eb97fa9f62f105f0b17a1851c2f4733472"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_list_tools.go"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102985, "scanner": "repobility-ai-code-hygiene", "fingerprint": "742fbb6174f3ea5b7eb7f62318bd5de939d05efa76bdb81f386318cccc298072", "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": "pkg/cli/logs_parsing_firewall.go", "duplicate_line": 52, "correlation_key": "fp|742fbb6174f3ea5b7eb7f62318bd5de939d05efa76bdb81f386318cccc298072"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/logs_parsing_javascript.go"}, "region": {"startLine": 69}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102984, "scanner": "repobility-ai-code-hygiene", "fingerprint": "525879675003ad1a93420a79870425cb13a46009e33f43a3c9fb2adbb493e99e", "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": "pkg/cli/codemod_agent_session.go", "duplicate_line": 29, "correlation_key": "fp|525879675003ad1a93420a79870425cb13a46009e33f43a3c9fb2adbb493e99e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_upload_assets.go"}, "region": {"startLine": 24}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102983, "scanner": "repobility-ai-code-hygiene", "fingerprint": "21f8024242f69a23bc1d0c43debb0e9ce5707a41abf92edf666703f55668c396", "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": "pkg/cli/codemod_checkout_persist_credentials_false.go", "duplicate_line": 70, "correlation_key": "fp|21f8024242f69a23bc1d0c43debb0e9ce5707a41abf92edf666703f55668c396"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_steps_run_secrets_env.go"}, "region": {"startLine": 55}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102982, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4b4381bb9900cad8cd5372ee5262183ebb460aaacd876374eab1a9dbb61cf59a", "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": "pkg/cli/codemod_mcp_network.go", "duplicate_line": 65, "correlation_key": "fp|4b4381bb9900cad8cd5372ee5262183ebb460aaacd876374eab1a9dbb61cf59a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_playwright_domains.go"}, "region": {"startLine": 48}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102981, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cd0bdbcfa0fa0163fd38033379c36715d7b6e72bdd25972834650fe539493806", "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": "pkg/cli/codemod_github_app.go", "duplicate_line": 71, "correlation_key": "fp|cd0bdbcfa0fa0163fd38033379c36715d7b6e72bdd25972834650fe539493806"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_github_repos.go"}, "region": {"startLine": 54}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102980, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7cc73aa9f3842a5cd9b7ea12a6cc5696fe1b19136c52eafeeda2f4ac186ecd6c", "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": "pkg/cli/codemod_cli_proxy_mode.go", "duplicate_line": 52, "correlation_key": "fp|7cc73aa9f3842a5cd9b7ea12a6cc5696fe1b19136c52eafeeda2f4ac186ecd6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_github_repos.go"}, "region": {"startLine": 26}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102979, "scanner": "repobility-ai-code-hygiene", "fingerprint": "22ea4ced5c639ae930529ac5c4a9bce66a2003213d355b1a44d15dee583b29fb", "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": "pkg/cli/codemod_engine_max_runs.go", "duplicate_line": 39, "correlation_key": "fp|22ea4ced5c639ae930529ac5c4a9bce66a2003213d355b1a44d15dee583b29fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_engine_max_turns.go"}, "region": {"startLine": 39}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102978, "scanner": "repobility-ai-code-hygiene", "fingerprint": "afaec4db5d5d51ac015d937f54fe2da02d165bb9fe793d9d89d01051d00e88d1", "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": "pkg/cli/codemod_cli_proxy_mode.go", "duplicate_line": 52, "correlation_key": "fp|afaec4db5d5d51ac015d937f54fe2da02d165bb9fe793d9d89d01051d00e88d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_difc_proxy.go"}, "region": {"startLine": 66}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102977, "scanner": "repobility-ai-code-hygiene", "fingerprint": "93ee7c400bbe932542a79b8961fd0ea5b650336e73d4d8645f21e057be98772c", "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": "pkg/cli/codemod_copilot_requests_feature.go", "duplicate_line": 84, "correlation_key": "fp|93ee7c400bbe932542a79b8961fd0ea5b650336e73d4d8645f21e057be98772c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_dependabot_permissions.go"}, "region": {"startLine": 105}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102976, "scanner": "repobility-ai-code-hygiene", "fingerprint": "648c62a30439c5bfeb31dd177603d77411eeaa04211b6a7f3122b1b52fce1b69", "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": "pkg/cli/codemod_bash_anonymous.go", "duplicate_line": 13, "correlation_key": "fp|648c62a30439c5bfeb31dd177603d77411eeaa04211b6a7f3122b1b52fce1b69"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_bash_single_quoted_args.go"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102975, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ec1cad5401d0c7f201f55146ce24d6fd2e07ef1f0019137fc8d64a43195d5500", "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": "pkg/cli/codemod_agent_session.go", "duplicate_line": 35, "correlation_key": "fp|ec1cad5401d0c7f201f55146ce24d6fd2e07ef1f0019137fc8d64a43195d5500"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_assign_to_agent.go"}, "region": {"startLine": 45}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 102974, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3e40a89b781937e46dabf6014408f7f5556cdd7de2af791cd2fdd27cd8ea9c21", "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": ".github/drivers/copilot_sdk_driver_sample_ruby.rb", "duplicate_line": 31, "correlation_key": "fp|3e40a89b781937e46dabf6014408f7f5556cdd7de2af791cd2fdd27cd8ea9c21"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/drivers/copilot_sdk_driver_sample_typescript.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 102972, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e240a7e378220fc4cd0334bf8b4679b6756280d7ef79a884fc9d75ad4ec42f03", "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|e240a7e378220fc4cd0334bf8b4679b6756280d7ef79a884fc9d75ad4ec42f03"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/create_project_status_update.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 102971, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0f1baf2fdc39460d3ba6f7069a893911d7dac74f3401fa354c3a86795958647d", "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|0f1baf2fdc39460d3ba6f7069a893911d7dac74f3401fa354c3a86795958647d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/parser/workflow_update.go"}, "region": {"startLine": 1}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 102952, "scanner": "repobility-threat-engine", "fingerprint": "23cba8396f486f289e837bcc57ec0926936f72029c94b2bd15a63dd24e61f68b", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = io.Copy(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|23cba8396f486f289e837bcc57ec0926936f72029c94b2bd15a63dd24e61f68b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/deps_outdated.go"}, "region": {"startLine": 169}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 102951, "scanner": "repobility-threat-engine", "fingerprint": "85fbb98dc2f633f8579d21d2fd9c00ddf4185a3099291dd9edcd285a3ea7215d", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = os.Chdir(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|85fbb98dc2f633f8579d21d2fd9c00ddf4185a3099291dd9edcd285a3ea7215d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/deploy_command.go"}, "region": {"startLine": 54}}}]}, {"ruleId": "ERR003", "level": "note", "message": {"text": "[ERR003] Ignored Error (Go): Ignoring error return values."}, "properties": {"repobilityId": 102950, "scanner": "repobility-threat-engine", "fingerprint": "9dd0a9d11f2a581c6becdc6601cc4f7699b892eb6847812124907ddd7f83764e", "category": "error_handling", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "_ = cmd.RegisterFlagCompletionFunc(", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9dd0a9d11f2a581c6becdc6601cc4f7699b892eb6847812124907ddd7f83764e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/completions.go"}, "region": {"startLine": 129}}}]}, {"ruleId": "SEC132", "level": "note", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on its own, but a style signature of cross-language AI rewrites \u2014 the model wrote idiomatic Java/C# and then translated mechanically. When this style appears in only *some* files of a repo, it's a strong indicator of an AI-driven rewrite that needs a human review p"}, "properties": {"repobilityId": 102929, "scanner": "repobility-threat-engine", "fingerprint": "49006097b1bf2109e10d2e3934cea1da7fdd964dd2b75acbd61793435c1f2ed2", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"        run: \" + commandName + \" --version\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|49006097b1bf2109e10d2e3934cea1da7fdd964dd2b75acbd61793435c1f2ed2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/crush_engine.go"}, "region": {"startLine": 90}}}]}, {"ruleId": "SEC132", "level": "note", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on its own, but a style signature of cross-language AI rewrites \u2014 the model wrote idiomatic Java/C# and then translated mechanically. When this style appears in only *some* files of a repo, it's a strong indicator of an AI-driven rewrite that needs a human review p"}, "properties": {"repobilityId": 102928, "scanner": "repobility-threat-engine", "fingerprint": "2e4f18a01cbcf5d25121f4ef0648fac003b2d266cb33314dfc69f624ab94f39e", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"No workflow markdown files found in \"+workflowsDir+\" (workflow files must start with a frontmatter", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2e4f18a01cbcf5d25121f4ef0648fac003b2d266cb33314dfc69f624ab94f39e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/compile_file_operations.go"}, "region": {"startLine": 105}}}]}, {"ruleId": "SEC132", "level": "note", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on its own, but a style signature of cross-language AI rewrites \u2014 the model wrote idiomatic Java/C# and then translated mechanically. When this style appears in only *some* files of a repo, it's a strong indicator of an AI-driven rewrite that needs a human review p"}, "properties": {"repobilityId": 102927, "scanner": "repobility-threat-engine", "fingerprint": "c615373f2ff67262bc2b65e8456bd110f09145d9c7d9dcd9f9bf32fc8e727fe3", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"The workflow **\" +\n    workflowName +\n    \"** attempted to create a pull request but failed because", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c615373f2ff67262bc2b65e8456bd110f09145d9c7d9dcd9f9bf32fc8e727fe3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/handle_create_pr_error.cjs"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED071", "level": "none", "message": {"text": "[MINED071] Go Panic Call (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 102967, "scanner": "repobility-threat-engine", "fingerprint": "9b3140f1a544f1ef1e4ee1c8fe4f37d0e07d4cf440fa514118050d9d52cbc42e", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "go-panic-call", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348067+00:00", "triaged_in_corpus": 12, "observations_count": 29174, "ai_coder_pattern_id": 108}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|9b3140f1a544f1ef1e4ee1c8fe4f37d0e07d4cf440fa514118050d9d52cbc42e", "aggregated_count": 4}}}, {"ruleId": "MINED071", "level": "none", "message": {"text": "[MINED071] Go Panic Call: panic() crashes the process. Should return error in most cases."}, "properties": {"repobilityId": 102966, "scanner": "repobility-threat-engine", "fingerprint": "fd767f1137354577890aa197e643a0eedcbd4d1542f43f93e3a39f2195657b75", "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": "go-panic-call", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348067+00:00", "triaged_in_corpus": 12, "observations_count": 29174, "ai_coder_pattern_id": 108}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fd767f1137354577890aa197e643a0eedcbd4d1542f43f93e3a39f2195657b75"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/engine_definition_loader.go"}, "region": {"startLine": 137}}}]}, {"ruleId": "MINED071", "level": "none", "message": {"text": "[MINED071] Go Panic Call: panic() crashes the process. Should return error in most cases."}, "properties": {"repobilityId": 102965, "scanner": "repobility-threat-engine", "fingerprint": "365de01cabd5bdf7d469998411e51d86106805c7e8e7c6eac03230bb2265c6d7", "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": "go-panic-call", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348067+00:00", "triaged_in_corpus": 12, "observations_count": 29174, "ai_coder_pattern_id": 108}, "scanner": "repobility-threat-engine", "correlation_key": "fp|365de01cabd5bdf7d469998411e51d86106805c7e8e7c6eac03230bb2265c6d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/parser/virtual_fs.go"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED071", "level": "none", "message": {"text": "[MINED071] Go Panic Call: panic() crashes the process. Should return error in most cases."}, "properties": {"repobilityId": 102964, "scanner": "repobility-threat-engine", "fingerprint": "0d4e6e6c3e8f54b56c7757ac8c456fd1c289494fcba3a77dc68077ac34c5d1ef", "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": "go-panic-call", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348067+00:00", "triaged_in_corpus": 12, "observations_count": 29174, "ai_coder_pattern_id": 108}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0d4e6e6c3e8f54b56c7757ac8c456fd1c289494fcba3a77dc68077ac34c5d1ef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/linters/panic-in-library-code/panic-in-library-code.go"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC093", "level": "none", "message": {"text": "[SEC093] Go: exec.Command with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 102957, "scanner": "repobility-threat-engine", "fingerprint": "4806283fca8c3d419a655fb47fb7769c1a8e109394da33bdb090bcd2488c994b", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC093", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|4806283fca8c3d419a655fb47fb7769c1a8e109394da33bdb090bcd2488c994b"}}}, {"ruleId": "ERR003", "level": "none", "message": {"text": "[ERR003] Ignored Error (Go) (and 11 more): Same pattern found in 11 additional files. Review if needed."}, "properties": {"repobilityId": 102953, "scanner": "repobility-threat-engine", "fingerprint": "16e3d66e367e7be1d308cb3821803a8317c3aa9a3ac01b6604f4c14d3c8ab152", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 11 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 11 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR003", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|16e3d66e367e7be1d308cb3821803a8317c3aa9a3ac01b6604f4c14d3c8ab152"}}}, {"ruleId": "MINED033", "level": "none", "message": {"text": "[MINED033] Go Recover Without Log (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 102949, "scanner": "repobility-threat-engine", "fingerprint": "f943231638a4b599d4998c0378bf64ab7b993424c24de8aad1fb711c825d941a", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "go-recover-without-log", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347975+00:00", "triaged_in_corpus": 15, "observations_count": 3808, "ai_coder_pattern_id": 109}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|f943231638a4b599d4998c0378bf64ab7b993424c24de8aad1fb711c825d941a", "aggregated_count": 2}}}, {"ruleId": "MINED060", "level": "none", "message": {"text": "[MINED060] Go Context No Cancel (and 7 more): Same pattern found in 7 additional files. Review if needed."}, "properties": {"repobilityId": 102945, "scanner": "repobility-threat-engine", "fingerprint": "00a13021980564d465767180dbe7adc8b8baa186c057de90127fcc717dd8c33a", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 7 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "go-context-no-cancel", "owasp": null, "cwe_ids": ["CWE-401"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348041+00:00", "triaged_in_corpus": 12, "observations_count": 132905, "ai_coder_pattern_id": 110}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|00a13021980564d465767180dbe7adc8b8baa186c057de90127fcc717dd8c33a", "aggregated_count": 7}}}, {"ruleId": "MINED060", "level": "none", "message": {"text": "[MINED060] Go Context No Cancel: context.Background() at request handler boundary leaks goroutines."}, "properties": {"repobilityId": 102944, "scanner": "repobility-threat-engine", "fingerprint": "83a0a0f3fa46170133f135ba3b150b8cdcacc4043638eb1b1623a57545adf614", "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": "go-context-no-cancel", "owasp": null, "cwe_ids": ["CWE-401"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348041+00:00", "triaged_in_corpus": 12, "observations_count": 132905, "ai_coder_pattern_id": 110}, "scanner": "repobility-threat-engine", "correlation_key": "fp|83a0a0f3fa46170133f135ba3b150b8cdcacc4043638eb1b1623a57545adf614"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_validation.go"}, "region": {"startLine": 188}}}]}, {"ruleId": "MINED060", "level": "none", "message": {"text": "[MINED060] Go Context No Cancel: context.Background() at request handler boundary leaks goroutines."}, "properties": {"repobilityId": 102943, "scanner": "repobility-threat-engine", "fingerprint": "4400f0f1696d23faa1d9ec6bc129fe98bd3c816b4281c5a48ecffc4973e3af74", "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": "go-context-no-cancel", "owasp": null, "cwe_ids": ["CWE-401"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348041+00:00", "triaged_in_corpus": 12, "observations_count": 132905, "ai_coder_pattern_id": 110}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4400f0f1696d23faa1d9ec6bc129fe98bd3c816b4281c5a48ecffc4973e3af74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_server_command.go"}, "region": {"startLine": 171}}}]}, {"ruleId": "MINED060", "level": "none", "message": {"text": "[MINED060] Go Context No Cancel: context.Background() at request handler boundary leaks goroutines."}, "properties": {"repobilityId": 102942, "scanner": "repobility-threat-engine", "fingerprint": "c522a375bb8af27f2f26b6fd85bab8d1783d23198a2d78a924c208d3f0b48c9c", "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": "go-context-no-cancel", "owasp": null, "cwe_ids": ["CWE-401"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348041+00:00", "triaged_in_corpus": 12, "observations_count": 132905, "ai_coder_pattern_id": 110}, "scanner": "repobility-threat-engine", "correlation_key": "fp|c522a375bb8af27f2f26b6fd85bab8d1783d23198a2d78a924c208d3f0b48c9c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_workflow_run_branches.go"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "properties": {"repobilityId": 102940, "scanner": "repobility-threat-engine", "fingerprint": "6997d08d90d22ca20a81f9c1b619ae8248dabf9ede718bed9a461794226e06e8", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|6997d08d90d22ca20a81f9c1b619ae8248dabf9ede718bed9a461794226e06e8", "aggregated_count": 25}}}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 102939, "scanner": "repobility-threat-engine", "fingerprint": "009de01ab69aabbfe727dcb3c3f3555b14d2a150ca7e385cfed9596cadbf4d5f", "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|009de01ab69aabbfe727dcb3c3f3555b14d2a150ca7e385cfed9596cadbf4d5f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/compile_compiler_setup.go"}, "region": {"startLine": 166}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 102938, "scanner": "repobility-threat-engine", "fingerprint": "91cc224646a1645a853cda90ab97b8d5c66ddcc5055a45dc3fdddac0205ad180", "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|91cc224646a1645a853cda90ab97b8d5c66ddcc5055a45dc3fdddac0205ad180"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/codemod_engine_env_secrets.go"}, "region": {"startLine": 82}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 102937, "scanner": "repobility-threat-engine", "fingerprint": "418e3341e16a372bbea4a1140c76c8cc7ec9bcfa07f18aa297ef3b0e06b1f7fc", "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|418e3341e16a372bbea4a1140c76c8cc7ec9bcfa07f18aa297ef3b0e06b1f7fc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/add_interactive_secrets.go"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 33 more): Same pattern found in 33 additional files. Review if needed."}, "properties": {"repobilityId": 102936, "scanner": "repobility-threat-engine", "fingerprint": "97acb72a8991dbffc493ab5ac0ffcaca0c61f828d54c879a732c9b0119a91775", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 33 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 33 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|97acb72a8991dbffc493ab5ac0ffcaca0c61f828d54c879a732c9b0119a91775"}}}, {"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": 102935, "scanner": "repobility-threat-engine", "fingerprint": "06335f15561af22d16eea2ffe49c79592c65b98fb7ff037b4cf5beca5e7ead4e", "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": "Print(\"Checking existing repository secrets\")", "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|1|print checking existing repository secrets"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/add_interactive_secrets.go"}, "region": {"startLine": 14}}}]}, {"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": 102934, "scanner": "repobility-threat-engine", "fingerprint": "2a50fc9b1daa52a4579c05c0e6dfde00e52111120da462faf6fcf2bdbe365925", "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(\"\u274c Error: No GitHub token found\")", "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|console.error error: no github token found"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/test-live-github-api.cjs"}, "region": {"startLine": 21}}}]}, {"ruleId": "SEC132", "level": "none", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift) (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 102930, "scanner": "repobility-threat-engine", "fingerprint": "0a93f04a20a5455ea1d5583f76d6ecf7b16d6848f2b1fa2649ea0d3237642e97", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|0a93f04a20a5455ea1d5583f76d6ecf7b16d6848f2b1fa2649ea0d3237642e97"}}}, {"ruleId": "MINED013", "level": "none", "message": {"text": "[MINED013] Password In Url (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 102926, "scanner": "repobility-threat-engine", "fingerprint": "6d60c0bd92b2a11d24c39c091843361f070eab3e90af8c00ffb5953e4032e793", "category": "quality", "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": {"mined": true, "mining": {"slug": "password-in-url", "owasp": "A07:2021", "cwe_ids": ["CWE-200"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347928+00:00", "triaged_in_corpus": 20, "observations_count": 121646, "ai_coder_pattern_id": 37}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|6d60c0bd92b2a11d24c39c091843361f070eab3e90af8c00ffb5953e4032e793", "aggregated_count": 3}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 102921, "scanner": "repobility-threat-engine", "fingerprint": "8a77ffb0a8fcdda223aabe32cdaf0e5bdc6cae13db4c9684d2f2d4932a1285a8", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|8a77ffb0a8fcdda223aabe32cdaf0e5bdc6cae13db4c9684d2f2d4932a1285a8"}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "properties": {"repobilityId": 102917, "scanner": "repobility-threat-engine", "fingerprint": "a23446f62a36ca91a4d747a78db515a0e582c911caac4d75dac957d5b4cb87c8", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 20 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|a23446f62a36ca91a4d747a78db515a0e582c911caac4d75dac957d5b4cb87c8", "aggregated_count": 20}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 102916, "scanner": "repobility-threat-engine", "fingerprint": "af5da38d79b04befcfe124192806a7bcd4b528b14a1514d7d44fe2851218e82e", "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|af5da38d79b04befcfe124192806a7bcd4b528b14a1514d7d44fe2851218e82e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/convert_gateway_config_shared.cjs"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 102915, "scanner": "repobility-threat-engine", "fingerprint": "7212acb93118538ba96b34401f217a272a049e0855a5b449f390414da6cc8405", "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|7212acb93118538ba96b34401f217a272a049e0855a5b449f390414da6cc8405"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/convert_gateway_config_gemini.cjs"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 102914, "scanner": "repobility-threat-engine", "fingerprint": "e5bf9623c4bf6e4c1077c1b55c9d00f2dbcffc2c07149d71df125980059e0cad", "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|e5bf9623c4bf6e4c1077c1b55c9d00f2dbcffc2c07149d71df125980059e0cad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/convert_gateway_config_codex.cjs"}, "region": {"startLine": 65}}}]}, {"ruleId": "SEC085", "level": "none", "message": {"text": "[SEC085] JS: child_process.exec with non-literal (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 102913, "scanner": "repobility-threat-engine", "fingerprint": "f1c2c4035cdd6e0916d588faf9becbbbd5dd61a9e4a7efb0017757e4e82f5c05", "category": "quality", "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": "SEC085", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|f1c2c4035cdd6e0916d588faf9becbbbd5dd61a9e4a7efb0017757e4e82f5c05"}}}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 102907, "scanner": "repobility-threat-engine", "fingerprint": "e6f2b2e43438c0a72db7c4b00ebac5cca9defebed1ab82756cd4b4eaff0d5869", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|e6f2b2e43438c0a72db7c4b00ebac5cca9defebed1ab82756cd4b4eaff0d5869"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 35 more): Same pattern found in 35 additional files. Review if needed."}, "properties": {"repobilityId": 102903, "scanner": "repobility-threat-engine", "fingerprint": "5e2766527e20fac411476d2b862dd1b322ae22e55a50062e6a0b3444674f119d", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 35 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 35 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|5e2766527e20fac411476d2b862dd1b322ae22e55a50062e6a0b3444674f119d"}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 19 more): Same pattern found in 19 additional files. Review if needed."}, "properties": {"repobilityId": 102897, "scanner": "repobility-threat-engine", "fingerprint": "92af23c733d01113d9820522ca2cfa5d65ce72571508b92f9b7aad61dd38be34", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 19 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|92af23c733d01113d9820522ca2cfa5d65ce72571508b92f9b7aad61dd38be34", "aggregated_count": 19}}}, {"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": 102896, "scanner": "repobility-threat-engine", "fingerprint": "89d8a5e1dafc43003f1f8d10b156465b9f2d51c7ab47ee039f54007219b314c0", "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|89d8a5e1dafc43003f1f8d10b156465b9f2d51c7ab47ee039f54007219b314c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/action_setup_otlp.cjs"}, "region": {"startLine": 44}}}]}, {"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": 102895, "scanner": "repobility-threat-engine", "fingerprint": "df1bcd338f6fe75ed44e0612f127e6d7212bf385cfe8ab384e5e74d6a7744e76", "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|df1bcd338f6fe75ed44e0612f127e6d7212bf385cfe8ab384e5e74d6a7744e76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/action_conclusion_otlp.cjs"}, "region": {"startLine": 80}}}]}, {"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": 102894, "scanner": "repobility-threat-engine", "fingerprint": "e7bbd80b08fd6aed294e79ffb10135dda7b8e13a2797bb68432b4c6a931a55df", "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|e7bbd80b08fd6aed294e79ffb10135dda7b8e13a2797bb68432b4c6a931a55df"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/index.js"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED117", "level": "error", "message": {"text": "[MINED117] Workflow declares `permissions: write-all`: The job's GITHUB_TOKEN gets EVERY permission scope. If the workflow is ever compromised (mutable action, fork PR, injected step), the attacker can push to main, publish packages, alter releases. Use least-privilege by listing only the scopes the job actually needs."}, "properties": {"repobilityId": 103044, "scanner": "repobility-supply-chain", "fingerprint": "b303b102f5378a3157c583b90642b0a482e2c5096799cc661481bcdae29ecbbd", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-write-all-permissions", "owasp": "A01:2021", "cwe_ids": ["CWE-269"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|b303b102f5378a3157c583b90642b0a482e2c5096799cc661481bcdae29ecbbd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/permissions.yml"}, "region": {"startLine": 150}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `redis:7` unpinned: `container/services image: redis:7` 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": 103043, "scanner": "repobility-supply-chain", "fingerprint": "23aca9f9ab709383e057c4b759580ee17e6490a02b980d9111c3731e3c19189c", "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|23aca9f9ab709383e057c4b759580ee17e6490a02b980d9111c3731e3c19189c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-service-ports.lock.yml"}, "region": {"startLine": 413}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-go` pinned to mutable ref `@v5`: `uses: actions/setup-go@v5` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 103042, "scanner": "repobility-supply-chain", "fingerprint": "ba3414a170fe833fc7c73c28355da696720f7019fa448e5fd82614a2ba2491c4", "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|ba3414a170fe833fc7c73c28355da696720f7019fa448e5fd82614a2ba2491c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/error-message-lint.yml"}, "region": {"startLine": 25}}}]}, {"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": 103041, "scanner": "repobility-supply-chain", "fingerprint": "6bb6cdee56e7c9f3f2c695f3707c98e5fd408c91c8ec0a0fc3dbcca0d39886a9", "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|6bb6cdee56e7c9f3f2c695f3707c98e5fd408c91c8ec0a0fc3dbcca0d39886a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/error-message-lint.yml"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `azure/login` pinned to mutable ref `@v2`: `uses: azure/login@v2` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 103040, "scanner": "repobility-supply-chain", "fingerprint": "23fa83cfa25fb7259f2db04a290caf9b6f30ebd6553a94e95fd31318e56f1909", "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|23fa83cfa25fb7259f2db04a290caf9b6f30ebd6553a94e95fd31318e56f1909"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/aoai-endpoint-smoke-test.yml"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `@actions/github-script` pulled from URL/Git: `devDependencies.@actions/github-script` = `github:actions/github-script#v9.0.0` bypasses the npm registry. No integrity hash, no version locking, no registry-side scanning. If the URL or git host is compromised, every `npm install` pulls the new payload."}, "properties": {"repobilityId": 103018, "scanner": "repobility-supply-chain", "fingerprint": "6638db243280dfe33e6a0def9f70647efdc05de78ac8654a303bb36a155b73f6", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "npm-dep-git-or-tarball-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["javascript"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|6638db243280dfe33e6a0def9f70647efdc05de78ac8654a303bb36a155b73f6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `mcr.microsoft.com/devcontainers/go:1-bookworm` not pinned by digest: `FROM mcr.microsoft.com/devcontainers/go:1-bookworm` 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": 103017, "scanner": "repobility-supply-chain", "fingerprint": "08d301801444654582b320508b65eebb3a2b14f17d6be0fc5fa159063ad157d8", "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|08d301801444654582b320508b65eebb3a2b14f17d6be0fc5fa159063ad157d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".devcontainer/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `alpine:3.21` not pinned by digest: `FROM alpine:3.21` 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": 103016, "scanner": "repobility-supply-chain", "fingerprint": "8f28ec76e5e7d7106ba538d87a70f781dac744139da83cabb6a1d05694b52702", "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|8f28ec76e5e7d7106ba538d87a70f781dac744139da83cabb6a1d05694b52702"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_no_invalid_params: Test function `test_no_invalid_params` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 103015, "scanner": "repobility-ast-engine", "fingerprint": "9c60b9c87abc93da28feb425e57cce16b7ea148cef91b7b79a7e712b645118fa", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9c60b9c87abc93da28feb425e57cce16b7ea148cef91b7b79a7e712b645118fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/shared/mcp/test_drain3_server.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_structure: Test function `test_structure` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 103014, "scanner": "repobility-ast-engine", "fingerprint": "a55c53d985587ff2b4baca548a8fa91bd254173b677b9e1bea287734f8038261", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a55c53d985587ff2b4baca548a8fa91bd254173b677b9e1bea287734f8038261"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/shared/mcp/test_drain3_server.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_syntax: Test function `test_syntax` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 103013, "scanner": "repobility-ast-engine", "fingerprint": "f3b89839fc8cd9b7d542faa729df4f2cf8b6bebea660d3d75ad211523b4a1fba", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "phantom-test-coverage", "owasp": null, "cwe_ids": ["CWE-1126"], "languages": ["python"], "observations_count": 982154}, "scanner": "repobility-ast-engine", "correlation_key": "fp|f3b89839fc8cd9b7d542faa729df4f2cf8b6bebea660d3d75ad211523b4a1fba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/shared/mcp/test_drain3_server.py"}, "region": {"startLine": 11}}}]}, {"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": 102968, "scanner": "repobility-threat-engine", "fingerprint": "2ca54d89ada3184518115a920264bc1491774c2cd11ee15e78dda5dd193a13fd", "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|pkg/parser/github.go|7|gh auth token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/parser/github.go"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED016", "level": "error", "message": {"text": "[MINED016] Go Error Ignored: _, err := fn() with err not checked. Go anti-pattern."}, "properties": {"repobilityId": 102963, "scanner": "repobility-threat-engine", "fingerprint": "31f6280ddff5a8c6bf04e030b19b8613cdaca3b1c52784a3164088b7668dc4b0", "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": "go-error-ignored", "owasp": null, "cwe_ids": ["CWE-754"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347935+00:00", "triaged_in_corpus": 15, "observations_count": 83036, "ai_coder_pattern_id": 107}, "scanner": "repobility-threat-engine", "correlation_key": "fp|31f6280ddff5a8c6bf04e030b19b8613cdaca3b1c52784a3164088b7668dc4b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/pip_validation.go"}, "region": {"startLine": 186}}}]}, {"ruleId": "MINED016", "level": "error", "message": {"text": "[MINED016] Go Error Ignored: _, err := fn() with err not checked. Go anti-pattern."}, "properties": {"repobilityId": 102962, "scanner": "repobility-threat-engine", "fingerprint": "e3c6b9d5a696e8134a73808f2ece82ea93eb70fa1f15bb1e5259429bdc960081", "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": "go-error-ignored", "owasp": null, "cwe_ids": ["CWE-754"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347935+00:00", "triaged_in_corpus": 15, "observations_count": 83036, "ai_coder_pattern_id": 107}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e3c6b9d5a696e8134a73808f2ece82ea93eb70fa1f15bb1e5259429bdc960081"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/docker_validation.go"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED016", "level": "error", "message": {"text": "[MINED016] Go Error Ignored: _, err := fn() with err not checked. Go anti-pattern."}, "properties": {"repobilityId": 102961, "scanner": "repobility-threat-engine", "fingerprint": "a3d5dac87516d1593cd7fd238a5ee1c1a58338a8e2e8d9cd9ae1de9474429b2a", "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": "go-error-ignored", "owasp": null, "cwe_ids": ["CWE-754"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347935+00:00", "triaged_in_corpus": 15, "observations_count": 83036, "ai_coder_pattern_id": 107}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a3d5dac87516d1593cd7fd238a5ee1c1a58338a8e2e8d9cd9ae1de9474429b2a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/update_command.go"}, "region": {"startLine": 127}}}]}, {"ruleId": "SEC093", "level": "error", "message": {"text": "[SEC093] Go: exec.Command with non-literal: exec.Command(<var>) \u2014 variable command name allows command injection. Ported from gosec G204 (Apache-2.0)."}, "properties": {"repobilityId": 102956, "scanner": "repobility-threat-engine", "fingerprint": "de15b40a6e338ee410a53d7efdaec6b7049f02aa6de91698c1a614efdca51966", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec.CommandContext(ctx,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC093", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|de15b40a6e338ee410a53d7efdaec6b7049f02aa6de91698c1a614efdca51966"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_server.go"}, "region": {"startLine": 24}}}]}, {"ruleId": "SEC093", "level": "error", "message": {"text": "[SEC093] Go: exec.Command with non-literal: exec.Command(<var>) \u2014 variable command name allows command injection. Ported from gosec G204 (Apache-2.0)."}, "properties": {"repobilityId": 102955, "scanner": "repobility-threat-engine", "fingerprint": "e1e78145959c0db970278b4267b0811c695782f8f82bfb78402e21e02c2e9a2b", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec.CommandContext(ctx,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC093", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e1e78145959c0db970278b4267b0811c695782f8f82bfb78402e21e02c2e9a2b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/download_workflow.go"}, "region": {"startLine": 38}}}]}, {"ruleId": "SEC093", "level": "error", "message": {"text": "[SEC093] Go: exec.Command with non-literal: exec.Command(<var>) \u2014 variable command name allows command injection. Ported from gosec G204 (Apache-2.0)."}, "properties": {"repobilityId": 102954, "scanner": "repobility-threat-engine", "fingerprint": "c7185474ed331a411955a4283366f01491442b1e64440214f65c41f15586ce10", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec.CommandContext(ctx,", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC093", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c7185474ed331a411955a4283366f01491442b1e64440214f65c41f15586ce10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/docker_images.go"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED033", "level": "error", "message": {"text": "[MINED033] Go Recover Without Log: defer func() { recover() }() that silently swallows panic."}, "properties": {"repobilityId": 102948, "scanner": "repobility-threat-engine", "fingerprint": "4e719ade45bb287dd2392018b2be0cc1b106bf61cf73bf15d4bf866664f9da01", "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": "go-recover-without-log", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347975+00:00", "triaged_in_corpus": 15, "observations_count": 3808, "ai_coder_pattern_id": 109}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4e719ade45bb287dd2392018b2be0cc1b106bf61cf73bf15d4bf866664f9da01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/mcp_inspect_inspector.go"}, "region": {"startLine": 149}}}]}, {"ruleId": "MINED033", "level": "error", "message": {"text": "[MINED033] Go Recover Without Log: defer func() { recover() }() that silently swallows panic."}, "properties": {"repobilityId": 102947, "scanner": "repobility-threat-engine", "fingerprint": "7b740a6bc47bd383c7c981ce8fccb062447952b3a4856935d763c75b946ae225", "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": "go-recover-without-log", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347975+00:00", "triaged_in_corpus": 15, "observations_count": 3808, "ai_coder_pattern_id": 109}, "scanner": "repobility-threat-engine", "correlation_key": "fp|7b740a6bc47bd383c7c981ce8fccb062447952b3a4856935d763c75b946ae225"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/docker_images.go"}, "region": {"startLine": 158}}}]}, {"ruleId": "MINED033", "level": "error", "message": {"text": "[MINED033] Go Recover Without Log: defer func() { recover() }() that silently swallows panic."}, "properties": {"repobilityId": 102946, "scanner": "repobility-threat-engine", "fingerprint": "90b79dd673c781bbf4bc725e519e4246d75fac56f6bb08a634b5a4c42aacc446", "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": "go-recover-without-log", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["go"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347975+00:00", "triaged_in_corpus": 15, "observations_count": 3808, "ai_coder_pattern_id": 109}, "scanner": "repobility-threat-engine", "correlation_key": "fp|90b79dd673c781bbf4bc725e519e4246d75fac56f6bb08a634b5a4c42aacc446"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/compile_update_check.go"}, "region": {"startLine": 71}}}]}, {"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": 102933, "scanner": "repobility-threat-engine", "fingerprint": "85371f61fb71f6f23d2c6d50d4665c46422c812542d5a39b18b3373577bb7430", "category": "credential_exposure", "severity": "high", "confidence": 0.85, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Credential-bearing variable appears to be printed or logged", "evidence": {"match": "Print(\"Skipping secret validation step: permissions.copilot-requests=write enabled, using GitHub Act", "reason": "Credential-bearing variable appears to be printed or logged", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.85, "correlation_key": "secret|token|4|print skipping secret validation step: token enabled using github act"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/copilot_engine_installation.go"}, "region": {"startLine": 45}}}]}, {"ruleId": "SEC100", "level": "error", "message": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "properties": {"repobilityId": 102932, "scanner": "repobility-threat-engine", "fingerprint": "23bfd93f5554ce340899a419e69f2a04618ff765cf8a935b71cd559204cee904", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"Access-Control-Allow-Origin\", \"*\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC100", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|23bfd93f5554ce340899a419e69f2a04618ff765cf8a935b71cd559204cee904"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/mcp_http_transport.cjs"}, "region": {"startLine": 158}}}]}, {"ruleId": "SEC100", "level": "error", "message": {"text": "[SEC100] CORS permissive Access-Control-Allow-Origin: *: Permissive CORS policy (`*` origin) allows any website to make authenticated cross-origin requests. Especially dangerous when combined with `Access-Control-Allow-Credentials: true`."}, "properties": {"repobilityId": 102931, "scanner": "repobility-threat-engine", "fingerprint": "70b3f3d7a0ccaafdcf3d59f773caed0fce201ac8997c67d266fff840a3dbd26a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"Access-Control-Allow-Origin\", \"*\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC100", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|70b3f3d7a0ccaafdcf3d59f773caed0fce201ac8997c67d266fff840a3dbd26a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/mcp_http_server_runner.cjs"}, "region": {"startLine": 41}}}]}, {"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": 102922, "scanner": "repobility-threat-engine", "fingerprint": "fd1420bf92e2d353814e0a900217368425b9de6b0107cb737e19aa8757443579", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map(([workflowID, sampledRuns, p50]) => `| ${workflowID} | ${sampledRuns} | ${formatET(p50)}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fd1420bf92e2d353814e0a900217368425b9de6b0107cb737e19aa8757443579"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/create_forecast_issue.cjs"}, "region": {"startLine": 51}}}]}, {"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": 102920, "scanner": "repobility-threat-engine", "fingerprint": "9a17dc32f47ee150e27b5ae171141dd45eed0aece6583b7e0d18e8230ba77a32", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "builtinFrontmatterCache.Delete(path)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9a17dc32f47ee150e27b5ae171141dd45eed0aece6583b7e0d18e8230ba77a32"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/parser/virtual_fs.go"}, "region": {"startLine": 78}}}]}, {"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": 102919, "scanner": "repobility-threat-engine", "fingerprint": "33ed1f54997e1abca21f1ef1f3de16e23e87cc5af2a8416b07a52883ef287854", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "pending.delete(msg.id);", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|33ed1f54997e1abca21f1ef1f3de16e23e87cc5af2a8416b07a52883ef287854"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/public/wasm/compiler-loader.js"}, "region": {"startLine": 64}}}]}, {"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": 102918, "scanner": "repobility-threat-engine", "fingerprint": "9fe12fa7b8c31e97973c005a2059479a23a8dc9e63e9019c81b2d612d2910b5f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "socket.destroy();", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9fe12fa7b8c31e97973c005a2059479a23a8dc9e63e9019c81b2d612d2910b5f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/copilot_sdk_sidecar.cjs"}, "region": {"startLine": 80}}}]}, {"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": 102912, "scanner": "repobility-threat-engine", "fingerprint": "2646591b23214c43a826b602ee82fbbe7e0aaff957bb26f2773597f34487e910", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(patchContent", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2646591b23214c43a826b602ee82fbbe7e0aaff957bb26f2773597f34487e910"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/patch_path_helpers.cjs"}, "region": {"startLine": 122}}}]}, {"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": 102911, "scanner": "repobility-threat-engine", "fingerprint": "1743a477c58f4754941bba2b55043b2642afc0b575e869c4d84a3f944e51fe33", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(trimmed", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1743a477c58f4754941bba2b55043b2642afc0b575e869c4d84a3f944e51fe33"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/effective_token_limits.cjs"}, "region": {"startLine": 19}}}]}, {"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": 102910, "scanner": "repobility-threat-engine", "fingerprint": "970078f86b6f51c238dce245b807d23338b0879e3099c9b35d91c16e4233802d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(commentBody", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|970078f86b6f51c238dce245b807d23338b0879e3099c9b35d91c16e4233802d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/comment_memory_helpers.cjs"}, "region": {"startLine": 69}}}]}, {"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": 102909, "scanner": "repobility-threat-engine", "fingerprint": "92e15578fb184acd56d8ad5c970846978368304b1bfb9b779769406fe095e16f", "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(BLOCK_CONDITIONAL_REGEX", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|92e15578fb184acd56d8ad5c970846978368304b1bfb9b779769406fe095e16f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/render_template.cjs"}, "region": {"startLine": 48}}}]}, {"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": 102908, "scanner": "repobility-threat-engine", "fingerprint": "466c11f9291a48ebf058f3f40286046d1646cf5fbbf94dd8c13d092bd62729f8", "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|466c11f9291a48ebf058f3f40286046d1646cf5fbbf94dd8c13d092bd62729f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/comment_memory_helpers.cjs"}, "region": {"startLine": 67}}}]}, {"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": 102902, "scanner": "repobility-threat-engine", "fingerprint": "6b6c7eb982c398eaa0aa20ee253687540fd4ac26e401f3d1529a6860e4858404", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(e", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6b6c7eb982c398eaa0aa20ee253687540fd4ac26e401f3d1529a6860e4858404"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/close_older_entities.cjs"}, "region": {"startLine": 84}}}]}, {"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": 102901, "scanner": "repobility-threat-engine", "fingerprint": "cc0d7ba7d4f7e7955eb19a3516d0b397548d1362cd25b738c73238a9466120c3", "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|cc0d7ba7d4f7e7955eb19a3516d0b397548d1362cd25b738c73238a9466120c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/apply_safe_outputs_replay.cjs"}, "region": {"startLine": 40}}}]}, {"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": 102900, "scanner": "repobility-threat-engine", "fingerprint": "1833ec4d8ac4ee9912186c34ccfe168fb5ee1143b63c16ad605a24be5a67d1cf", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Url(c", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1833ec4d8ac4ee9912186c34ccfe168fb5ee1143b63c16ad605a24be5a67d1cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/add_workflow_run_comment.cjs"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 102890, "scanner": "repobility-threat-engine", "fingerprint": "21f357f81ff8a6a2a793e4c9d60d1dcf0aa22f5beef66c3a9c011305f542037e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|21f357f81ff8a6a2a793e4c9d60d1dcf0aa22f5beef66c3a9c011305f542037e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/workflow/pip_validation.go"}, "region": {"startLine": 163}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 102889, "scanner": "repobility-threat-engine", "fingerprint": "aa7b52a08335e098bb11cdd4b4a5da75cb6863e340db4a94581f38371d0af05e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|aa7b52a08335e098bb11cdd4b4a5da75cb6863e340db4a94581f38371d0af05e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "pkg/cli/devcontainer.go"}, "region": {"startLine": 157}}}]}, {"ruleId": "MINED012", "level": "error", "message": {"text": "[MINED012] Curl Pipe Bash: curl ... | sh / bash \u2014 runs unverified network code."}, "properties": {"repobilityId": 102888, "scanner": "repobility-threat-engine", "fingerprint": "e858a40ed6c5bfe833ea371322e5e1da6aa45694a5286d228b0e11668734cbfd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "curl-pipe-bash", "owasp": "A08:2021", "cwe_ids": ["CWE-494"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347926+00:00", "triaged_in_corpus": 15, "observations_count": 135001, "ai_coder_pattern_id": 25}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e858a40ed6c5bfe833ea371322e5e1da6aa45694a5286d228b0e11668734cbfd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".devcontainer/setup.sh"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103039, "scanner": "repobility-supply-chain", "fingerprint": "53943f6247235ae09e18060dffbd745f928dc1d99650d22cafb244771a13b4e3", "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|53943f6247235ae09e18060dffbd745f928dc1d99650d22cafb244771a13b4e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1716}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_AGENT_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_AGENT_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": 103038, "scanner": "repobility-supply-chain", "fingerprint": "6ac2bed4f8b24299f2c2cf31594c5d2d9258cd9e3dd373eaf4367d0f8f6f5411", "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|6ac2bed4f8b24299f2c2cf31594c5d2d9258cd9e3dd373eaf4367d0f8f6f5411"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1714}}}]}, {"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": 103037, "scanner": "repobility-supply-chain", "fingerprint": "f8587f2c830a1c46b4b90fc14edbf44797072e7a9c8ae4f0a46919c7cc9c9d29", "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|f8587f2c830a1c46b4b90fc14edbf44797072e7a9c8ae4f0a46919c7cc9c9d29"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1499}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103036, "scanner": "repobility-supply-chain", "fingerprint": "d48eaa86e0704a17a6d6e57a336a9148fc54f4110a26db99ac5de4931c205f39", "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|d48eaa86e0704a17a6d6e57a336a9148fc54f4110a26db99ac5de4931c205f39"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1320}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103035, "scanner": "repobility-supply-chain", "fingerprint": "c307a96259fa37deb4b9a0e16318e890b689c0ace31bf3e4cad0c3ffa891a707", "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|c307a96259fa37deb4b9a0e16318e890b689c0ace31bf3e4cad0c3ffa891a707"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1298}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103034, "scanner": "repobility-supply-chain", "fingerprint": "5eae5c3c23fba74f4adbf3beaccad1b541358c2162f02020ebdd760d50b6bb64", "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|5eae5c3c23fba74f4adbf3beaccad1b541358c2162f02020ebdd760d50b6bb64"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1259}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103033, "scanner": "repobility-supply-chain", "fingerprint": "66947596341108b3bda831d2d4f96a95abccc226c3f1579c0126927dbabd4ab7", "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|66947596341108b3bda831d2d4f96a95abccc226c3f1579c0126927dbabd4ab7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1244}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103032, "scanner": "repobility-supply-chain", "fingerprint": "f76d5f263489ce5919cecae450555a47d2dc184e573b61681ec30c95bd0fbb29", "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|f76d5f263489ce5919cecae450555a47d2dc184e573b61681ec30c95bd0fbb29"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1229}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103031, "scanner": "repobility-supply-chain", "fingerprint": "009be2a08acbffaefc631beed65da098b4b51a01251b45060aadf8939a88b378", "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|009be2a08acbffaefc631beed65da098b4b51a01251b45060aadf8939a88b378"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1212}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_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": 103030, "scanner": "repobility-supply-chain", "fingerprint": "060186baa57a11921a704d3e186a0a653d6fe1f1296f05da99c0ad48304cb9b0", "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|060186baa57a11921a704d3e186a0a653d6fe1f1296f05da99c0ad48304cb9b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1013}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_MCP_SERVER_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_MCP_SERVER_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": 103029, "scanner": "repobility-supply-chain", "fingerprint": "45bc70175160c40e0e28dc56ca4f5c80128a8d1cb8db151c0727acb33fea620d", "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|45bc70175160c40e0e28dc56ca4f5c80128a8d1cb8db151c0727acb33fea620d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1012}}}]}, {"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": 103028, "scanner": "repobility-supply-chain", "fingerprint": "d6ca450c71130172b71db3366d5580511623b0151282b595f0e0b80ee30723e3", "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|d6ca450c71130172b71db3366d5580511623b0151282b595f0e0b80ee30723e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 1011}}}]}, {"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": 103027, "scanner": "repobility-supply-chain", "fingerprint": "5d73100a8e3ebf72661a22421eb0cbc7a3304062335d67477c36d7a20e77ce45", "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|5d73100a8e3ebf72661a22421eb0cbc7a3304062335d67477c36d7a20e77ce45"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 954}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_MCP_SERVER_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_MCP_SERVER_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": 103026, "scanner": "repobility-supply-chain", "fingerprint": "5a544ce85076ea3fa87316bf4f7bf0e7d116a769a734c8e22ee1c907e974d321", "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|5a544ce85076ea3fa87316bf4f7bf0e7d116a769a734c8e22ee1c907e974d321"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 747}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_MCP_SERVER_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_MCP_SERVER_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": 103025, "scanner": "repobility-supply-chain", "fingerprint": "87dbca3bdb652f1d77c7329a3b162f95cc1c72de3dcf4215f58dacb81de5e2a2", "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|87dbca3bdb652f1d77c7329a3b162f95cc1c72de3dcf4215f58dacb81de5e2a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 507}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_GITHUB_MCP_SERVER_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_GITHUB_MCP_SERVER_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": 103024, "scanner": "repobility-supply-chain", "fingerprint": "faed1686b9da49559588e0afcb52396696008edb7c833189f15b6d8c1a2a0222", "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|faed1686b9da49559588e0afcb52396696008edb7c833189f15b6d8c1a2a0222"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 505}}}]}, {"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": 103023, "scanner": "repobility-supply-chain", "fingerprint": "5b2d5732bd3abd6d0d49602ba910d3dccf146cfca22b6a2a96cf7d8a9b51dd56", "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|5b2d5732bd3abd6d0d49602ba910d3dccf146cfca22b6a2a96cf7d8a9b51dd56"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 204}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_OTEL_GRAFANA_AUTHORIZATION` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_OTEL_GRAFANA_AUTHORIZATION }` 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": 103022, "scanner": "repobility-supply-chain", "fingerprint": "d102d579e93a0e8bad6d7c722610f92e1079b1a40c40b79b0655c03829540a36", "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|d102d579e93a0e8bad6d7c722610f92e1079b1a40c40b79b0655c03829540a36"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 86}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_OTEL_GRAFANA_AUTHORIZATION` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_OTEL_GRAFANA_AUTHORIZATION }` 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": 103021, "scanner": "repobility-supply-chain", "fingerprint": "979fe43bf2c2cdc3e479b7ed62d92fcfe9154eccc5add5b670ed72a7c89d45f7", "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|979fe43bf2c2cdc3e479b7ed62d92fcfe9154eccc5add5b670ed72a7c89d45f7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_OTEL_SENTRY_AUTHORIZATION` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_OTEL_SENTRY_AUTHORIZATION }` 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": 103020, "scanner": "repobility-supply-chain", "fingerprint": "a3de9c89a01b1993239aeb49f7b420bf9b4cdac10cf76d92bacf6dd7035e80cf", "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|a3de9c89a01b1993239aeb49f7b420bf9b4cdac10cf76d92bacf6dd7035e80cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.GH_AW_OTEL_SENTRY_ENDPOINT` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.GH_AW_OTEL_SENTRY_ENDPOINT }` 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": 103019, "scanner": "repobility-supply-chain", "fingerprint": "1ccaf3d79d33f6d34cf165fec10765954b1679bff1bf71906b1ae86613b470a2", "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|1ccaf3d79d33f6d34cf165fec10765954b1679bff1bf71906b1ae86613b470a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/smoke-agent-public-approved.lock.yml"}, "region": {"startLine": 81}}}]}, {"ruleId": "MINED035", "level": "error", "message": {"text": "[MINED035] Js New Function: new Function(...) compiles strings to functions."}, "properties": {"repobilityId": 102969, "scanner": "repobility-threat-engine", "fingerprint": "461c210e1247696b495b28d47af652b88fb40d826a825016bcd61604be46bffd", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-new-function", "owasp": null, "cwe_ids": ["CWE-95"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347980+00:00", "triaged_in_corpus": 20, "observations_count": 2547, "ai_coder_pattern_id": 104}, "scanner": "repobility-threat-engine", "correlation_key": "fp|461c210e1247696b495b28d47af652b88fb40d826a825016bcd61604be46bffd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/test-wasm-golden.mjs"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED013", "level": "error", "message": {"text": "[MINED013] Password In Url: https://user:password@host \u2014 leaks creds via logs, referrer, error messages."}, "properties": {"repobilityId": 102925, "scanner": "repobility-threat-engine", "fingerprint": "8821f788e591f9329b65c04915f3d05e6625fd0d4811b480401a9286940c1745", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "password-in-url", "owasp": "A07:2021", "cwe_ids": ["CWE-200"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347928+00:00", "triaged_in_corpus": 20, "observations_count": 121646, "ai_coder_pattern_id": 37}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8821f788e591f9329b65c04915f3d05e6625fd0d4811b480401a9286940c1745"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/run_operation_update_upgrade.cjs"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED013", "level": "error", "message": {"text": "[MINED013] Password In Url: https://user:password@host \u2014 leaks creds via logs, referrer, error messages."}, "properties": {"repobilityId": 102924, "scanner": "repobility-threat-engine", "fingerprint": "0fdb491271bb601dd39e8e594d508039721d7c5767ec2b599c645c9fdcd62a84", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "password-in-url", "owasp": "A07:2021", "cwe_ids": ["CWE-200"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347928+00:00", "triaged_in_corpus": 20, "observations_count": 121646, "ai_coder_pattern_id": 37}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0fdb491271bb601dd39e8e594d508039721d7c5767ec2b599c645c9fdcd62a84"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/push_experiment_state.cjs"}, "region": {"startLine": 115}}}]}, {"ruleId": "MINED013", "level": "error", "message": {"text": "[MINED013] Password In Url: https://user:password@host \u2014 leaks creds via logs, referrer, error messages."}, "properties": {"repobilityId": 102923, "scanner": "repobility-threat-engine", "fingerprint": "6f7e108962f6b96057774ca7b9855eee327c66012346c3ca8f49c2082ceb4b37", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "password-in-url", "owasp": "A07:2021", "cwe_ids": ["CWE-200"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347928+00:00", "triaged_in_corpus": 20, "observations_count": 121646, "ai_coder_pattern_id": 37}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6f7e108962f6b96057774ca7b9855eee327c66012346c3ca8f49c2082ceb4b37"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/extra_empty_commit.cjs"}, "region": {"startLine": 149}}}]}, {"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": 102893, "scanner": "repobility-threat-engine", "fingerprint": "7d600bb2c74d91a3becb7f8fe87144834bf576c68f55702e85ed49c4f538c032", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(path", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7d600bb2c74d91a3becb7f8fe87144834bf576c68f55702e85ed49c4f538c032"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/post.js"}, "region": {"startLine": 24}}}]}, {"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": 102892, "scanner": "repobility-threat-engine", "fingerprint": "b6a2243371a2be787f11c643b14c875e9e983df7bb1c04bbee7fd2fba9ae3e8d", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(path", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b6a2243371a2be787f11c643b14c875e9e983df7bb1c04bbee7fd2fba9ae3e8d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/js/otlp.cjs"}, "region": {"startLine": 32}}}]}, {"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": 102891, "scanner": "repobility-threat-engine", "fingerprint": "8ca5d24adc3630e9fdb1fb344b2b831f6485191c9654fad1d8b7ace157425573", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "require(path", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC084", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|8ca5d24adc3630e9fdb1fb344b2b831f6485191c9654fad1d8b7ace157425573"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "actions/setup/index.js"}, "region": {"startLine": 59}}}]}]}]}