{"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": "MINED111", "name": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or ", "shortDescription": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "fullDescription": {"text": "Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "DKR003", "name": "Compose service `spiffworkflow-backend` image uses the latest tag", "shortDescription": {"text": "Compose service `spiffworkflow-backend` image uses the latest tag"}, "fullDescription": {"text": "Pin to a maintained version tag or digest and update it deliberately through dependency automation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.94, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Compose service `match-volume-ownership` image has no explicit tag", "shortDescription": {"text": "Compose service `match-volume-ownership` image has no explicit tag"}, "fullDescription": {"text": "Pin the image to a supported version tag or digest, for example python:3.13-slim or image@sha256:..."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR017", "name": "Dockerfile installs dependencies after copying the full source tree", "shortDescription": {"text": "Dockerfile installs dependencies after copying the full source tree"}, "fullDescription": {"text": "Copy dependency manifests first, install dependencies in a cached layer, then copy the rest of the source tree."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "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": "SEC046", "name": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supp", "shortDescription": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromis"}, "fullDescription": {"text": "Validate the URL is same-origin or on an explicit allowlist before assignment:\n  const u = new URL(serverUrl, location.href);\n  if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return;\n  location.assign(u);\nEven better: have the server return a path (/checkout/done) instead of a full URL, and only allow same-origin navigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "SEC015", "name": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC127", "name": "[SEC127] AI agent stub \u2014 TODO: implement / pass placeholder body: Function body left as TODO/pass/raise NotImplementedEr", "shortDescription": {"text": "[SEC127] AI agent stub \u2014 TODO: implement / pass placeholder body: Function body left as TODO/pass/raise NotImplementedError after an AI scaffolding pass. The route appears to exist (and may even pass shallow CI), but invoking it crashes or "}, "fullDescription": {"text": "Either implement the body, or fail closed at module-load time so the deploy can't ship a half-built route. A CI gate that fails build on `raise NotImplementedError` in non-abstract code catches this cleanly."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `cov_tasks` has cognitive complexity 20 (SonarSource scale). Cognitive com", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `cov_tasks` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 20."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "DKC017", "name": "Database password is wired through an environment variable placeholder", "shortDescription": {"text": "Database password is wired through an environment variable placeholder"}, "fullDescription": {"text": "Prefer Compose secrets or your platform secret manager with *_FILE variables where the image supports them. Rotate only if a real value was committed."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.58, "cwe": "", "owasp": ""}}, {"id": "DKR011", "name": "Dockerfile installs recommended OS packages", "shortDescription": {"text": "Dockerfile installs recommended OS packages"}, "fullDescription": {"text": "Add `--no-install-recommends` and explicitly list only packages the image needs."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR010", "name": "Dockerfile leaves apt package indexes in the image layer", "shortDescription": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "fullDescription": {"text": "End the apt install layer with `rm -rf /var/lib/apt/lists/*`."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKR012", "name": "Dockerfile keeps pip download cache", "shortDescription": {"text": "Dockerfile keeps pip download cache"}, "fullDescription": {"text": "Use `pip install --no-cache-dir ...` in container builds."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "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": "AIC009", "name": "Multiple AI-agent scaffold marker files are present", "shortDescription": {"text": "Multiple AI-agent scaffold marker files are present"}, "fullDescription": {"text": "Keep one current agent instruction file if it helps contributors, remove stale progress/completion markers, and make sure the README, tests, and CI describe the real supported behavior."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order.", "shortDescription": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 11 more): Same pattern found in 11 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 11 more): Same pattern found in 11 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": "MINED054", "name": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed.", "shortDescription": {"text": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 79 more): Same pattern found in 79 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 79 more): Same pattern found in 79 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED076", "name": "[MINED076] Catch And Reraise Noop: except X: raise X \u2014 adds no value, hides traceback if AI accidentally changes message", "shortDescription": {"text": "[MINED076] Catch And Reraise Noop: except X: raise X \u2014 adds no value, hides traceback if AI accidentally changes message."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED067", "name": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever.", "shortDescription": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-400 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC078", "name": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsiv", "shortDescription": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a re"}, "fullDescription": {"text": "Add `timeout=10` (or appropriate value) to every requests call."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.1, "cwe": "", "owasp": ""}}, {"id": "MINED062", "name": "[MINED062] Python Dataclass No Fields (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED062] Python Dataclass No Fields (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 10 more): Same pattern found in 10 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 10 more): Same pattern found in 10 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": "MINED065", "name": "[MINED065] Cors Wildcard: Access-Control-Allow-Origin: * exposes the API to any browser origin. Acceptable for public re", "shortDescription": {"text": "[MINED065] Cors Wildcard: Access-Control-Allow-Origin: * exposes the API to any browser origin. Acceptable for public read-only endpoints; dangerous when paired with credentials or write endpoints."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-942,CWE-346 / A05:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 13 more): Same pattern found in 13 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 13 more): Same pattern found in 13 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": "MINED072", "name": "[MINED072] Python Pass Only Class (and 20 more): Same pattern found in 20 additional files. Review if needed.", "shortDescription": {"text": "[MINED072] Python Pass Only Class (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function (and 25 more): Same pattern found in 25 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 23 more): Same pattern found in 23 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 23 more): Same pattern found in 23 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 3 more): Same pattern found in 3 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": "MINED115", "name": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/uplo", "shortDescription": {"text": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/upload-sarif@v4.35.1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the t"}, "fullDescription": {"text": "Replace with: `uses: github/codeql-action/upload-sarif@<40-char-sha>  # v4.35.1` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` resolves the tag at build ", "shortDescription": {"text": "[MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production i"}, "fullDescription": {"text": "Replace with: `FROM nginx:1.29-alpine@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED131", "name": "[MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-prettier` pinned to mutable rev `v2.4.1`: `.pre-commit", "shortDescription": {"text": "[MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-prettier` pinned to mutable rev `v2.4.1`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/mirrors-prettier` at `rev: v2.4.1`. If `{rev}` is a branch or ve"}, "fullDescription": {"text": "Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED122", "name": "[MINED122] package.json dep `bpmn-js-spiffworkflow` pulled from URL/Git: `dependencies.bpmn-js-spiffworkflow` = `github:", "shortDescription": {"text": "[MINED122] package.json dep `bpmn-js-spiffworkflow` pulled from URL/Git: `dependencies.bpmn-js-spiffworkflow` = `github:sartography/bpmn-js-spiffworkflow#fix-correlation-key-churn` bypasses the npm registry. No integrity hash, no version lo"}, "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": "MINED106", "name": "[MINED106] Phantom test coverage: test_save_raises_conflict_when_supplied_message_id_is_inserted_concurrently: Test func", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_save_raises_conflict_when_supplied_message_id_is_inserted_concurrently: Test function `test_save_raises_conflict_when_supplied_message_id_is_inserted_concurrently` runs code but contains no assert / ex"}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.get_all_children_of_spiff_task` used but never assigned in __init__: Method `get_all_children_of_spiff_", "shortDescription": {"text": "[MINED108] `self.get_all_children_of_spiff_task` used but never assigned in __init__: Method `get_all_children_of_spiff_task` of class `BaseTest` reads `self.get_all_children_of_spiff_task`, but no assignment to it exists in __init__ (and n"}, "fullDescription": {"text": "Initialize `self.get_all_children_of_spiff_task = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "DKC011", "name": "Database service publishes a host port", "shortDescription": {"text": "Database service publishes a host port"}, "fullDescription": {"text": "Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.84, "cwe": "", "owasp": ""}}, {"id": "DKR014", "name": "Dockerfile copies the entire context without .dockerignore", "shortDescription": {"text": "Dockerfile copies the entire context without .dockerignore"}, "fullDescription": {"text": "Create .dockerignore before using broad context copies, or copy only the required files and directories."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "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": "SEC027", "name": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not config", "shortDescription": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "fullDescription": {"text": "Pass `noent: false` to libxmljs. Avoid xml2js or pass explicit secure config. Prefer parsers that don't expand external entities at all."}, "properties": {"scanner": "repobility-threat-engine", "category": "xxe", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC030", "name": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without vali", "shortDescription": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but"}, "fullDescription": {"text": "Validate the redirect URL against an allowlist of safe destinations:\n  # Django:\n  from django.utils.http import url_has_allowed_host_and_scheme\n  if not url_has_allowed_host_and_scheme(url, allowed_hosts={request.get_host()}):\n      url = '/'  # safe default\nOr restrict to relative paths only: `if not url.startswith('/'): abort(400)`. Never accept external schemes without verification."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums).", "shortDescription": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.COMMON_PYPI_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.COMMON_PYPI_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.COMMON_PYPI_KEY }` lets a PR from any fork exfiltrate the se"}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "[MINED107] Missing import: `select` used but not imported: The file uses `select.something(...)` but never imports `sele", "shortDescription": {"text": "[MINED107] Missing import: `select` used but not imported: The file uses `select.something(...)` but never imports `select`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import select` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN001", "name": "Token handoff appears to use a callback URL or fragment", "shortDescription": {"text": "Token handoff appears to use a callback URL or fragment"}, "fullDescription": {"text": "Use a server-side one-time authorization code tied to a registered callback allowlist. Do not append access tokens to callback URLs or fragments."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "critical", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKC007", "name": "Compose service contains a literal secret environment value", "shortDescription": {"text": "Compose service contains a literal secret environment value"}, "fullDescription": {"text": "Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "critical", "confidence": 0.96, "cwe": "", "owasp": ""}}, {"id": "MINED019", "name": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates.", "shortDescription": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-94 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC003", "name": "[SEC003] Hardcoded Secret: Hardcoded secret key found in source code.", "shortDescription": {"text": "[SEC003] Hardcoded Secret: Hardcoded secret key found in source code."}, "fullDescription": {"text": "Never commit secrets. Use .env files with .gitignore."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1210"}, "properties": {"repository": "sartography/spiff-arena", "repoUrl": "https://github.com/sartography/spiff-arena", "branch": "main"}, "results": [{"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122134, "scanner": "repobility-ast-engine", "fingerprint": "2d2bc91ba4de84d976585d2ca8ae1a986598e5d1832e503176122111041f22e0", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2d2bc91ba4de84d976585d2ca8ae1a986598e5d1832e503176122111041f22e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/runner.py"}, "region": {"startLine": 242}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122132, "scanner": "repobility-ast-engine", "fingerprint": "0a8a562cfa2829a01049eca217b61ce2a475aa6f31e72e9a740c6924097e6865", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0a8a562cfa2829a01049eca217b61ce2a475aa6f31e72e9a740c6924097e6865"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/exceptions/api_error.py"}, "region": {"startLine": 237}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122130, "scanner": "repobility-ast-engine", "fingerprint": "1f8f1ed2252f827783c900591fcb9af1dd821427f409239a803f004c9646b3ff", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1f8f1ed2252f827783c900591fcb9af1dd821427f409239a803f004c9646b3ff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/utils/api_logging.py"}, "region": {"startLine": 95}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122129, "scanner": "repobility-ast-engine", "fingerprint": "cf3f43ddf8538e0a33dfde58b3f6de4e1df8b2e211d4a81f39fa1946ff510bd6", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|cf3f43ddf8538e0a33dfde58b3f6de4e1df8b2e211d4a81f39fa1946ff510bd6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/tasks_controller.py"}, "region": {"startLine": 756}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122128, "scanner": "repobility-ast-engine", "fingerprint": "c251b6817d874aec4b97c517ba4a6f377497933d6c66b2d3cfaed2cfbd9815f3", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c251b6817d874aec4b97c517ba4a6f377497933d6c66b2d3cfaed2cfbd9815f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_service.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122127, "scanner": "repobility-ast-engine", "fingerprint": "ba4c23ebe825185f260d4ad5c4725eb34b4abbbabb27ee3941475d3ee29ae379", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ba4c23ebe825185f260d4ad5c4725eb34b4abbbabb27ee3941475d3ee29ae379"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/data_setup_service.py"}, "region": {"startLine": 305}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122126, "scanner": "repobility-ast-engine", "fingerprint": "e3cefee1f7fd8acb07ef4d4eb7b26c02e372f7b40aded87f03f635cae533c5cc", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|e3cefee1f7fd8acb07ef4d4eb7b26c02e372f7b40aded87f03f635cae533c5cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/data_setup_service.py"}, "region": {"startLine": 328}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122125, "scanner": "repobility-ast-engine", "fingerprint": "72fd14d920ea55aac8d72ad9474ee399744bd4b38dd888f8cec10b78d979ca57", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|72fd14d920ea55aac8d72ad9474ee399744bd4b38dd888f8cec10b78d979ca57"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/data_setup_service.py"}, "region": {"startLine": 312}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122124, "scanner": "repobility-ast-engine", "fingerprint": "779a701a7645d1deae07b0a31935a84f08ef2f585aa46245f49e7287f11e616a", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|779a701a7645d1deae07b0a31935a84f08ef2f585aa46245f49e7287f11e616a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/data_setup_service.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122123, "scanner": "repobility-ast-engine", "fingerprint": "aab8c762d1f6686be5e31a2f5c3b59ad140e6b3045e58fe660cca66ada716cd1", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|aab8c762d1f6686be5e31a2f5c3b59ad140e6b3045e58fe660cca66ada716cd1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/script_unit_test_runner.py"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122122, "scanner": "repobility-ast-engine", "fingerprint": "81b3276d5dd287f9a7230aa6ac7588101686c08f1aae46d4307ab284c3b8da9b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|81b3276d5dd287f9a7230aa6ac7588101686c08f1aae46d4307ab284c3b8da9b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_model_test_runner_service.py"}, "region": {"startLine": 427}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122121, "scanner": "repobility-ast-engine", "fingerprint": "b4339939f61da7506ec3978f386cad3ac5a2559a75dfc81378e3f04b0651d4c6", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b4339939f61da7506ec3978f386cad3ac5a2559a75dfc81378e3f04b0651d4c6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/workflow_execution_service.py"}, "region": {"startLine": 316}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122120, "scanner": "repobility-ast-engine", "fingerprint": "56a39fc39af2f650a28b9dcf6bc9b1f53cffaf3442af6f7bd49047e42e8b650c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|56a39fc39af2f650a28b9dcf6bc9b1f53cffaf3442af6f7bd49047e42e8b650c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122119, "scanner": "repobility-ast-engine", "fingerprint": "65737afb04f676446ddd7f5e1c573db6c3bd7b7939f58fbe50506c6326d2e3a8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|65737afb04f676446ddd7f5e1c573db6c3bd7b7939f58fbe50506c6326d2e3a8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122118, "scanner": "repobility-ast-engine", "fingerprint": "abf46798522d94b4ade12388a85a1c7bb3467010f062fc751aa846575fbe5b29", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|abf46798522d94b4ade12388a85a1c7bb3467010f062fc751aa846575fbe5b29"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py"}, "region": {"startLine": 1614}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122117, "scanner": "repobility-ast-engine", "fingerprint": "ebbf7da47cb5d828562529a2b88a8bdb5001c53c8e8a6c618501464725d5cef8", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|ebbf7da47cb5d828562529a2b88a8bdb5001c53c8e8a6c618501464725d5cef8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py"}, "region": {"startLine": 1474}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122116, "scanner": "repobility-ast-engine", "fingerprint": "b091103ab25100e4adb4906aef8085643e7ba080eb290594a9ea1df977996932", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b091103ab25100e4adb4906aef8085643e7ba080eb290594a9ea1df977996932"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py"}, "region": {"startLine": 1465}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122115, "scanner": "repobility-ast-engine", "fingerprint": "1b5ba9b5ca0338e54521b47a5d2feb90f3c07706574f090191a048bdcfcda8b3", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1b5ba9b5ca0338e54521b47a5d2feb90f3c07706574f090191a048bdcfcda8b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/process_instance_processor.py"}, "region": {"startLine": 364}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122114, "scanner": "repobility-ast-engine", "fingerprint": "45f3cc109cc382d8586de1ede5c9b5d36178ef76ff311195b9afc6c8e0649695", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|45f3cc109cc382d8586de1ede5c9b5d36178ef76ff311195b9afc6c8e0649695"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/configuration_service.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122113, "scanner": "repobility-ast-engine", "fingerprint": "22a41c2a627014d4fc7963e4b97aa2e4cf29db5da28301c23137c0855854fc00", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|22a41c2a627014d4fc7963e4b97aa2e4cf29db5da28301c23137c0855854fc00"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/load_tests/message_start_double_delivery_race.py"}, "region": {"startLine": 395}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122112, "scanner": "repobility-ast-engine", "fingerprint": "99ba048ab5ad6eecfe854c1abc7adfdd67d642276f419f1fa6febe52d3bf8366", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|99ba048ab5ad6eecfe854c1abc7adfdd67d642276f419f1fa6febe52d3bf8366"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/load_tests/message_start_double_delivery_race.py"}, "region": {"startLine": 357}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122111, "scanner": "repobility-ast-engine", "fingerprint": "d54139259723a432d5581396ef49430e3d81be04f8381f3a20ba2af7e75bda4b", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|d54139259723a432d5581396ef49430e3d81be04f8381f3a20ba2af7e75bda4b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/load_tests/concurrent_message_starts.py"}, "region": {"startLine": 285}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122110, "scanner": "repobility-ast-engine", "fingerprint": "84052565f96ab80aa4477a4b85ab2460cbbacd5ab96aa2934e15e241dbaeb979", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|84052565f96ab80aa4477a4b85ab2460cbbacd5ab96aa2934e15e241dbaeb979"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/openapi/dump_api_logs.py"}, "region": {"startLine": 268}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122109, "scanner": "repobility-ast-engine", "fingerprint": "1330d8022b5678af9e52b9d7896b22aed893d77aab2646ef277f319674a20d97", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1330d8022b5678af9e52b9d7896b22aed893d77aab2646ef277f319674a20d97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/openapi/extract_openapi_operation_info.py"}, "region": {"startLine": 366}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 122058, "scanner": "repobility-ast-engine", "fingerprint": "8d29f4174a079b2d1033708bc42c63d9b100dd64c755a51d7de15954e0bfb50f", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "bare-except-without-pass", "owasp": null, "cwe_ids": [], "languages": ["python"], "observations_count": 21610}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8d29f4174a079b2d1033708bc42c63d9b100dd64c755a51d7de15954e0bfb50f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/bin/delete_user_destructively.py"}, "region": {"startLine": 146}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 122057, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `spiffworkflow-backend` image uses the latest tag"}, "properties": {"repobilityId": 122041, "scanner": "repobility-docker", "fingerprint": "fa259bceec7fdce39d7871e14bc7d7a73907a3443531144d195de225bc991a2c", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/sartography/spiffworkflow-backend:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|fa259bceec7fdce39d7871e14bc7d7a73907a3443531144d195de225bc991a2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKR002", "level": "warning", "message": {"text": "Compose service `match-volume-ownership` image has no explicit tag"}, "properties": {"repobilityId": 122040, "scanner": "repobility-docker", "fingerprint": "2b63f2aaef3aced48279829327b23e20ca30365fe0aac6d498b34873f9987d03", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image reference has no tag or digest.", "evidence": {"image": "alpine", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|2b63f2aaef3aced48279829327b23e20ca30365fe0aac6d498b34873f9987d03"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 17}}}]}, {"ruleId": "DKR003", "level": "warning", "message": {"text": "Compose service `spiffworkflow-frontend` image uses the latest tag"}, "properties": {"repobilityId": 122037, "scanner": "repobility-docker", "fingerprint": "4ab20cf02dbb07a2e6f59a054e078b5eec1aafc5e4836c1ef7bda1603c7f02a2", "category": "docker", "severity": "medium", "confidence": 0.94, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Image tag is latest.", "evidence": {"image": "ghcr.io/sartography/spiffworkflow-frontend:latest", "rule_id": "DKR003", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|4ab20cf02dbb07a2e6f59a054e078b5eec1aafc5e4836c1ef7bda1603c7f02a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 122034, "scanner": "repobility-docker", "fingerprint": "0ffe82ac709862c33f7bb7b219bb9546ada9d2ad20baecf15e20956b6ba203f8", "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": "nginx:1.29-alpine", "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|0ffe82ac709862c33f7bb7b219bb9546ada9d2ad20baecf15e20956b6ba203f8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/Dockerfile"}, "region": {"startLine": 45}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 122031, "scanner": "repobility-docker", "fingerprint": "c2712e9fe33a765cf9ea56d88738f8e97131ca2cec5b8695104e32074e9015c9", "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": "quay.io/keycloak/keycloak:22.0.4", "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|c2712e9fe33a765cf9ea56d88738f8e97131ca2cec5b8695104e32074e9015c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/keycloak/Dockerfile"}, "region": {"startLine": 16}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 122030, "scanner": "repobility-docker", "fingerprint": "a11240db52716c4057aa460d94245374022c9bb8a81bf84d2144053d1bf430a5", "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": "deployment", "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|a11240db52716c4057aa460d94245374022c9bb8a81bf84d2144053d1bf430a5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 57}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 122022, "scanner": "repobility-docker", "fingerprint": "0e8aa8829531c68ae6bd04216ec34e6540901d86fb4f4bc18df390f80cc01385", "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": "deployment", "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|0e8aa8829531c68ae6bd04216ec34e6540901d86fb4f4bc18df390f80cc01385"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 51}}}]}, {"ruleId": "DKR017", "level": "warning", "message": {"text": "Dockerfile installs dependencies after copying the full source tree"}, "properties": {"repobilityId": 122021, "scanner": "repobility-docker", "fingerprint": "c147e1715ca8fa7f99f38e38b6302c472dee47f9b5e660ceeee6677a8747d10f", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy at line 44 appears before dependency installation.", "evidence": {"rule_id": "DKR017", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "broad_copy_line": 44, "correlation_key": "fp|c147e1715ca8fa7f99f38e38b6302c472dee47f9b5e660ceeee6677a8747d10f", "dependency_install_line": 45}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 45}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 122015, "scanner": "repobility-docker", "fingerprint": "4783083a2023e9ad2cbe067d41ba9f9826985b233eb3a2b7182b73e28d62f6e0", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "python:3.13.13-slim-trixie", "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|4783083a2023e9ad2cbe067d41ba9f9826985b233eb3a2b7182b73e28d62f6e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR007", "level": "warning", "message": {"text": "Docker build context has no .dockerignore"}, "properties": {"repobilityId": 122014, "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": 122013, "scanner": "repobility-docker", "fingerprint": "1fa203a386fd28b496926eff28955de919a3102719cdb74355fecbd6e52e55d6", "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": "nginx:1.29-alpine", "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|1fa203a386fd28b496926eff28955de919a3102719cdb74355fecbd6e52e55d6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/aggregate/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 121994, "scanner": "repobility-threat-engine", "fingerprint": "1cc133fb885fe0038c4d26d355c4123ffa4d41422d625e997595965943fc7789", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "location.href = logoutRedirectUrl", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1cc133fb885fe0038c4d26d355c4123ffa4d41422d625e997595965943fc7789"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/services/UserService.ts"}, "region": {"startLine": 112}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 121992, "scanner": "repobility-threat-engine", "fingerprint": "f1f8a03343bafba1c51d7381251b51628e44b5024074dc831df5ed2e6d0ec87b", "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 (_rangeError) {}", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f1f8a03343bafba1c51d7381251b51628e44b5024074dc831df5ed2e6d0ec87b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/rjsf/custom_widgets/DateRangePicker/DateRangePickerWidget.tsx"}, "region": {"startLine": 78}}}]}, {"ruleId": "SEC015", "level": "warning", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 121967, "scanner": "repobility-threat-engine", "fingerprint": "c23d3c0645ce13e733b55e2bf7dfa2925f288959d31220ba63ed3d81afdc9ccd", "category": "crypto", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "evidence": {"match": "def generate_api_key", "reason": "Security-sensitive keyword found nearby \u2014 weak PRNG is risky here", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|crypto|token|43|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/models/service_account.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "SEC127", "level": "warning", "message": {"text": "[SEC127] AI agent stub \u2014 TODO: implement / pass placeholder body: Function body left as TODO/pass/raise NotImplementedError after an AI scaffolding pass. The route appears to exist (and may even pass shallow CI), but invoking it crashes or silently no-ops. AI agents consistently emit these when their context window runs out mid-implementation. Production callers hitting these stubs is a classic AI-generated-incident."}, "properties": {"repobilityId": 121957, "scanner": "repobility-threat-engine", "fingerprint": "744bd5da00e7ee12672c012d887f7cd3ae46ff08a28313f53e45c567d6629346", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "def run(cls, process_instance: ProcessInstanceModel) -> None:\n        raise NotImplementedError", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC127", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|744bd5da00e7ee12672c012d887f7cd3ae46ff08a28313f53e45c567d6629346"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/data_migrations/data_migration_base.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `cov_tasks` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: for=4, if=4, nested_bonus=12."}, "properties": {"repobilityId": 121936, "scanner": "repobility-threat-engine", "fingerprint": "94abace2324b0eff646e44c55071bfc9570af7b91d92d8e8f0be5fd574fb4bff", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 20 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "cov_tasks", "breakdown": {"if": 4, "for": 4, "nested_bonus": 12}, "complexity": 20, "correlation_key": "fp|94abace2324b0eff646e44c55071bfc9570af7b91d92d8e8f0be5fd574fb4bff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/coverage.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122055, "scanner": "repobility-docker", "fingerprint": "67bc0ad067bdba5104a658be2f20842c2817b4ceca74a23f97f54ee134a0c96f", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-frontend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|67bc0ad067bdba5104a658be2f20842c2817b4ceca74a23f97f54ee134a0c96f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/docker-compose.yml"}, "region": {"startLine": 2}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122054, "scanner": "repobility-docker", "fingerprint": "d9203ff0c1f299fb9023c2360badf5d5b730009e77abdb49c0acaae514283a3f", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "spiffworkflow-frontend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|d9203ff0c1f299fb9023c2360badf5d5b730009e77abdb49c0acaae514283a3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/docker-compose.yml"}, "region": {"startLine": 2}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122053, "scanner": "repobility-docker", "fingerprint": "b8bbeaa27ee15a49434ee3e11ac3dd0af2037d640271ab13b40c6d9a2ee1d965", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-backend-local-debug", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|b8bbeaa27ee15a49434ee3e11ac3dd0af2037d640271ab13b40c6d9a2ee1d965"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 77}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122051, "scanner": "repobility-docker", "fingerprint": "fcc4c650c16e2f83c6464e9bcf40256f7e16dc02041a1df0040fdd1fe172b829", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "spiffworkflow-backend-local-debug", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|fcc4c650c16e2f83c6464e9bcf40256f7e16dc02041a1df0040fdd1fe172b829"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 77}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122050, "scanner": "repobility-docker", "fingerprint": "9ae65d1ca0b37ed2c6f6f90f15975576a3cdf7f7f6c0e312aff90afeadc2067f", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|9ae65d1ca0b37ed2c6f6f90f15975576a3cdf7f7f6c0e312aff90afeadc2067f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122048, "scanner": "repobility-docker", "fingerprint": "2a209d0c37c68f92078070c48ffbfde87e629920f46640c66feacaf05fb57deb", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "spiffworkflow-backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|2a209d0c37c68f92078070c48ffbfde87e629920f46640c66feacaf05fb57deb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC017", "level": "note", "message": {"text": "Database password is wired through an environment variable placeholder"}, "properties": {"repobilityId": 122047, "scanner": "repobility-docker", "fingerprint": "349849b0d135834ae4f36a2e3c53bfb73194ce87be85944464af6459c7d1abd7", "category": "docker", "severity": "low", "confidence": 0.58, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Database image supports file-based secret variables, but only placeholder environment variables were found.", "evidence": {"rule_id": "DKC017", "scanner": "repobility-docker", "service": "db", "variables": ["MYSQL_ROOT_PASSWORD"], "references": ["https://docs.docker.com/compose/how-tos/use-secrets/"], "correlation_key": "fp|349849b0d135834ae4f36a2e3c53bfb73194ce87be85944464af6459c7d1abd7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 12}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122045, "scanner": "repobility-docker", "fingerprint": "6bc12399bd75d492670aacaff5354e37bd7fe7154f5bc0b346be77235110e630", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-connector", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|6bc12399bd75d492670aacaff5354e37bd7fe7154f5bc0b346be77235110e630"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 68}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122044, "scanner": "repobility-docker", "fingerprint": "6389576e6e1bd5075a7d97f8f80036b7333a19f097aeb7525370edd46faaa72b", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "spiffworkflow-connector", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|6389576e6e1bd5075a7d97f8f80036b7333a19f097aeb7525370edd46faaa72b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 68}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122043, "scanner": "repobility-docker", "fingerprint": "17cb54154d6b434d05df20d4d203926d9d6f2442476794b981578eda4278ce49", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|17cb54154d6b434d05df20d4d203926d9d6f2442476794b981578eda4278ce49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122039, "scanner": "repobility-docker", "fingerprint": "49a734132a17ba8b6533a048b485a56c4be0178dae5527cdd48a6ea9abc84b15", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "spiffworkflow-frontend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|49a734132a17ba8b6533a048b485a56c4be0178dae5527cdd48a6ea9abc84b15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122038, "scanner": "repobility-docker", "fingerprint": "8263cfa034b9f9a32bd39a97fad0788930dd8d614b1a754a3731c75521887656", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "spiffworkflow-frontend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|8263cfa034b9f9a32bd39a97fad0788930dd8d614b1a754a3731c75521887656"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 122036, "scanner": "repobility-docker", "fingerprint": "27d586e7bcb2e5cc44316c8e2bc1e194a8648824943828e0ff3a71d6f6e3dc11", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "connector-proxy-async-http", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|27d586e7bcb2e5cc44316c8e2bc1e194a8648824943828e0ff3a71d6f6e3dc11"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 122035, "scanner": "repobility-docker", "fingerprint": "1c994a92c25ecaca842e4ec77cea20774093b1b234422a2fdd8479ecd8c72d51", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "connector-proxy-async-http", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|1c994a92c25ecaca842e4ec77cea20774093b1b234422a2fdd8479ecd8c72d51"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 122032, "scanner": "repobility-docker", "fingerprint": "773e99b89916054120c6a63e8619db6a22300d4d92e4bdd0aa22b4f9d74cce03", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|773e99b89916054120c6a63e8619db6a22300d4d92e4bdd0aa22b4f9d74cce03"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/Dockerfile"}, "region": {"startLine": 11}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 122028, "scanner": "repobility-docker", "fingerprint": "9f1e0630dc83cec4c7b51a6ec1231bf6bbaf15c8c8be25eca5280c900b4d165c", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|9f1e0630dc83cec4c7b51a6ec1231bf6bbaf15c8c8be25eca5280c900b4d165c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 48}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 122027, "scanner": "repobility-docker", "fingerprint": "9f4d8e10c55830d5ac2b17adbb78f6442e5245617c040b5b9f8a9ea9c1501cc6", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|9f4d8e10c55830d5ac2b17adbb78f6442e5245617c040b5b9f8a9ea9c1501cc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 48}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 122026, "scanner": "repobility-docker", "fingerprint": "3181afa21f191422d7e8b9ee33861db81d24f8f4cbb07a72b169caab3d065100", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|3181afa21f191422d7e8b9ee33861db81d24f8f4cbb07a72b169caab3d065100"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 44}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 122025, "scanner": "repobility-docker", "fingerprint": "57a9e5c24b93176fa104ffeb8de1c527be600c229c2b7b019922ebe00e3f3b80", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|57a9e5c24b93176fa104ffeb8de1c527be600c229c2b7b019922ebe00e3f3b80"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 33}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 122024, "scanner": "repobility-docker", "fingerprint": "62e8d6ceceb03f3a8d27c987462ca54500d73ce96237605d35eb79089812531d", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|62e8d6ceceb03f3a8d27c987462ca54500d73ce96237605d35eb79089812531d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 32}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 122023, "scanner": "repobility-docker", "fingerprint": "018c68bf4751a3c62f717299618b6d9975e652e835fbac80ac69a8ce7c0c8858", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|018c68bf4751a3c62f717299618b6d9975e652e835fbac80ac69a8ce7c0c8858"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 26}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 122019, "scanner": "repobility-docker", "fingerprint": "4fa3a8d4e2cf1c3c5576360cb0adfa2df2f42fc7311325f29e237172a836f1b3", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|4fa3a8d4e2cf1c3c5576360cb0adfa2df2f42fc7311325f29e237172a836f1b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 122018, "scanner": "repobility-docker", "fingerprint": "792dcd82e1d00addbf7915e704a25768e4ae93067b85a927f617d3c778f023ff", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|792dcd82e1d00addbf7915e704a25768e4ae93067b85a927f617d3c778f023ff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 122017, "scanner": "repobility-docker", "fingerprint": "13363ef70b3134c8f04d9a1bda48cee09730f18560daafd5b9b660f86e582b3a", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|13363ef70b3134c8f04d9a1bda48cee09730f18560daafd5b9b660f86e582b3a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 34}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 122016, "scanner": "repobility-docker", "fingerprint": "a42988fd6bd7e8f7c358440cf0a7b71f04b2e1ddd1b6ffce7b57158fe5eea782", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|a42988fd6bd7e8f7c358440cf0a7b71f04b2e1ddd1b6ffce7b57158fe5eea782"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122012, "scanner": "repobility-ai-code-hygiene", "fingerprint": "84ef971c768d9af781cb52f010951b0265371d39e1fb08ae023231243e605e23", "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": "spiffworkflow-frontend/src/components/TaskListTable.tsx", "duplicate_line": 149, "correlation_key": "fp|84ef971c768d9af781cb52f010951b0265371d39e1fb08ae023231243e605e23"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/public/PublicForm.tsx"}, "region": {"startLine": 120}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122011, "scanner": "repobility-ai-code-hygiene", "fingerprint": "fe687eddb7a056f6a72bae38dd3ae67d10f4534cd0ccfd3d5fb63db6d98099b1", "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": "spiffworkflow-frontend/src/components/TaskListTable.tsx", "duplicate_line": 149, "correlation_key": "fp|fe687eddb7a056f6a72bae38dd3ae67d10f4534cd0ccfd3d5fb63db6d98099b1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/TaskShow/TaskShow.tsx"}, "region": {"startLine": 286}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122010, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0bf963d714b88f7dcbdac52a861710922791e8ce202c9e0d0bf39ee0b4a1c4cb", "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": "spiffworkflow-frontend/src/views/TaskShow/ProcessInstanceProgressPage.tsx", "duplicate_line": 18, "correlation_key": "fp|0bf963d714b88f7dcbdac52a861710922791e8ce202c9e0d0bf39ee0b4a1c4cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/TaskShow/ProcessInterstitialPage.tsx"}, "region": {"startLine": 16}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122009, "scanner": "repobility-ai-code-hygiene", "fingerprint": "334e92b1b4cdaa36df3844e47e0d6ac63cf3fe8692d7cf76b0e5118d8bf2dfae", "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": "spiffworkflow-frontend/src/components/DataStoreCard.tsx", "duplicate_line": 9, "correlation_key": "fp|334e92b1b4cdaa36df3844e47e0d6ac63cf3fe8692d7cf76b0e5118d8bf2dfae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/StartProcess/ProcessModelCard.tsx"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122008, "scanner": "repobility-ai-code-hygiene", "fingerprint": "889e6ed311d834930c1c9809ff3b3fbcad227718bfe67073dc4795846361dc8f", "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": "spiffworkflow-frontend/src/views/DataStoreEdit.tsx", "duplicate_line": 38, "correlation_key": "fp|889e6ed311d834930c1c9809ff3b3fbcad227718bfe67073dc4795846361dc8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/ProcessGroupNew.tsx"}, "region": {"startLine": 20}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122007, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5e7a966b1dc6092bb96396add3536a6110f1c1bb9068d2092ad894e22e340f80", "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": "spiffworkflow-frontend/src/views/DataStoreNew.tsx", "duplicate_line": 22, "correlation_key": "fp|5e7a966b1dc6092bb96396add3536a6110f1c1bb9068d2092ad894e22e340f80"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/ProcessGroupNew.tsx"}, "region": {"startLine": 19}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122006, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0c0d3e09425a29d03c0fa74f3c582e1db473c4f4d18142d1deeee6bf79e328f0", "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": "spiffworkflow-frontend/src/views/Homepage.tsx", "duplicate_line": 145, "correlation_key": "fp|0c0d3e09425a29d03c0fa74f3c582e1db473c4f4d18142d1deeee6bf79e328f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/InstancesStartedByMe.tsx"}, "region": {"startLine": 35}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122005, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2d754d63dd68e58bf0f6f4a051cf32e92307573012215706ca52be948bb361d1", "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": "spiffworkflow-frontend/src/views/DataStoreEdit.tsx", "duplicate_line": 38, "correlation_key": "fp|2d754d63dd68e58bf0f6f4a051cf32e92307573012215706ca52be948bb361d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/DataStoreNew.tsx"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122004, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2d3fe552d0665f5940bc2227c9990ae6a5986c4245dbcd2efe606f1bf88eab5a", "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": "spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx", "duplicate_line": 192, "correlation_key": "fp|2d3fe552d0665f5940bc2227c9990ae6a5986c4245dbcd2efe606f1bf88eab5a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/hooks/useProcessInstances.ts"}, "region": {"startLine": 75}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122003, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cfb3610e49f26ffdcc1524a510e6bee49974241cd161740ee650d47be16af800", "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": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/messages/MessageHelper.ts", "duplicate_line": 47, "correlation_key": "fp|cfb3610e49f26ffdcc1524a510e6bee49974241cd161740ee650d47be16af800"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/messages/MessageHelper.tsx"}, "region": {"startLine": 56}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122002, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0f405c914b011b97b45b9656b062e4e209a463925e8506760052fc52fe9a1ab1", "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": "spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx", "duplicate_line": 248, "correlation_key": "fp|0f405c914b011b97b45b9656b062e4e209a463925e8506760052fc52fe9a1ab1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/TaskListTable.tsx"}, "region": {"startLine": 126}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122001, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cf53e43e3b18d040f62d857692c811364821253ff0ae7b7fcf920339470fbb6a", "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": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/BpmnEditor.tsx", "duplicate_line": 78, "correlation_key": "fp|cf53e43e3b18d040f62d857692c811364821253ff0ae7b7fcf920339470fbb6a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/ReactDiagramEditor.tsx"}, "region": {"startLine": 72}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 122000, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e402cfe57dbf9d1a3529d4068bc74fa2d7c84970a32c2dd483d4b4cf2acceba5", "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": "spiffworkflow-frontend/src/components/ProcessModelSearch.tsx", "duplicate_line": 5, "correlation_key": "fp|e402cfe57dbf9d1a3529d4068bc74fa2d7c84970a32c2dd483d4b4cf2acceba5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/ProcessModelSearchCarbon.tsx"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 121999, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7c29f44e147c129e69c26519f5aff4fca7d5e01f1fe4778932ba84e7531e104a", "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": "spiffworkflow-frontend/src/components/DataStoreForm.tsx", "duplicate_line": 264, "correlation_key": "fp|7c29f44e147c129e69c26519f5aff4fca7d5e01f1fe4778932ba84e7531e104a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/ProcessGroupForm.tsx"}, "region": {"startLine": 153}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 121998, "scanner": "repobility-ai-code-hygiene", "fingerprint": "47fbcf38a113d15fa860a5770e4a7e068144247631fdbe1881305cd18fc26c41", "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": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/JsonSchemaEditorDialog.tsx", "duplicate_line": 17, "correlation_key": "fp|47fbcf38a113d15fa860a5770e4a7e068144247631fdbe1881305cd18fc26c41"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/MessageEditorDialog.tsx"}, "region": {"startLine": 23}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 121997, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9533b65ee75252a7c1770ae6da42ab579a64330f3f2be90bac788ffe4f735850", "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": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/JsonSchemaEditorDialog.tsx", "duplicate_line": 17, "correlation_key": "fp|9533b65ee75252a7c1770ae6da42ab579a64330f3f2be90bac788ffe4f735850"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/MarkdownEditorDialog.tsx"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC002", "level": "note", "message": {"text": "Source file name looks like an AI patch artifact"}, "properties": {"repobilityId": 121996, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a353f8558e50d3a39631112d31bc7630bbb79de029c9f1f714037ff9fb41dcc7", "category": "quality", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Source filename contains a temporary or patch-style suffix.", "evidence": {"suffix": "fix", "rule_id": "AIC002", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|a353f8558e50d3a39631112d31bc7630bbb79de029c9f1f714037ff9fb41dcc7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/middleware/asgi_proxy_fix.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC009", "level": "note", "message": {"text": "Multiple AI-agent scaffold marker files are present"}, "properties": {"repobilityId": 121995, "scanner": "repobility-ai-code-hygiene", "fingerprint": "32459e18838866b083b985fd53ac32d4e825aa20af779d902253d8278f625dfb", "category": "quality", "severity": "low", "confidence": 0.68, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository root contains several AI-agent scaffold marker files.", "evidence": {"markers": [".github/copilot-instructions.md", "AGENTS.md", "CLAUDE.md"], "rule_id": "AIC009", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|32459e18838866b083b985fd53ac32d4e825aa20af779d902253d8278f625dfb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/copilot-instructions.md"}, "region": {"startLine": 1}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `_embedded_subprocess_ids` has cognitive complexity 12 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: continue=3, for=1, if=4, nested_bonus=3, recursion=1."}, "properties": {"repobilityId": 121937, "scanner": "repobility-threat-engine", "fingerprint": "fa7553a509d4581f5ef6920d6d920ff4a792f4979b55e8b53439e833fa435e15", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 12 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "_embedded_subprocess_ids", "breakdown": {"if": 4, "for": 1, "continue": 3, "recursion": 1, "nested_bonus": 3}, "complexity": 12, "correlation_key": "fp|fa7553a509d4581f5ef6920d6d920ff4a792f4979b55e8b53439e833fa435e15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/coverage.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `redacted` has cognitive complexity 10 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: else=1, for=1, if=3, nested_bonus=3, recursion=2."}, "properties": {"repobilityId": 121935, "scanner": "repobility-threat-engine", "fingerprint": "72b3c663d9126a9ec888c0bed7ef30f5c5e33b71d51ff8aa8ef518ef09b5d543", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 10 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "redacted", "breakdown": {"if": 3, "for": 1, "else": 1, "recursion": 2, "nested_bonus": 3}, "complexity": 10, "correlation_key": "fp|72b3c663d9126a9ec888c0bed7ef30f5c5e33b71d51ff8aa8ef518ef09b5d543"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/main.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 121990, "scanner": "repobility-threat-engine", "fingerprint": "39fd4a1cddf4483dd84cf1f6c253be40bd579d99e671f3e4c30b00d7ca679a06", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|39fd4a1cddf4483dd84cf1f6c253be40bd579d99e671f3e4c30b00d7ca679a06"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/StartProcess/TreePanel.tsx"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 121989, "scanner": "repobility-threat-engine", "fingerprint": "fe244021239dcb01e56063a9d301c7b3d68c0eeb4c2d6460d4e6a1a1ec67a747", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fe244021239dcb01e56063a9d301c7b3d68c0eeb4c2d6460d4e6a1a1ec67a747"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/config.tsx"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 121988, "scanner": "repobility-threat-engine", "fingerprint": "cb84733fcff88684666db4e30e78ae8f6e8daa94dd148325a3a87bf8a51826c0", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cb84733fcff88684666db4e30e78ae8f6e8daa94dd148325a3a87bf8a51826c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/ProcessModelFileList.tsx"}, "region": {"startLine": 64}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 121987, "scanner": "repobility-threat-engine", "fingerprint": "cfa88bd2861e2db9588d820f558afb14512f0e36f595db07c9764dfeebbd4bc7", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cfa88bd2861e2db9588d820f558afb14512f0e36f595db07c9764dfeebbd4bc7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/App.tsx"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 11 more): Same pattern found in 11 additional files. Review if needed."}, "properties": {"repobilityId": 121986, "scanner": "repobility-threat-engine", "fingerprint": "8323284e71c0a31a05bed90ab17738fa73ec0ef9ce708f2be963d66c42fd127f", "category": "quality", "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": {"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|8323284e71c0a31a05bed90ab17738fa73ec0ef9ce708f2be963d66c42fd127f", "aggregated_count": 11}}}, {"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": 121985, "scanner": "repobility-threat-engine", "fingerprint": "e87fddd14db873211a505917fe38285fa6986441ad2ede1d1d52217192c8d4af", "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|e87fddd14db873211a505917fe38285fa6986441ad2ede1d1d52217192c8d4af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/hooks/useProcessReferences.ts"}, "region": {"startLine": 68}}}]}, {"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": 121984, "scanner": "repobility-threat-engine", "fingerprint": "0a70b78d73ea1a9c89e3f662cc95f2a97ea5d2d185c044dd8df86c260c377a3e", "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|0a70b78d73ea1a9c89e3f662cc95f2a97ea5d2d185c044dd8df86c260c377a3e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/hooks/useJsonSchemaEditor.ts"}, "region": {"startLine": 202}}}]}, {"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": 121983, "scanner": "repobility-threat-engine", "fingerprint": "512bfeb55a1faa4047ba488da911e77f27a7e46083899b5aa0ebcf6350179b33", "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|512bfeb55a1faa4047ba488da911e77f27a7e46083899b5aa0ebcf6350179b33"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/hooks/useBpmnEditorCallbacks.ts"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 121982, "scanner": "repobility-threat-engine", "fingerprint": "72868d73be2432154286c4455605b76057530dd020051f40b6c07b0c3574921f", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|72868d73be2432154286c4455605b76057530dd020051f40b6c07b0c3574921f", "aggregated_count": 9}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 121981, "scanner": "repobility-threat-engine", "fingerprint": "b4b8a38c8c8612265e8d6a160008fedd2bd44dd123cfac6e788c6d5c4df591ab", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b4b8a38c8c8612265e8d6a160008fedd2bd44dd123cfac6e788c6d5c4df591ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/hooks/useKeyboardShortcut.tsx"}, "region": {"startLine": 174}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 121980, "scanner": "repobility-threat-engine", "fingerprint": "f5a37fbbbf4eab435e4b812c4aac1edf577866d4204e86281efc9c8829c8cde7", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f5a37fbbbf4eab435e4b812c4aac1edf577866d4204e86281efc9c8829c8cde7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/ProcessBreadcrumb.tsx"}, "region": {"startLine": 61}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 121979, "scanner": "repobility-threat-engine", "fingerprint": "7029b1110bb34910ccb58f0c66a704ea14ee65a5936004079f900d86c86828f3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|7029b1110bb34910ccb58f0c66a704ea14ee65a5936004079f900d86c86828f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/ProcessSearchDialog.tsx"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 79 more): Same pattern found in 79 additional files. Review if needed."}, "properties": {"repobilityId": 121978, "scanner": "repobility-threat-engine", "fingerprint": "c532c06fef8c9f0e3aadf9e18fa1eed14d31265d3f887878a4245233cc7df1eb", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 79 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|c532c06fef8c9f0e3aadf9e18fa1eed14d31265d3f887878a4245233cc7df1eb", "aggregated_count": 79}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 121977, "scanner": "repobility-threat-engine", "fingerprint": "6a63fda4428d9edcc4d0a7b78500811334a08d77d44c700fae4ecff1cd2c3f7f", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6a63fda4428d9edcc4d0a7b78500811334a08d77d44c700fae4ecff1cd2c3f7f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/ProcessSearch.tsx"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 121976, "scanner": "repobility-threat-engine", "fingerprint": "0c0ba9edbbe2ea2d4d2bf8507928d7fe5b3899212deb8d354335e1fb5f223419", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0c0ba9edbbe2ea2d4d2bf8507928d7fe5b3899212deb8d354335e1fb5f223419"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/MessageEditorDialog.tsx"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 121975, "scanner": "repobility-threat-engine", "fingerprint": "88c45beaa0e78261c688c2d1e483f25fc74781d03f17bb9c0176a872653f146b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|88c45beaa0e78261c688c2d1e483f25fc74781d03f17bb9c0176a872653f146b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/packages/bpmn-js-spiffworkflow-react/src/components/FileNameEditorDialog.tsx"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED076", "level": "none", "message": {"text": "[MINED076] Catch And Reraise Noop: except X: raise X \u2014 adds no value, hides traceback if AI accidentally changes message."}, "properties": {"repobilityId": 121974, "scanner": "repobility-threat-engine", "fingerprint": "eb9c4b7469c4b52f584e22b50170d7dbffdcb9d6c089d594dfd726abacd6a244", "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": "catch-and-reraise-noop", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348079+00:00", "triaged_in_corpus": 10, "observations_count": 8333, "ai_coder_pattern_id": 45}, "scanner": "repobility-threat-engine", "correlation_key": "fp|eb9c4b7469c4b52f584e22b50170d7dbffdcb9d6c089d594dfd726abacd6a244"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/scripts/refresh_permissions.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 121973, "scanner": "repobility-threat-engine", "fingerprint": "8c3d65f79491a9bd251a5a55fb8361ba8be4d3ffd87aa6daec622f1db1d952af", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8c3d65f79491a9bd251a5a55fb8361ba8be4d3ffd87aa6daec622f1db1d952af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/script_assist_controller.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "SEC078", "level": "none", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 121972, "scanner": "repobility-threat-engine", "fingerprint": "c500410fdcef06e38b7ea0443de7c2892b712ad665dd4425785756cdf164ba9c", "category": "quality", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe pattern 'timeout\\s*=' detected on same line", "evidence": {"match": "requests.post(", "reason": "Safe pattern 'timeout\\s*=' detected on same line", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "fp|c500410fdcef06e38b7ea0443de7c2892b712ad665dd4425785756cdf164ba9c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/script_assist_controller.py"}, "region": {"startLine": 60}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 121966, "scanner": "repobility-threat-engine", "fingerprint": "bb073d169e432edd80ad520c2365fa126e348646d562af5169f91fd938623995", "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": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|bb073d169e432edd80ad520c2365fa126e348646d562af5169f91fd938623995", "aggregated_count": 3}}}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 121965, "scanner": "repobility-threat-engine", "fingerprint": "192e737c1a40d81ca7b04b9651315b20bf211156d95f04ef434d43e387525be9", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|192e737c1a40d81ca7b04b9651315b20bf211156d95f04ef434d43e387525be9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/models/message_instance.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 121964, "scanner": "repobility-threat-engine", "fingerprint": "d4927fecc7c9768b6b3bb3244deeee2175a305f9606fd32c26cf23492fa42e07", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d4927fecc7c9768b6b3bb3244deeee2175a305f9606fd32c26cf23492fa42e07"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/models/human_task_user_waiting.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 121963, "scanner": "repobility-threat-engine", "fingerprint": "adced76e2a7bb38bcd6550501fcbd4c9850ec8fc061c638018295471200f4ef2", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-dataclass-no-fields", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348046+00:00", "triaged_in_corpus": 10, "observations_count": 92448, "ai_coder_pattern_id": 144}, "scanner": "repobility-threat-engine", "correlation_key": "fp|adced76e2a7bb38bcd6550501fcbd4c9850ec8fc061c638018295471200f4ef2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/models/human_task_group.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 10 more): Same pattern found in 10 additional files. Review if needed."}, "properties": {"repobilityId": 121962, "scanner": "repobility-threat-engine", "fingerprint": "0f70dcb830f007110a79342e3f81eda77503ccc94f6c49e7c60c391ea17cb0cb", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 10 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|0f70dcb830f007110a79342e3f81eda77503ccc94f6c49e7c60c391ea17cb0cb"}}}, {"ruleId": "MINED065", "level": "none", "message": {"text": "[MINED065] Cors Wildcard: Access-Control-Allow-Origin: * exposes the API to any browser origin. Acceptable for public read-only endpoints; dangerous when paired with credentials or write endpoints."}, "properties": {"repobilityId": 121955, "scanner": "repobility-threat-engine", "fingerprint": "60f948dfa676428320a31ee5bcd9fec252f535b73cdb2cd64bd4e1677ada0e8c", "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": "cors-wildcard", "owasp": "A05:2021", "cwe_ids": ["CWE-942", "CWE-346"], "languages": ["python", "javascript", "typescript", "yaml", "json"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348052+00:00", "triaged_in_corpus": 12, "observations_count": 63910, "ai_coder_pattern_id": 46}, "scanner": "repobility-threat-engine", "correlation_key": "fp|60f948dfa676428320a31ee5bcd9fec252f535b73cdb2cd64bd4e1677ada0e8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/__init__.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 13 more): Same pattern found in 13 additional files. Review if needed."}, "properties": {"repobilityId": 121954, "scanner": "repobility-threat-engine", "fingerprint": "fe63a0c3db36cbf73bb9f04d5837f9f34863a99ac7da05df7321980a56d87019", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 13 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|fe63a0c3db36cbf73bb9f04d5837f9f34863a99ac7da05df7321980a56d87019"}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "properties": {"repobilityId": 121950, "scanner": "repobility-threat-engine", "fingerprint": "297bdc87ecb95e04a45fdf6034426a2faa151038df66bc5b072294d7cff69af0", "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": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|297bdc87ecb95e04a45fdf6034426a2faa151038df66bc5b072294d7cff69af0", "aggregated_count": 20}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 121949, "scanner": "repobility-threat-engine", "fingerprint": "ef188cb9ecdf16169831a3b34f43144f63169507ade815eb44c17a12077750a1", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ef188cb9ecdf16169831a3b34f43144f63169507ade815eb44c17a12077750a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/data_migrations/process_instance_migrator.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 121948, "scanner": "repobility-threat-engine", "fingerprint": "e0b3cecee1c94bae1b828166c024c4f8215dbb872f239b01ea10042a0540748a", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|e0b3cecee1c94bae1b828166c024c4f8215dbb872f239b01ea10042a0540748a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/background_processing/celery_tasks/process_instance_task.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 121947, "scanner": "repobility-threat-engine", "fingerprint": "3d13016554d812e9c6bc7770567a477e4f5968d1e5070072fe93f5fc0b3d9839", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3d13016554d812e9c6bc7770567a477e4f5968d1e5070072fe93f5fc0b3d9839"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/data_stores.py"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "properties": {"repobilityId": 121946, "scanner": "repobility-threat-engine", "fingerprint": "0870b88b7b462606419e71dc06c2db092b3a42675c3f7d720d30a266c93ca910", "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": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|0870b88b7b462606419e71dc06c2db092b3a42675c3f7d720d30a266c93ca910", "aggregated_count": 25}}}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 121945, "scanner": "repobility-threat-engine", "fingerprint": "a0b2f4a376698dfe3d1cbe229aaf14a46fbb75c013d9654b4cad961aa795f7c0", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a0b2f4a376698dfe3d1cbe229aaf14a46fbb75c013d9654b4cad961aa795f7c0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/background_processing/celery_tasks/process_instance_task.py"}, "region": {"startLine": 28}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 121944, "scanner": "repobility-threat-engine", "fingerprint": "b947a6ef3d69e8a552a9fd478127dae3c6bf832b0bef3eb6c8c4bc9c3e622405", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b947a6ef3d69e8a552a9fd478127dae3c6bf832b0bef3eb6c8c4bc9c3e622405"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/tester.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 121943, "scanner": "repobility-threat-engine", "fingerprint": "d8a6235e8a68bd7c8fbad2e0b64e871ff0743ea2ba57a636ae3fbda97e228025", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d8a6235e8a68bd7c8fbad2e0b64e871ff0743ea2ba57a636ae3fbda97e228025"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/data_stores.py"}, "region": {"startLine": 6}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 23 more): Same pattern found in 23 additional files. Review if needed."}, "properties": {"repobilityId": 121942, "scanner": "repobility-threat-engine", "fingerprint": "142f7aedb7a9436cd459ad936899043ddc6e468368c1340ea7a18add42976f51", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 23 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|142f7aedb7a9436cd459ad936899043ddc6e468368c1340ea7a18add42976f51", "aggregated_count": 23}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 41 more): Same pattern found in 41 additional files. Review if needed."}, "properties": {"repobilityId": 121938, "scanner": "repobility-threat-engine", "fingerprint": "a1aa20b7601f7855f5009be60c727dd059a6a600c0d0fe09790b893430193c4c", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 41 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "redacted", "breakdown": {"if": 3, "for": 1, "else": 1, "recursion": 2, "nested_bonus": 3}, "aggregated": true, "complexity": 10, "correlation_key": "fp|a1aa20b7601f7855f5009be60c727dd059a6a600c0d0fe09790b893430193c4c", "aggregated_count": 41}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 121934, "scanner": "repobility-threat-engine", "fingerprint": "0c333dc88d2673beda07ea322592a5e2658418eeef4b48e34ddf9f62e680bdd2", "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": "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|0c333dc88d2673beda07ea322592a5e2658418eeef4b48e34ddf9f62e680bdd2", "aggregated_count": 3}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 121933, "scanner": "repobility-threat-engine", "fingerprint": "48e007d340332b08a3a2d28f2cd0400b9696f9233dcbd95f235c7a8001878ec1", "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|48e007d340332b08a3a2d28f2cd0400b9696f9233dcbd95f235c7a8001878ec1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 50}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 121932, "scanner": "repobility-threat-engine", "fingerprint": "e677ef11a69c74a1024f6580bd97c8f7b1d234511ea8ec1828e0a11cf604be12", "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|e677ef11a69c74a1024f6580bd97c8f7b1d234511ea8ec1828e0a11cf604be12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 121931, "scanner": "repobility-threat-engine", "fingerprint": "f725d94d6ad2ccf33ccb3ccfb59e824bd7ddb743413df34e3819a7f78630e147", "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|f725d94d6ad2ccf33ccb3ccfb59e824bd7ddb743413df34e3819a7f78630e147"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".devcontainer/nginx.conf"}, "region": {"startLine": 7}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/upload-sarif@v4.35.1` 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": 122158, "scanner": "repobility-supply-chain", "fingerprint": "874897c78453d318cf12365a5712733fbf6e8ff9425dbe217d7d3f3028f67e21", "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|874897c78453d318cf12365a5712733fbf6e8ff9425dbe217d7d3f3028f67e21"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/snyk-security.yml"}, "region": {"startLine": 187}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/upload-sarif@v4.35.1` 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": 122157, "scanner": "repobility-supply-chain", "fingerprint": "b29a5d2cd0087155bac247407c083981f973182a13f06d1411e89cd1851676c5", "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|b29a5d2cd0087155bac247407c083981f973182a13f06d1411e89cd1851676c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/snyk-security.yml"}, "region": {"startLine": 112}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `github/codeql-action/upload-sarif` pinned to mutable ref `@v4.35.1`: `uses: github/codeql-action/upload-sarif@v4.35.1` 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": 122152, "scanner": "repobility-supply-chain", "fingerprint": "11ed980b4f5dfbcf35a7843de2f56842777d1883ed5330c60ec263dc097cbdd6", "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|11ed980b4f5dfbcf35a7843de2f56842777d1883ed5330c60ec263dc097cbdd6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/build_docker_images.yml"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 122151, "scanner": "repobility-supply-chain", "fingerprint": "fb53f93bebdaf451fbd573f1382c2810d6f2c0006096f799d75bfefd3d8ebf11", "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|fb53f93bebdaf451fbd573f1382c2810d6f2c0006096f799d75bfefd3d8ebf11"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/aggregate/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 122150, "scanner": "repobility-supply-chain", "fingerprint": "39d4cad54c581763e032a1f5205cae56d46aa952d5dba60bdd0e047046a5cdc6", "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|39d4cad54c581763e032a1f5205cae56d46aa952d5dba60bdd0e047046a5cdc6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/aggregate/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122149, "scanner": "repobility-supply-chain", "fingerprint": "33334f2612792ed1f8cf64805a4bfcec0e37c977324783cc30c0b3fd9c16f0a3", "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|33334f2612792ed1f8cf64805a4bfcec0e37c977324783cc30c0b3fd9c16f0a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122148, "scanner": "repobility-supply-chain", "fingerprint": "50806b41014a94949e321cd664cf64deac64a455f55e8f73c335940ea264d468", "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|50806b41014a94949e321cd664cf64deac64a455f55e8f73c335940ea264d468"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxies/async-http/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `quay.io/keycloak/keycloak:22.0.4` not pinned by digest: `FROM quay.io/keycloak/keycloak:22.0.4` 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": 122147, "scanner": "repobility-supply-chain", "fingerprint": "0fb83f3b3ca4e41e84fb3b3fcabf2b041d1763eacfe97307d211912bfaf6e0cb", "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|0fb83f3b3ca4e41e84fb3b3fcabf2b041d1763eacfe97307d211912bfaf6e0cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/keycloak/Dockerfile"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `quay.io/keycloak/keycloak:22.0.4` not pinned by digest: `FROM quay.io/keycloak/keycloak:22.0.4` 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": 122146, "scanner": "repobility-supply-chain", "fingerprint": "3976b62e9e4a9ba8119bbf2cf11e33d1a6427e545015997446c979209a67b19e", "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|3976b62e9e4a9ba8119bbf2cf11e33d1a6427e545015997446c979209a67b19e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/keycloak/Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122145, "scanner": "repobility-supply-chain", "fingerprint": "c3f5d78a44eea2ea1714376fd6b9e3ee5ac0b04534dae6ba394c796d5d59a4cc", "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|c3f5d78a44eea2ea1714376fd6b9e3ee5ac0b04534dae6ba394c796d5d59a4cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED131", "level": "error", "message": {"text": "[MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-prettier` pinned to mutable rev `v2.4.1`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/mirrors-prettier` at `rev: v2.4.1`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine."}, "properties": {"repobilityId": 122144, "scanner": "repobility-supply-chain", "fingerprint": "dbd39acdc6892b738561ae9be742bf054c93ff2a36f4c0afbaa91d3c5bd392f6", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "precommit-untrusted-repo", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dbd39acdc6892b738561ae9be742bf054c93ff2a36f4c0afbaa91d3c5bd392f6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/.pre-commit-config.yaml"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122143, "scanner": "repobility-supply-chain", "fingerprint": "f1b0730c73bab58bc75b6425812316fd7e7d923a9dc4bf6b6ff8416ee0495bb2", "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|f1b0730c73bab58bc75b6425812316fd7e7d923a9dc4bf6b6ff8416ee0495bb2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122142, "scanner": "repobility-supply-chain", "fingerprint": "836cfc19e5486f36190abc018340127fd4fd226ba6f52f55628b87c28756f89a", "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|836cfc19e5486f36190abc018340127fd4fd226ba6f52f55628b87c28756f89a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122141, "scanner": "repobility-supply-chain", "fingerprint": "3009169eb5e508c9dffb9490422eceb17fea609d1613923872db8765720f7a1c", "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|3009169eb5e508c9dffb9490422eceb17fea609d1613923872db8765720f7a1c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:24.15.0-trixie-slim` not pinned by digest: `FROM node:24.15.0-trixie-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 122140, "scanner": "repobility-supply-chain", "fingerprint": "1af9baaf655d5255a87f3b0c43783a29d2f2eb6621d6da1ba9fd0f07519164d3", "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|1af9baaf655d5255a87f3b0c43783a29d2f2eb6621d6da1ba9fd0f07519164d3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `nginx:1.29-alpine` not pinned by digest: `FROM nginx:1.29-alpine` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 122139, "scanner": "repobility-supply-chain", "fingerprint": "e23138889209081a1bbbe1a164ded40da0ada638adda5f5a7850572620128e02", "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|e23138889209081a1bbbe1a164ded40da0ada638adda5f5a7850572620128e02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/Dockerfile"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:24.15.0-trixie-slim` not pinned by digest: `FROM node:24.15.0-trixie-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 122138, "scanner": "repobility-supply-chain", "fingerprint": "66bef6ca9a3639446f894e05b896789ae1e8637c65f35e90019624ac9d415751", "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|66bef6ca9a3639446f894e05b896789ae1e8637c65f35e90019624ac9d415751"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/Dockerfile"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED122", "level": "error", "message": {"text": "[MINED122] package.json dep `bpmn-js-spiffworkflow` pulled from URL/Git: `dependencies.bpmn-js-spiffworkflow` = `github:sartography/bpmn-js-spiffworkflow#fix-correlation-key-churn` 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": 122137, "scanner": "repobility-supply-chain", "fingerprint": "0fd70eef57a677ad52f0c5a244298ea1e629476128a88f3f6ff4fb35ffc2fe73", "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|0fd70eef57a677ad52f0c5a244298ea1e629476128a88f3f6ff4fb35ffc2fe73"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/package.json"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.13.13-slim-trixie` not pinned by digest: `FROM python:3.13.13-slim-trixie` 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": 122136, "scanner": "repobility-supply-chain", "fingerprint": "33d93d20c876313cd2105f48ab11d0093d7d6050d420016ba453ac839c93d4e4", "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|33d93d20c876313cd2105f48ab11d0093d7d6050d420016ba453ac839c93d4e4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "dev.Dockerfile"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_save_raises_conflict_when_supplied_message_id_is_inserted_concurrently: Test function `test_save_raises_conflict_when_supplied_message_id_is_inserted_concurrently` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122108, "scanner": "repobility-ast-engine", "fingerprint": "498149c21adc090e290ead3219f7a173aa5c9a4adb64e5f5ba29734432b506e2", "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|498149c21adc090e290ead3219f7a173aa5c9a4adb64e5f5ba29734432b506e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_message_definition_service.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_save_rejects_supplied_message_id_for_different_location: Test function `test_save_rejects_supplied_message_id_for_different_location` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122107, "scanner": "repobility-ast-engine", "fingerprint": "1c088acd81caf96b7d2e69b15fe4c3e578d58d2aa535361431cd53051491cc27", "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|1c088acd81caf96b7d2e69b15fe4c3e578d58d2aa535361431cd53051491cc27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_message_definition_service.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_will_raise_if_bad_delegate_is_given: Test function `test_will_raise_if_bad_delegate_is_given` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122106, "scanner": "repobility-ast-engine", "fingerprint": "cf3432d1645fdcb3e5a8070a8ff1a89bcaf3c02b7b4559d236252329a332c267", "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|cf3432d1645fdcb3e5a8070a8ff1a89bcaf3c02b7b4559d236252329a332c267"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_process_model_test_runner.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_running_process_with_timer_intermediate_catch_event: Test function `test_running_process_with_timer_intermediate_catch_event` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122105, "scanner": "repobility-ast-engine", "fingerprint": "4fefaaf00a91b8d66054bd2a40273e25912d6bc73ce145cba975d501243ab015", "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|4fefaaf00a91b8d66054bd2a40273e25912d6bc73ce145cba975d501243ab015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_various_bpmn_constructs.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_raises_if_filtering_with_both_task_i_can_complete_and_tasks_completed_by_me: Test function `test_raises_if_filtering_with_both_task_i_can_complete_and_tasks_completed_by_me` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122104, "scanner": "repobility-ast-engine", "fingerprint": "bcc21eabea3342908d94a9f6fe219b34b1227b0fe0c38e090f441f25e87890a3", "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|bcc21eabea3342908d94a9f6fe219b34b1227b0fe0c38e090f441f25e87890a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_process_instance_report_service.py"}, "region": {"startLine": 134}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function: Test function `test_function` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122103, "scanner": "repobility-ast-engine", "fingerprint": "810ee8a6ddd5b0762dc253394930a6838588ede855cab0a966514b5ce2d49d85", "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|810ee8a6ddd5b0762dc253394930a6838588ede855cab0a966514b5ce2d49d85"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 288}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function_with_kwargs: Test function `test_function_with_kwargs` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122102, "scanner": "repobility-ast-engine", "fingerprint": "6cb7345577f45ec4c1cac4c3b9ac96749d5efec7ee28575323f1f7a6d003896c", "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|6cb7345577f45ec4c1cac4c3b9ac96749d5efec7ee28575323f1f7a6d003896c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function: Test function `test_function` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122101, "scanner": "repobility-ast-engine", "fingerprint": "07a908c23ee32e3c57bfc1e91d1690378d808f481a87ac8725efe357f653ae7b", "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|07a908c23ee32e3c57bfc1e91d1690378d808f481a87ac8725efe357f653ae7b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function: Test function `test_function` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122100, "scanner": "repobility-ast-engine", "fingerprint": "d1bcb7851f271a36fe68d7cd5a00496589deab120f0e8c475794edee64bf2129", "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|d1bcb7851f271a36fe68d7cd5a00496589deab120f0e8c475794edee64bf2129"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function: Test function `test_function` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122099, "scanner": "repobility-ast-engine", "fingerprint": "9c9048e9f02269767252e6e4720d79ef4798b00a2bda8a5fc66ca2457173565f", "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|9c9048e9f02269767252e6e4720d79ef4798b00a2bda8a5fc66ca2457173565f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_function: Test function `test_function` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122098, "scanner": "repobility-ast-engine", "fingerprint": "22189093d8257d615e9641c29261317f7a8a9a59191d0fd5c1921f18e837e5ad", "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|22189093d8257d615e9641c29261317f7a8a9a59191d0fd5c1921f18e837e5ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_api_logging.py"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_it_can_check_if_a_process_instance_can_be_migrated: Test function `test_it_can_check_if_a_process_instance_can_be_migrated` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122097, "scanner": "repobility-ast-engine", "fingerprint": "4b44b11b44ebaed60c74d6b6c5be919cc2c7e604af9fd2718af86164fb290ebb", "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|4b44b11b44ebaed60c74d6b6c5be919cc2c7e604af9fd2718af86164fb290ebb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_process_instance_service.py"}, "region": {"startLine": 454}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_fails_if_wildcard_used_in_pm_pg_macros: Test function `test_fails_if_wildcard_used_in_pm_pg_macros` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122096, "scanner": "repobility-ast-engine", "fingerprint": "55c5f2388eed84facf08991d3efcd5d95576375499b164b26a22ffe28f4325fa", "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|55c5f2388eed84facf08991d3efcd5d95576375499b164b26a22ffe28f4325fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 969}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_can_deny_access_with_permission: Test function `test_can_deny_access_with_permission` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122095, "scanner": "repobility-ast-engine", "fingerprint": "7463bc53fd2d5542a10b1ce4fa8d1a392d46fc95126b42166f0c5f710d240ec5", "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|7463bc53fd2d5542a10b1ce4fa8d1a392d46fc95126b42166f0c5f710d240ec5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 759}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_explode_permissions_with_start_to_incorrect_target: Test function `test_explode_permissions_with_start_to_incorrect_target` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122094, "scanner": "repobility-ast-engine", "fingerprint": "68c7372adbf9b0c727d46af0d028c99357654d413822da96898614a153bf9ca0", "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|68c7372adbf9b0c727d46af0d028c99357654d413822da96898614a153bf9ca0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 490}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_explode_permissions_with_invalid_target_uri: Test function `test_explode_permissions_with_invalid_target_uri` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122093, "scanner": "repobility-ast-engine", "fingerprint": "a0965a1a7530aa08bacc919fac35f5730905a05e0332d0c6f07b14bfb773c8ab", "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|a0965a1a7530aa08bacc919fac35f5730905a05e0332d0c6f07b14bfb773c8ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 481}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_granting_access_to_group_gives_access_to_group_and_subgroups: Test function `test_granting_access_to_group_gives_access_to_group_and_subgroups` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122092, "scanner": "repobility-ast-engine", "fingerprint": "06324653c814d462d81cfb2e34d3ccba411e2883138872ee73709a1722c12ef9", "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|06324653c814d462d81cfb2e34d3ccba411e2883138872ee73709a1722c12ef9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 433}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_does_not_fail_if_user_not_created: Test function `test_does_not_fail_if_user_not_created` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122091, "scanner": "repobility-ast-engine", "fingerprint": "558b460d00a10f61a695a8af6ad208cf4a7b233246d3cbc5c97213c592f4c737", "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|558b460d00a10f61a695a8af6ad208cf4a7b233246d3cbc5c97213c592f4c737"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_authorization_service.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_can_render_directly_from_spiff_task: Test function `test_can_render_directly_from_spiff_task` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122090, "scanner": "repobility-ast-engine", "fingerprint": "c80e13d358ec2e0e88895a5cda0ad30cefcffda01126aabedad520e5640a982e", "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|c80e13d358ec2e0e88895a5cda0ad30cefcffda01126aabedad520e5640a982e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_jinja_service.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_initialize_keys_raises_when_private_key_env_var_is_missing: Test function `test_initialize_keys_raises_when_private_key_env_var_is_missing` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122089, "scanner": "repobility-ast-engine", "fingerprint": "f1a5d8403bc4679a1e39f530200b0036b1abc9919e77a3c8ed33a6ebddbe8641", "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|f1a5d8403bc4679a1e39f530200b0036b1abc9919e77a3c8ed33a6ebddbe8641"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_openid_rsa_keys.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_initialize_keys_raises_when_public_key_env_var_is_missing: Test function `test_initialize_keys_raises_when_public_key_env_var_is_missing` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122088, "scanner": "repobility-ast-engine", "fingerprint": "943898165a9a9dfe6e586a4a66aeaeee6ae2e82a3f8e889cf84aa9316988ee03", "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|943898165a9a9dfe6e586a4a66aeaeee6ae2e82a3f8e889cf84aa9316988ee03"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_openid_rsa_keys.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_initialize_keys_raises_on_invalid_env_key_pair: Test function `test_initialize_keys_raises_on_invalid_env_key_pair` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122087, "scanner": "repobility-ast-engine", "fingerprint": "7855b1853d1e015f81439bf56df5e84138c56755f15033935e7f114073396e84", "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|7855b1853d1e015f81439bf56df5e84138c56755f15033935e7f114073396e84"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/unit/test_openid_rsa_keys.py"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_generate_markdown_table_script_supports_string_columns_for_ease_of_use: Test function `test_generate_markdown_table_script_supports_string_columns_for_ease_of_use` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122086, "scanner": "repobility-ast-engine", "fingerprint": "d422b03fa996e6201b31c2e4fac90ccd933e4424cf0f7b31e02f0ad5c2517318", "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|d422b03fa996e6201b31c2e4fac90ccd933e4424cf0f7b31e02f0ad5c2517318"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/scripts/test_generate_markdown_table.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_generate_markdown_table_script: Test function `test_generate_markdown_table_script` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122085, "scanner": "repobility-ast-engine", "fingerprint": "af3533e320e86aed5b81aaaf1c5a267476bf0493c8d4a09f052cd7a2f10e8354", "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|af3533e320e86aed5b81aaaf1c5a267476bf0493c8d4a09f052cd7a2f10e8354"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/scripts/test_generate_markdown_table.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_get_users_assigned_to_task_raises_if_no_task_guid: Test function `test_get_users_assigned_to_task_raises_if_no_task_guid` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 122084, "scanner": "repobility-ast-engine", "fingerprint": "3edc29557ea5d974a36b87df25e0bf8585bdd871b9e776748d855f137a7298b0", "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|3edc29557ea5d974a36b87df25e0bf8585bdd871b9e776748d855f137a7298b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/scripts/test_get_users_assigned_to_task.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_all_children_of_spiff_task` used but never assigned in __init__: Method `get_all_children_of_spiff_task` of class `BaseTest` reads `self.get_all_children_of_spiff_task`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122083, "scanner": "repobility-ast-engine", "fingerprint": "8cf54bdaa6d626cf73669f8b3edf1992c81ba3658b11d3d4db143418fb27269e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8cf54bdaa6d626cf73669f8b3edf1992c81ba3658b11d3d4db143418fb27269e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 672}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.round_last_state_change` used but never assigned in __init__: Method `round_last_state_change` of class `BaseTest` reads `self.round_last_state_change`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122082, "scanner": "repobility-ast-engine", "fingerprint": "8ca86c0f9481d7cef55836cf4391b263f397f556507e697e4ba55ccf50dbe1e3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8ca86c0f9481d7cef55836cf4391b263f397f556507e697e4ba55ccf50dbe1e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 646}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.round_last_state_change` used but never assigned in __init__: Method `round_last_state_change` of class `BaseTest` reads `self.round_last_state_change`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122081, "scanner": "repobility-ast-engine", "fingerprint": "0999eeeca6f61031123499f3e350fac12670918e1888c9433cbcc41e47a695a5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|0999eeeca6f61031123499f3e350fac12670918e1888c9433cbcc41e47a695a5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 649}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.post_to_process_instance_list` used but never assigned in __init__: Method `assert_report_with_process_metadata_operator_includes_instance` of class `BaseTest` reads `self.post_to_process_instance_list`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122080, "scanner": "repobility-ast-engine", "fingerprint": "b65933f6f24c4e77d5bb29f6c44670182508459f484177dfa625962796559dec", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b65933f6f24c4e77d5bb29f6c44670182508459f484177dfa625962796559dec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 580}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_instance_from_process_model` used but never assigned in __init__: Method `create_process_instance_with_synthetic_metadata` of class `BaseTest` reads `self.create_process_instance_from_process_model`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122079, "scanner": "repobility-ast-engine", "fingerprint": "72b67239a28fdfe6ef9d9d3442023726192c3ca5692ac97f636a3759fae21960", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|72b67239a28fdfe6ef9d9d3442023726192c3ca5692ac97f636a3759fae21960"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 538}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assure_correlation_properties_are_right` used but never assigned in __init__: Method `assure_there_is_a_process_waiting_on_a_message` of class `BaseTest` reads `self.assure_correlation_properties_are_right`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122078, "scanner": "repobility-ast-engine", "fingerprint": "5b3a4ee417cbc7a7ea4540e25128d976d8177428dbd57975d49bc3734e707c8f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|5b3a4ee417cbc7a7ea4540e25128d976d8177428dbd57975d49bc3734e707c8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 526}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_instance_from_process_model` used but never assigned in __init__: Method `start_sender_process` of class `BaseTest` reads `self.create_process_instance_from_process_model`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122077, "scanner": "repobility-ast-engine", "fingerprint": "cd86cf967dac2e7ea7bee1dc0683a1c58ac1a20afec58721ec3622b05ad0a1d7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|cd86cf967dac2e7ea7bee1dc0683a1c58ac1a20afec58721ec3622b05ad0a1d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 485}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `post_to_process_instance_list` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122076, "scanner": "repobility-ast-engine", "fingerprint": "c1385272a4bc27a3a86db17d1f4f2d2f3bd6ea68fd2d23f17afec5613c1c543c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|c1385272a4bc27a3a86db17d1f4f2d2f3bd6ea68fd2d23f17afec5613c1c543c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 463}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.empty_report_metadata_body` used but never assigned in __init__: Method `post_to_process_instance_list` of class `BaseTest` reads `self.empty_report_metadata_body`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122075, "scanner": "repobility-ast-engine", "fingerprint": "014eb28e1d213f035ca5620eeac97a06646aa5788aab193b8eabc6f3b8b2e4e7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|014eb28e1d213f035ca5620eeac97a06646aa5788aab193b8eabc6f3b8b2e4e7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 460}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_group` used but never assigned in __init__: Method `create_process_model_with_metadata` of class `BaseTest` reads `self.create_process_group`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122074, "scanner": "repobility-ast-engine", "fingerprint": "8aa9f1b7ae7336a450525bab48fb6ae7eaa8909172dd8d07dc16088ee1c50d31", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|8aa9f1b7ae7336a450525bab48fb6ae7eaa8909172dd8d07dc16088ee1c50d31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 435}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.find_or_create_user` used but never assigned in __init__: Method `create_process_instance_from_process_model` of class `BaseTest` reads `self.find_or_create_user`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122073, "scanner": "repobility-ast-engine", "fingerprint": "beee6171448a92c7908e21c4ebf8fb46cb2c919f316319154737557f5bdf4f7c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|beee6171448a92c7908e21c4ebf8fb46cb2c919f316319154737557f5bdf4f7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 345}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_spec_file` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122072, "scanner": "repobility-ast-engine", "fingerprint": "28ba548ed4bd47d5373876582700cceb4b30783610157f09003d9a17de68f7eb", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|28ba548ed4bd47d5373876582700cceb4b30783610157f09003d9a17de68f7eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_spec_file` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122071, "scanner": "repobility-ast-engine", "fingerprint": "1a85c8ac24df3e8e79d2e44892ba71a1bf5d840d05663195a38799664badba47", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1a85c8ac24df3e8e79d2e44892ba71a1bf5d840d05663195a38799664badba47"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 283}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.find_or_create_user` used but never assigned in __init__: Method `create_spec_file` of class `BaseTest` reads `self.find_or_create_user`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122070, "scanner": "repobility-ast-engine", "fingerprint": "81b9860648a3d65562f4eccd7cefb84df69063aa33bb325f8861da0960d1171d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|81b9860648a3d65562f4eccd7cefb84df69063aa33bb325f8861da0960d1171d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 277}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_test_data_file_full_path` used but never assigned in __init__: Method `get_test_data_file_contents` of class `BaseTest` reads `self.get_test_data_file_full_path`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122069, "scanner": "repobility-ast-engine", "fingerprint": "2c600641b80e623f209eee20e14e89ac2ea3ca92021fd608c69a40a7814b3715", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|2c600641b80e623f209eee20e14e89ac2ea3ca92021fd608c69a40a7814b3715"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 246}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_process_model_with_api` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122068, "scanner": "repobility-ast-engine", "fingerprint": "6223c71312999725fa4c2b4c39f4e6328c55b4345ef06cd1b6d4929e1fa74a10", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6223c71312999725fa4c2b4c39f4e6328c55b4345ef06cd1b6d4929e1fa74a10"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 223}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.find_or_create_user` used but never assigned in __init__: Method `create_process_model_with_api` of class `BaseTest` reads `self.find_or_create_user`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122067, "scanner": "repobility-ast-engine", "fingerprint": "fa8557eab449c0580906792534da93ec17579b369f1b4832f74626030ba43af0", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|fa8557eab449c0580906792534da93ec17579b369f1b4832f74626030ba43af0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 218}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_process_group_with_api` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122066, "scanner": "repobility-ast-engine", "fingerprint": "24299415c37c952d6e2ca7895d73394bb09ec010257c103926deaa45cb92c74c", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|24299415c37c952d6e2ca7895d73394bb09ec010257c103926deaa45cb92c74c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.modify_process_identifier_for_path_param` used but never assigned in __init__: Method `create_and_run_process_instance` of class `BaseTest` reads `self.modify_process_identifier_for_path_param`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122065, "scanner": "repobility-ast-engine", "fingerprint": "1703e19113a7dbceec8ad255fc7d64b35b4ba26e6b3b47b107ad1267280df814", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|1703e19113a7dbceec8ad255fc7d64b35b4ba26e6b3b47b107ad1267280df814"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_and_run_process_instance` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122064, "scanner": "repobility-ast-engine", "fingerprint": "a7dc49fd17e1a81ae1d80fdc95cde87e5dfe8ad9ae2c8e6c6eb45720369431a4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|a7dc49fd17e1a81ae1d80fdc95cde87e5dfe8ad9ae2c8e6c6eb45720369431a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 132}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_instance_from_process_model_id_with_api` used but never assigned in __init__: Method `create_and_run_process_instance` of class `BaseTest` reads `self.create_process_instance_from_process_model_id_with_api`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122063, "scanner": "repobility-ast-engine", "fingerprint": "65ff70b670234ebf2a70f2bad2274ba2b432b12dc5280e6b5c07c06ba4acbaf5", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|65ff70b670234ebf2a70f2bad2274ba2b432b12dc5280e6b5c07c06ba4acbaf5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 127}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.logged_in_headers` used but never assigned in __init__: Method `create_and_run_process_instance` of class `BaseTest` reads `self.logged_in_headers`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122062, "scanner": "repobility-ast-engine", "fingerprint": "dfcf6eea715c44cdd43ac296606557003c219de882e728d8952ddf0ae150e95d", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|dfcf6eea715c44cdd43ac296606557003c219de882e728d8952ddf0ae150e95d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_group_and_model_with_bpmn` used but never assigned in __init__: Method `create_and_run_process_instance` of class `BaseTest` reads `self.create_group_and_model_with_bpmn`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122061, "scanner": "repobility-ast-engine", "fingerprint": "42bc82767c70eda232a707e26c8b6ac7f967874a680f99999aac24ce5846ac44", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|42bc82767c70eda232a707e26c8b6ac7f967874a680f99999aac24ce5846ac44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_model_with_api` used but never assigned in __init__: Method `create_group_and_model_with_bpmn` of class `BaseTest` reads `self.create_process_model_with_api`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122060, "scanner": "repobility-ast-engine", "fingerprint": "9fcf97dad4b6ab7b25261439233d8c812cfec5d6c4fbf8045fd31fc3ae7bab09", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|9fcf97dad4b6ab7b25261439233d8c812cfec5d6c4fbf8045fd31fc3ae7bab09"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 92}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_process_group_with_api` used but never assigned in __init__: Method `create_group_and_model_with_bpmn` of class `BaseTest` reads `self.create_process_group_with_api`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 122059, "scanner": "repobility-ast-engine", "fingerprint": "95a905205222ae302873f4109ecbd4671761c133bd092fee30d6952c2dd27fe2", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "self-attr-never-set", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["python"], "observations_count": 25998}, "scanner": "repobility-ast-engine", "correlation_key": "fp|95a905205222ae302873f4109ecbd4671761c133bd092fee30d6952c2dd27fe2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/tests/spiffworkflow_backend/helpers/base_test.py"}, "region": {"startLine": 90}}}]}, {"ruleId": "DKC011", "level": "error", "message": {"text": "Database service publishes a host port"}, "properties": {"repobilityId": 122046, "scanner": "repobility-docker", "fingerprint": "15636a639569e045fb4c7f41a04de97a4a65c34c0832319d3563cbf8da751aae", "category": "docker", "severity": "high", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Database-like image publishes host ports without a loopback-only bind.", "evidence": {"ports": [{"raw": "7003:3306", "target": "3306", "host_ip": "", "published": "7003"}], "rule_id": "DKC011", "scanner": "repobility-docker", "service": "db", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "exposure_scope": "public", "correlation_key": "fp|15636a639569e045fb4c7f41a04de97a4a65c34c0832319d3563cbf8da751aae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 12}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 122033, "scanner": "repobility-docker", "fingerprint": "178fbdf16e803b73d5ba7932ac908776c353e9a9daf78773d196b0a5e1bd2156", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|178fbdf16e803b73d5ba7932ac908776c353e9a9daf78773d196b0a5e1bd2156"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/Dockerfile"}, "region": {"startLine": 37}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 122029, "scanner": "repobility-docker", "fingerprint": "5feff6dab168dd41f9bc6edf2fe9e8bc9de82e97e26c7e39128e24837c3128df", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|5feff6dab168dd41f9bc6edf2fe9e8bc9de82e97e26c7e39128e24837c3128df"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/Dockerfile"}, "region": {"startLine": 51}}}]}, {"ruleId": "DKR014", "level": "error", "message": {"text": "Dockerfile copies the entire context without .dockerignore"}, "properties": {"repobilityId": 122020, "scanner": "repobility-docker", "fingerprint": "c32692a33efc198edb2e44ff3400dba8b73282a0d567d1bd5c430eba5d596a95", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy and missing .dockerignore were found together.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|c32692a33efc198edb2e44ff3400dba8b73282a0d567d1bd5c430eba5d596a95"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "connector-proxy-demo/Dockerfile"}, "region": {"startLine": 44}}}]}, {"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": 121993, "scanner": "repobility-threat-engine", "fingerprint": "9ba3fc239d3f97989d15ab0d2f88666a6a7962e8cd316b7bd3488b46599b0035", "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(\n        numericalDateFormat", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9ba3fc239d3f97989d15ab0d2f88666a6a7962e8cd316b7bd3488b46599b0035"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/services/DateAndTimeService.tsx"}, "region": {"startLine": 185}}}]}, {"ruleId": "SEC027", "level": "error", "message": {"text": "[SEC027] XML External Entity (XXE) \u2014 Node.js xml parsers: Node.js XML parsers can expand external entities if not configured. libxmljs in particular has had XXE CVEs."}, "properties": {"repobilityId": 121991, "scanner": "repobility-threat-engine", "fingerprint": "7373d4d60ae786727ef3c789bfa9b9fbc73fede968bb56b3cf30433c5d54b2c1", "category": "xxe", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new DOMParser()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC027", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7373d4d60ae786727ef3c789bfa9b9fbc73fede968bb56b3cf30433c5d54b2c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/components/messages/MessageModelSync.ts"}, "region": {"startLine": 50}}}]}, {"ruleId": "SEC030", "level": "error", "message": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but land on attacker-controlled pages \u2014 common in OAuth callback flows, post-login redirects, and `next=` parameters. CWE-601."}, "properties": {"repobilityId": 121968, "scanner": "repobility-threat-engine", "fingerprint": "2a393ca28a8f0ef32c0c9de0d47c1354ac40b88febae9dc8a83e9cc290e12b3f", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "redirect(redirect_url)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2a393ca28a8f0ef32c0c9de0d47c1354ac40b88febae9dc8a83e9cc290e12b3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py"}, "region": {"startLine": 168}}}]}, {"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": 121961, "scanner": "repobility-threat-engine", "fingerprint": "a67063e8aea503a6a36b4741689709c69b00cf7b5ae0c47449ee0561920a7440", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a67063e8aea503a6a36b4741689709c69b00cf7b5ae0c47449ee0561920a7440"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py"}, "region": {"startLine": 37}}}]}, {"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": 121960, "scanner": "repobility-threat-engine", "fingerprint": "e4a9216e830ad301901abd9ac7cac614bf0f51a7c653d515e4744e782e0523af", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(b", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e4a9216e830ad301901abd9ac7cac614bf0f51a7c653d515e4744e782e0523af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/debug_controller.py"}, "region": {"startLine": 75}}}]}, {"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": 121959, "scanner": "repobility-threat-engine", "fingerprint": "b059a8c5744cf7481bc5c62db36d613df886ed1b86b8d5f63bcc00aefa7db611", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(b", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b059a8c5744cf7481bc5c62db36d613df886ed1b86b8d5f63bcc00aefa7db611"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/helpers/public_api_urls.py"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 121958, "scanner": "repobility-threat-engine", "fingerprint": "346036b8d7722562a22b659802d0a24fa62e6ef0dc9f7dcf3e76fda98d0318c7", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|346036b8d7722562a22b659802d0a24fa62e6ef0dc9f7dcf3e76fda98d0318c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/data_migrations/process_instance_migrator.py"}, "region": {"startLine": 102}}}]}, {"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": 121953, "scanner": "repobility-threat-engine", "fingerprint": "c23754985a5e47eacf5f9d9d7131420e0b1e0be348f8c87316aeae2314914853", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "celery_app.conf.update(app.config)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c23754985a5e47eacf5f9d9d7131420e0b1e0be348f8c87316aeae2314914853"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/background_processing/celery.py"}, "region": {"startLine": 55}}}]}, {"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": 121952, "scanner": "repobility-threat-engine", "fingerprint": "2661e20640e44e9b17205bc933ce87ce69a8bcc8985e2ede013139032fd197cb", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "return_dict.update(row_value.__dict__)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|2661e20640e44e9b17205bc933ce87ce69a8bcc8985e2ede013139032fd197cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/__init__.py"}, "region": {"startLine": 47}}}]}, {"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": 121951, "scanner": "repobility-threat-engine", "fingerprint": "83ee8b43069bcc01300a52ede40b6cf3c0d69b31f784f7fa40ab64cc4ff219af", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "subprocess_specs.update(specs[\"subprocess_specs\"])", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|83ee8b43069bcc01300a52ede40b6cf3c0d69b31f784f7fa40ab64cc4ff219af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/tester.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 121941, "scanner": "repobility-threat-engine", "fingerprint": "1d5dfe5604b8a28008beb696dafe4ce8143a43c80e89b77f95e5278239133917", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1d5dfe5604b8a28008beb696dafe4ce8143a43c80e89b77f95e5278239133917"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/background_processing/celery_tasks/process_instance_task.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 121940, "scanner": "repobility-threat-engine", "fingerprint": "3ce9b71b698d706aba616d1678ad4456c531395c47fac0e3b82fdd1ac659e99e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3ce9b71b698d706aba616d1678ad4456c531395c47fac0e3b82fdd1ac659e99e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/tester.py"}, "region": {"startLine": 150}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 121939, "scanner": "repobility-threat-engine", "fingerprint": "8ebc4de403b27b433be0e35f278bae2f5abdde2cf2ea2f46d5158001d3cd5092", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8ebc4de403b27b433be0e35f278bae2f5abdde2cf2ea2f46d5158001d3cd5092"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/data_stores.py"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.COMMON_PYPI_KEY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.COMMON_PYPI_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": 122156, "scanner": "repobility-supply-chain", "fingerprint": "a20a008a55074158c084a7b5c9ef630f16a2e37f1e152662cbd94006b0cccf2e", "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|a20a008a55074158c084a7b5c9ef630f16a2e37f1e152662cbd94006b0cccf2e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/common.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.SONAR_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.SONAR_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": 122155, "scanner": "repobility-supply-chain", "fingerprint": "ddca7d382c69cfe7cd75661e47cba17672a83384e08b9b5b40e3c53545ee2f8c", "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|ddca7d382c69cfe7cd75661e47cba17672a83384e08b9b5b40e3c53545ee2f8c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/tests.yml"}, "region": {"startLine": 397}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.SONAR_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.SONAR_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": 122154, "scanner": "repobility-supply-chain", "fingerprint": "dbe72333ce4d593a597ae55d61072f00e3012ec693284e049e1d6222f15e2828", "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|dbe72333ce4d593a597ae55d61072f00e3012ec693284e049e1d6222f15e2828"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/tests.yml"}, "region": {"startLine": 342}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.SPIFFWORKS_WEBSITE_UPDATE_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.SPIFFWORKS_WEBSITE_UPDATE_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": 122153, "scanner": "repobility-supply-chain", "fingerprint": "0f48509090cafab915899de082c8014c32b5d65ee3a24faad3a45fea1410a806", "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|0f48509090cafab915899de082c8014c32b5d65ee3a24faad3a45fea1410a806"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docs.yml"}, "region": {"startLine": 66}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `select` used but not imported: The file uses `select.something(...)` but never imports `select`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 122135, "scanner": "repobility-ast-engine", "fingerprint": "616d83041ebd42927b798d33b5129cc51692f9a0c735bb9a9933ed49ce395d53", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|616d83041ebd42927b798d33b5129cc51692f9a0c735bb9a9933ed49ce395d53"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/test/browser/process_instances/test_can_filter.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `subprocess` used but not imported: The file uses `subprocess.something(...)` but never imports `subprocess`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 122133, "scanner": "repobility-ast-engine", "fingerprint": "b46bc5846e506071d63182f5dbb62a33648c1922a3cb209299abc350ef46162c", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|b46bc5846e506071d63182f5dbb62a33648c1922a3cb209299abc350ef46162c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiff-arena-common/src/spiff_arena_common/runner.py"}, "region": {"startLine": 620}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `string` used but not imported: The file uses `string.something(...)` but never imports `string`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 122131, "scanner": "repobility-ast-engine", "fingerprint": "6b260a778b5da77db6064f59e06fc5c6e81fffc91a6937d7952316098fd8ed5c", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "missing-import-python", "owasp": "A06:2021", "cwe_ids": ["CWE-1075"], "languages": ["python"], "observations_count": 2192}, "scanner": "repobility-ast-engine", "correlation_key": "fp|6b260a778b5da77db6064f59e06fc5c6e81fffc91a6937d7952316098fd8ed5c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/scripts/get_all_permissions.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "JRN001", "level": "error", "message": {"text": "Token handoff appears to use a callback URL or fragment"}, "properties": {"repobilityId": 122056, "scanner": "repobility-journey-contract", "fingerprint": "3db33adf940b72605a131758c989d04d80f5d0098a554655be3e22c10ae055de", "category": "auth", "severity": "critical", "confidence": 0.88, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Callback/redirect wording, token-in-URL syntax, and navigation code appear near each other.", "evidence": {"rule_id": "JRN001", "scanner": "repobility-journey-contract", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html", "https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html"], "correlation_key": "code|auth|token|29|jrn001"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-frontend/src/views/AuthenticationList.tsx"}, "region": {"startLine": 29}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 122052, "scanner": "repobility-docker", "fingerprint": "204422e85c8f808b681636cd4091e027a16654a93d55bd5c4b6e18e731765f51", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "spiffworkflow-backend-local-debug", "variable": "SPIFFWORKFLOW_BACKEND_AUTH_CONFIGS__0__client_secret", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|204422e85c8f808b681636cd4091e027a16654a93d55bd5c4b6e18e731765f51", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 77}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 122049, "scanner": "repobility-docker", "fingerprint": "64934c4f0ec332d0a9e02c618a02d5bcc32dbdbef9ae3b49dc320baec7cdebbd", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "spiffworkflow-backend", "variable": "SPIFFWORKFLOW_BACKEND_AUTH_CONFIGS__0__client_secret", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|64934c4f0ec332d0a9e02c618a02d5bcc32dbdbef9ae3b49dc320baec7cdebbd", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/docker-compose.yml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC007", "level": "error", "message": {"text": "Compose service contains a literal secret environment value"}, "properties": {"repobilityId": 122042, "scanner": "repobility-docker", "fingerprint": "ea48f5f06c22c5207138e5d7338c5b905520d2426ba9c410164f6446b42b5214", "category": "docker", "severity": "critical", "confidence": 0.96, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Environment variable name is secret-like and value is a committed literal.", "evidence": {"rule_id": "DKC007", "scanner": "repobility-docker", "service": "spiffworkflow-backend", "variable": "SPIFFWORKFLOW_BACKEND_OPEN_ID_CLIENT_SECRET_KEY", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://docs.docker.com/reference/compose-file/secrets/"], "path_context": "runtime", "correlation_key": "fp|ea48f5f06c22c5207138e5d7338c5b905520d2426ba9c410164f6446b42b5214", "compose_secrets_declared": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 26}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 121971, "scanner": "repobility-threat-engine", "fingerprint": "367fd0e4c44354429916ae9e39f2504bb271e3cf37fd89442d9254e1bba2f9e6", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|367fd0e4c44354429916ae9e39f2504bb271e3cf37fd89442d9254e1bba2f9e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/services/jinja_service.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 121970, "scanner": "repobility-threat-engine", "fingerprint": "6678c8a3ba6ef8cdf43e0772b83f1fa675bd6bb8d30c5178b124c1d9f19af7cd", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6678c8a3ba6ef8cdf43e0772b83f1fa675bd6bb8d30c5178b124c1d9f19af7cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/public_controller.py"}, "region": {"startLine": 231}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 121969, "scanner": "repobility-threat-engine", "fingerprint": "91d8c83755e18b37d84483053aa95856758f91c4bc9d0faafa7fe0a619b70194", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|91d8c83755e18b37d84483053aa95856758f91c4bc9d0faafa7fe0a619b70194"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/routes/openid_blueprint/openid_blueprint.py"}, "region": {"startLine": 71}}}]}, {"ruleId": "SEC003", "level": "error", "message": {"text": "[SEC003] Hardcoded Secret: Hardcoded secret key found in source code."}, "properties": {"repobilityId": 121956, "scanner": "repobility-threat-engine", "fingerprint": "007d84347afaf5e02b5df7a95c6e46d3ba52f639e09381fa0b5a3fde2351ecf6", "category": "credential_exposure", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "High entropy value (4.6 bits) \u2014 likely real secret", "evidence": {"match": "SECRET_KEY = \"JXeQExm0JhQPLumgHtIIqf52bDalHz0q\"", "reason": "High entropy value (4.6 bits) \u2014 likely real secret", "rule_id": "SEC003", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "secret|token|1|secret_key token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "spiffworkflow-backend/src/spiffworkflow_backend/config/unit_testing.py"}, "region": {"startLine": 14}}}]}]}]}