{"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": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "security.txt gives researchers and customers a safe disclosure channel. Public web apps and APIs should publish it under /.well-known/security.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "GHSA-78cv-mqj4-43f7", "name": "tornado: GHSA-78cv-mqj4-43f7", "shortDescription": {"text": "tornado: GHSA-78cv-mqj4-43f7"}, "fullDescription": {"text": "Tornado has incomplete validation of cookie attributes"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-6w46-j5rx-g56g", "name": "pytest: GHSA-6w46-j5rx-g56g", "shortDescription": {"text": "pytest: GHSA-6w46-j5rx-g56g"}, "fullDescription": {"text": "pytest has vulnerable tmpdir handling"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-w2fm-2cpv-w7v5", "name": "aiohttp: GHSA-w2fm-2cpv-w7v5", "shortDescription": {"text": "aiohttp: GHSA-w2fm-2cpv-w7v5"}, "fullDescription": {"text": "aiohttp allows unlimited trailer headers, leading to possible uncapped memory usage"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-p998-jp59-783m", "name": "aiohttp: GHSA-p998-jp59-783m", "shortDescription": {"text": "aiohttp: GHSA-p998-jp59-783m"}, "fullDescription": {"text": "AIOHTTP affected by UNC SSRF/NTLMv2 Credential Theft/Local File Read in static resource handler on Windows"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-m5qp-6w8w-w647", "name": "aiohttp: GHSA-m5qp-6w8w-w647", "shortDescription": {"text": "aiohttp: GHSA-m5qp-6w8w-w647"}, "fullDescription": {"text": "AIOHTTP has a Multipart Header Size Bypass"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-jg22-mg44-37j8", "name": "aiohttp: GHSA-jg22-mg44-37j8", "shortDescription": {"text": "aiohttp: GHSA-jg22-mg44-37j8"}, "fullDescription": {"text": "AIOHTTP is Vulnerable to Deserialization of Untrusted Data"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-hg6j-4rv6-33pg", "name": "aiohttp: GHSA-hg6j-4rv6-33pg", "shortDescription": {"text": "aiohttp: GHSA-hg6j-4rv6-33pg"}, "fullDescription": {"text": "AIOHTTP is vulnerable to cross-origin redirect with per-request cookies"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-c427-h43c-vf67", "name": "aiohttp: GHSA-c427-h43c-vf67", "shortDescription": {"text": "aiohttp: GHSA-c427-h43c-vf67"}, "fullDescription": {"text": "AIOHTTP accepts duplicate Host headers"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-r73j-pqj5-w3x7", "name": "pillow: GHSA-r73j-pqj5-w3x7", "shortDescription": {"text": "pillow: GHSA-r73j-pqj5-w3x7"}, "fullDescription": {"text": "Pillow has a PDF Parsing Trailer Infinite Loop (DoS)"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-5xmw-vc9v-4wf2", "name": "pillow: GHSA-5xmw-vc9v-4wf2", "shortDescription": {"text": "pillow: GHSA-5xmw-vc9v-4wf2"}, "fullDescription": {"text": "Pillow has a heap buffer overflow with nested list coordinates"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "medium", "confidence": 0.88, "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": "Docker images run as root unless the image or Dockerfile switches to a non-root user."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "SEC034", "name": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines o", "shortDescription": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (S"}, "fullDescription": {"text": "Strip control characters before logging:\n  safe = user_input.replace('\\n','').replace('\\r','').replace('\\x00','')\n  logger.info('User action: %s', safe)\nAlways use parameterized logging (`%s` + args), never f-strings or string concat \u2014 that's also what mitigates log4shell-style attacks. For structured logging, use a JSON formatter that escapes values."}, "properties": {"scanner": "repobility-threat-engine", "category": "log_injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR001", "name": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG ", "shortDescription": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "fullDescription": {"text": "Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "SEC136", "name": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns ", "shortDescription": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, retur"}, "fullDescription": {"text": "Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `_check_quarantine_on_executables` has cognitive complexity 19 (SonarSourc", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `_check_quarantine_on_executables` has cognitive complexity 19 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean ch"}, "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 19."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "AGT015", "name": "Remote install command pipes network code directly to a shell", "shortDescription": {"text": "Remote install command pipes network code directly to a shell"}, "fullDescription": {"text": "Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified."}, "properties": {"scanner": "repobility-agent-runtime", "category": "dependency", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "DEPCUR-PY", "name": "Python package `mypy` is 1 major version(s) behind (1.8.0 -> 2.1.0)", "shortDescription": {"text": "Python package `mypy` is 1 major version(s) behind (1.8.0 -> 2.1.0)"}, "fullDescription": {"text": "`mypy==1.8.0` is 1 major version(s) behind the latest stable release on PyPI (2.1.0). Pinned-but-stale Python dependencies drift away from upstream security and bugfix releases. This is the version-currency signal Dependabot raises."}, "properties": {"scanner": "repobility-dependency-currency", "category": "dependency", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED111", "name": "Bare except continues silently", "shortDescription": {"text": "Bare except continues silently"}, "fullDescription": {"text": "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": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "GHSA-mwh4-6h8g-pg8w", "name": "aiohttp: GHSA-mwh4-6h8g-pg8w", "shortDescription": {"text": "aiohttp: GHSA-mwh4-6h8g-pg8w"}, "fullDescription": {"text": "AIOHTTP has HTTP response splitting via \\r in reason phrase"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-hcc4-c3v8-rx92", "name": "aiohttp: GHSA-hcc4-c3v8-rx92", "shortDescription": {"text": "aiohttp: GHSA-hcc4-c3v8-rx92"}, "fullDescription": {"text": "AIOHTTP Affected by Denial of Service (DoS) via Unbounded DNS Cache in TCPConnector"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-966j-vmvw-g2g9", "name": "aiohttp: GHSA-966j-vmvw-g2g9", "shortDescription": {"text": "aiohttp: GHSA-966j-vmvw-g2g9"}, "fullDescription": {"text": "AIOHTTP leaks Cookie and Proxy-Authorization headers on cross-origin redirect"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-63hf-3vf5-4wqf", "name": "aiohttp: GHSA-63hf-3vf5-4wqf", "shortDescription": {"text": "aiohttp: GHSA-63hf-3vf5-4wqf"}, "fullDescription": {"text": "AIOHTTP's C parser (llhttp) accepts null bytes and control characters in response header values - header injection/security bypass"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-3wq7-rqq7-wx6j", "name": "aiohttp: GHSA-3wq7-rqq7-wx6j", "shortDescription": {"text": "aiohttp: GHSA-3wq7-rqq7-wx6j"}, "fullDescription": {"text": "AIOHTTP has late size enforcement for non-file multipart fields causes memory DoS"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-2vrm-gr82-f7m5", "name": "aiohttp: GHSA-2vrm-gr82-f7m5", "shortDescription": {"text": "aiohttp: GHSA-2vrm-gr82-f7m5"}, "fullDescription": {"text": "AIOHTTP has CRLF injection through multipart part content type header construction"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "low", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities."}, "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": "If the image does not define USER internally, this service may run as root."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": ".dockerignore exists but does not cover common secret or VCS patterns."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR012", "name": "Dockerfile keeps pip download cache", "shortDescription": {"text": "Dockerfile keeps pip download cache"}, "fullDescription": {"text": "Pip's package cache increases image size and can preserve unnecessary artifacts."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR011", "name": "Dockerfile installs recommended OS packages", "shortDescription": {"text": "Dockerfile installs recommended OS packages"}, "fullDescription": {"text": "Installing recommended packages often pulls in unnecessary runtime surface area."}, "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": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "CORE_NO_LICENSE", "name": "No LICENSE file", "shortDescription": {"text": "No LICENSE file"}, "fullDescription": {"text": "Add a LICENSE file to your repository. Use choosealicense.com to pick the right license (MIT for permissive, Apache 2.0 for patent protection, GPL for copyleft)."}, "properties": {"scanner": "repobility-core", "category": "documentation", "severity": "low", "confidence": null, "cwe": "", "owasp": ""}}, {"id": "MINED062", "name": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model.", "shortDescription": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED064", "name": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services.", "shortDescription": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 1 more): Same pattern found in 1 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": "MINED050", "name": "[MINED050] Stub Only Function (and 5 more): Same pattern found in 5 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 5 more): Same pattern found in 5 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 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 3 more): Same pattern found in 3 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": "MINED063", "name": "[MINED063] Toctou Os Path Exists: if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use.", "shortDescription": {"text": "[MINED063] Toctou Os Path Exists: if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-367 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequen", "shortDescription": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "cwe": "", "owasp": ""}}, {"id": "MINED077", "name": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles.", "shortDescription": {"text": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-772 /  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 12 more): Same pattern found in 12 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 12 more): Same pattern found in 12 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": "GHSA-fqwm-6jpj-5wxc", "name": "tornado: GHSA-fqwm-6jpj-5wxc", "shortDescription": {"text": "tornado: GHSA-fqwm-6jpj-5wxc"}, "fullDescription": {"text": "Tornado has cookie attribute injection via .RequestHandler.set_cookie"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "PYSEC-2026-140", "name": "tornado: PYSEC-2026-140", "shortDescription": {"text": "tornado: PYSEC-2026-140"}, "fullDescription": {"text": "Tornado is a Python web framework and asynchronous networking library. In versions of Tornado prior to 6.5.5, the only limit on the number of parts in multipart/form-data is the max_body_size setting (default 100MB). Since parsing occurs synchronously on the main thread, this creates the possibility of denial-of-service due to the cost of parsing very large multipart bodies with many parts. This vulnerability is fixed in 6.5.5."}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-xqmj-j6mv-4862", "name": "litellm: GHSA-xqmj-j6mv-4862", "shortDescription": {"text": "litellm: GHSA-xqmj-j6mv-4862"}, "fullDescription": {"text": "LiteLLM: Server-Side Template Injection in /prompts/test endpoint"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-wxxx-gvqv-xp7p", "name": "litellm: GHSA-wxxx-gvqv-xp7p", "shortDescription": {"text": "litellm: GHSA-wxxx-gvqv-xp7p"}, "fullDescription": {"text": "LiteLLM has a sandbox escape in custom-code guardrail"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-v4p8-mg3p-g94g", "name": "litellm: GHSA-v4p8-mg3p-g94g", "shortDescription": {"text": "litellm: GHSA-v4p8-mg3p-g94g"}, "fullDescription": {"text": "LiteLLM: Authenticated command execution via MCP stdio test endpoints"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-69x8-hrgq-fjj8", "name": "litellm: GHSA-69x8-hrgq-fjj8", "shortDescription": {"text": "litellm: GHSA-69x8-hrgq-fjj8"}, "fullDescription": {"text": "LiteLLM: Password hash exposure and pass-the-hash authentication bypass"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-53mr-6c8q-9789", "name": "litellm: GHSA-53mr-6c8q-9789", "shortDescription": {"text": "litellm: GHSA-53mr-6c8q-9789"}, "fullDescription": {"text": "LiteLLM: Privilege escalation via unrestricted proxy configuration endpoint"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-whj4-6x5x-4v2j", "name": "pillow: GHSA-whj4-6x5x-4v2j", "shortDescription": {"text": "pillow: GHSA-whj4-6x5x-4v2j"}, "fullDescription": {"text": "FITS GZIP decompression bomb in Pillow"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-pwv6-vv43-88gr", "name": "pillow: GHSA-pwv6-vv43-88gr", "shortDescription": {"text": "pillow: GHSA-pwv6-vv43-88gr"}, "fullDescription": {"text": "Pillow has an OOB Write with Invalid PSD Tile Extents (Integer Overflow)"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "PYSEC-2026-165", "name": "pillow: PYSEC-2026-165", "shortDescription": {"text": "pillow: PYSEC-2026-165"}, "fullDescription": {"text": "Pillow is a Python imaging library. Prior to version 12.2.0, if a font advances for each glyph by an exceeding large amount, when Pillow keeps track of the current position, it may lead to an integer overflow. This issue has been patched in version 12.2.0."}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "high", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKR006", "name": "Dockerfile pipes a remote script into a shell", "shortDescription": {"text": "Dockerfile pipes a remote script into a shell"}, "fullDescription": {"text": "Piping downloaded code directly into a shell bypasses checksum verification and makes builds dependent on mutable remote content."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "SEC004", "name": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection.", "shortDescription": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "fullDescription": {"text": "Use parameterized queries: conn.execute('SELECT * FROM t WHERE id = ?', [id]). For dynamic table or column names, choose identifiers from a hard-coded allowlist and keep values in parameters."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input: Outbound HTTP request to a user-controlled ", "shortDescription": {"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 e"}, "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": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC103", "name": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inje", "shortDescription": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "fullDescription": {"text": "Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders)."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "Action `softprops/action-gh-release` pinned to mutable ref `@v3`", "shortDescription": {"text": "Action `softprops/action-gh-release` pinned to mutable ref `@v3`"}, "fullDescription": {"text": "`uses: softprops/action-gh-release@v3` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "Dockerfile FROM `ubuntu:24.04` not pinned by digest", "shortDescription": {"text": "Dockerfile FROM `ubuntu:24.04` not pinned by digest"}, "fullDescription": {"text": "`FROM ubuntu:24.04` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "Phantom test coverage: test_escalate_raises_if_db_id_not_found", "shortDescription": {"text": "Phantom test coverage: test_escalate_raises_if_db_id_not_found"}, "fullDescription": {"text": "Test function `test_escalate_raises_if_db_id_not_found` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "`self.size` used but never assigned in __init__", "shortDescription": {"text": "`self.size` used but never assigned in __init__"}, "fullDescription": {"text": "Method `render` of class `PreviewLabel` reads `self.size`, 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": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "GHSA-r75f-5x8p-qvmc", "name": "litellm: GHSA-r75f-5x8p-qvmc", "shortDescription": {"text": "litellm: GHSA-r75f-5x8p-qvmc"}, "fullDescription": {"text": "LiteLLM has SQL Injection in Proxy API key verification"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "critical", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "GHSA-jjhc-v7c2-5hh6", "name": "litellm: GHSA-jjhc-v7c2-5hh6", "shortDescription": {"text": "litellm: GHSA-jjhc-v7c2-5hh6"}, "fullDescription": {"text": "LiteLLM: Authentication bypass via OIDC userinfo cache key collision"}, "properties": {"scanner": "osv-scanner", "category": "dependency", "severity": "critical", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "MINED007", "name": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection.", "shortDescription": {"text": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-89 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED019", "name": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates.", "shortDescription": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-94 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "Missing import: `datetime` used but not imported", "shortDescription": {"text": "Missing import: `datetime` used but not imported"}, "fullDescription": {"text": "The file uses `datetime.something(...)` but never imports `datetime`. This raises NameError at runtime the first time the line executes."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1050"}, "properties": {"repository": "alexazhou/TogoSpace", "repoUrl": "https://github.com/alexazhou/TogoSpace", "branch": "master"}, "results": [{"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 103232, "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": "GHSA-78cv-mqj4-43f7", "level": "warning", "message": {"text": "tornado: GHSA-78cv-mqj4-43f7"}, "properties": {"repobilityId": 103230, "scanner": "osv-scanner", "fingerprint": "561c8f0cd7cacc7083b105776f538695eae51d63b186ea56f1327f77f0f97cf2", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "package": "tornado", "rule_id": "GHSA-78cv-mqj4-43f7", "scanner": "osv-scanner", "correlation_key": "vuln|tornado|GHSA-78CV-MQJ4-43F7|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-6w46-j5rx-g56g", "level": "warning", "message": {"text": "pytest: GHSA-6w46-j5rx-g56g"}, "properties": {"repobilityId": 103228, "scanner": "osv-scanner", "fingerprint": "f137f1a93fafa0a320856f28aa2a71642d727782c4e2563bcf13d4da47ad6a2b", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2025-71176"], "package": "pytest", "rule_id": "GHSA-6w46-j5rx-g56g", "scanner": "osv-scanner", "correlation_key": "vuln|pytest|CVE-2025-71176|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-w2fm-2cpv-w7v5", "level": "warning", "message": {"text": "aiohttp: GHSA-w2fm-2cpv-w7v5"}, "properties": {"repobilityId": 103220, "scanner": "osv-scanner", "fingerprint": "942f4e784268d8dcaae532fec1e6c26e03f9b2226dd94b0eb1079d617eb61421", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-22815"], "package": "aiohttp", "rule_id": "GHSA-w2fm-2cpv-w7v5", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-22815|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-p998-jp59-783m", "level": "warning", "message": {"text": "aiohttp: GHSA-p998-jp59-783m"}, "properties": {"repobilityId": 103219, "scanner": "osv-scanner", "fingerprint": "1b64213bb4cb4a69fb30c631bc3d1e9701fb4339e7c72ebdc53b12fd643ca5f8", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34515"], "package": "aiohttp", "rule_id": "GHSA-p998-jp59-783m", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34515|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-m5qp-6w8w-w647", "level": "warning", "message": {"text": "aiohttp: GHSA-m5qp-6w8w-w647"}, "properties": {"repobilityId": 103217, "scanner": "osv-scanner", "fingerprint": "1d46f19702f090bf7866a2e5fa449476009cab6e614e12370a93ef0d9ce5f74a", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34516"], "package": "aiohttp", "rule_id": "GHSA-m5qp-6w8w-w647", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34516|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-jg22-mg44-37j8", "level": "warning", "message": {"text": "aiohttp: GHSA-jg22-mg44-37j8"}, "properties": {"repobilityId": 103216, "scanner": "osv-scanner", "fingerprint": "bb971f373dd7f2acff955adba1f92b12c942492a97f08458a8dadaa7c18e93e6", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34993"], "package": "aiohttp", "rule_id": "GHSA-jg22-mg44-37j8", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34993|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-hg6j-4rv6-33pg", "level": "warning", "message": {"text": "aiohttp: GHSA-hg6j-4rv6-33pg"}, "properties": {"repobilityId": 103215, "scanner": "osv-scanner", "fingerprint": "24ce5e6eaf33a3edf2b03cfe1c286736bc081473f99e56bf36436aa03b363f3d", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-47265"], "package": "aiohttp", "rule_id": "GHSA-hg6j-4rv6-33pg", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-47265|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-c427-h43c-vf67", "level": "warning", "message": {"text": "aiohttp: GHSA-c427-h43c-vf67"}, "properties": {"repobilityId": 103213, "scanner": "osv-scanner", "fingerprint": "f91fa8d4fd30e8097ef30bb8d908a38372ec87756091b175dec721c8c7020a36", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34525"], "package": "aiohttp", "rule_id": "GHSA-c427-h43c-vf67", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34525|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-r73j-pqj5-w3x7", "level": "warning", "message": {"text": "pillow: GHSA-r73j-pqj5-w3x7"}, "properties": {"repobilityId": 103207, "scanner": "osv-scanner", "fingerprint": "2d968015b9f586005b40b03e00f6a5450f00049b67bb47791a9e397bd9744553", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["BIT-pillow-2026-42310", "CVE-2026-42310"], "package": "pillow", "rule_id": "GHSA-r73j-pqj5-w3x7", "scanner": "osv-scanner", "correlation_key": "vuln|pillow|CVE-2026-42310|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-5xmw-vc9v-4wf2", "level": "warning", "message": {"text": "pillow: GHSA-5xmw-vc9v-4wf2"}, "properties": {"repobilityId": 103205, "scanner": "osv-scanner", "fingerprint": "4bdb08c4c88a89067d5be233bc7f2f295179211bf5d74731d4faf7e38a58b919", "category": "dependency", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["BIT-pillow-2026-42309", "CVE-2026-42309"], "package": "pillow", "rule_id": "GHSA-5xmw-vc9v-4wf2", "scanner": "osv-scanner", "correlation_key": "vuln|pillow|CVE-2026-42309|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 103200, "scanner": "repobility-docker", "fingerprint": "79ec17e494e4e1286d3c2eb2cfb7c6adf22082f9a6a6660bc2d17702466bcefc", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "ubuntu:24.04", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|79ec17e494e4e1286d3c2eb2cfb7c6adf22082f9a6a6660bc2d17702466bcefc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 34}}}]}, {"ruleId": "SEC034", "level": "warning", "message": {"text": "[SEC034] Log Injection / Log Forging \u2014 unsanitized user input in log: User input is logged without sanitizing newlines or control characters. Attackers inject `\\n` to forge fake log entries, hide tracks, or exploit downstream log parsers (SIEM, splunk). Combined with template injection this can escalate to RCE (CVE-2021-44228 log4shell). CWE-117."}, "properties": {"repobilityId": 103195, "scanner": "repobility-threat-engine", "fingerprint": "37d9e451bdbc1a6b7bc27d57f597960dc55e73ce5b39dd513d3713d768efeb92", "category": "log_injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "logger.info(f\"use_tool: caller_id={caller}, tool={function_name}, args={args", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC034", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|37d9e451bdbc1a6b7bc27d57f597960dc55e73ce5b39dd513d3713d768efeb92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/core.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 103194, "scanner": "repobility-threat-engine", "fingerprint": "cc8785caeb2fc0045227336885db9dfd0ae1dd398b3c1730c65c187c4833afc8", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cc8785caeb2fc0045227336885db9dfd0ae1dd398b3c1730c65c187c4833afc8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/ormService.py"}, "region": {"startLine": 73}}}]}, {"ruleId": "ERR001", "level": "warning", "message": {"text": "[ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level."}, "properties": {"repobilityId": 103193, "scanner": "repobility-threat-engine", "fingerprint": "376ffc52c2c318cab72f19579023813c3dbb80cbc49226b12fe93228a444d610", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "except Exception:\n                    pass", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|376ffc52c2c318cab72f19579023813c3dbb80cbc49226b12fe93228a444d610"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/driver/tspDriver.py"}, "region": {"startLine": 107}}}]}, {"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": 103192, "scanner": "repobility-threat-engine", "fingerprint": "ef1a930088db22c4dc65f7634df3077ccdd759786706c498243cc75db387edc1", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "def check_match(self, request: llmApiUtil.OpenAIRequest) -> bool:\n        raise NotImplementedError", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC127", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ef1a930088db22c4dc65f7634df3077ccdd759786706c498243cc75db387edc1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/llmService/llmRequestRules.py"}, "region": {"startLine": 21}}}]}, {"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": 103191, "scanner": "repobility-threat-engine", "fingerprint": "1ac35856c18b26f61ab1bd3f812b27dbcb3d0ab606a8fa7fa0b83fbcb04c5f48", "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_task_turn(self, task: GtScheculeTask, synced_count: int) -> None:\n        raise NotImplement", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC127", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1ac35856c18b26f61ab1bd3f812b27dbcb3d0ab606a8fa7fa0b83fbcb04c5f48"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/driver/base.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "SEC136", "level": "warning", "message": {"text": "[SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws \u2014 wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated."}, "properties": {"repobilityId": 103190, "scanner": "repobility-threat-engine", "fingerprint": "880c4cdb1a810457c38a9ac00884b3b957bb74b983fd04b478e8771e3feae08c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n            data = json.loads(result_json)\n        except Exception:\n            return False", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|880c4cdb1a810457c38a9ac00884b3b957bb74b983fd04b478e8771e3feae08c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/model/dbModel/gtAgentHistory.py"}, "region": {"startLine": 121}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `_check_quarantine_on_executables` has cognitive complexity 19 (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=2, except=1, for=3, if=5, nested_bonus=8."}, "properties": {"repobilityId": 103159, "scanner": "repobility-threat-engine", "fingerprint": "4228491e74a2cec01e27732fe2dff5214b76005b3a57b92bd59990d50ea9242d", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 19 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "_check_quarantine_on_executables", "breakdown": {"if": 5, "for": 3, "except": 1, "continue": 2, "nested_bonus": 8}, "complexity": 19, "correlation_key": "fp|4228491e74a2cec01e27732fe2dff5214b76005b3a57b92bd59990d50ea9242d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_mac.py"}, "region": {"startLine": 117}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `_find_inner_light_regions` has cognitive complexity 24 (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=7, if=4, nested_bonus=12, while=1."}, "properties": {"repobilityId": 103157, "scanner": "repobility-threat-engine", "fingerprint": "85a1543938a15e22d7d549fbc8cf8416dee0b649c0ed56f668557a33dd6dd52e", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 24 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "_find_inner_light_regions", "breakdown": {"if": 4, "for": 7, "while": 1, "nested_bonus": 12}, "complexity": 24, "correlation_key": "fp|85a1543938a15e22d7d549fbc8cf8416dee0b649c0ed56f668557a33dd6dd52e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "assets/icon_archive/2026-04-13-wolf-icon/build_icon.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "AGT015", "level": "warning", "message": {"text": "Remote install command pipes network code directly to a shell"}, "properties": {"repobilityId": 103152, "scanner": "repobility-agent-runtime", "fingerprint": "cb0910ef4eef74ec476eda282c8846061ff5561d08f878f5164779736cf462c7", "category": "dependency", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File contains a remote download piped directly to a shell without visible checksum or signature verification.", "evidence": {"rule_id": "AGT015", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|cb0910ef4eef74ec476eda282c8846061ff5561d08f878f5164779736cf462c7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 86}}}]}, {"ruleId": "DEPCUR-PY", "level": "warning", "message": {"text": "Python package `mypy` is 1 major version(s) behind (1.8.0 -> 2.1.0)"}, "properties": {"repobilityId": 103151, "scanner": "repobility-dependency-currency", "fingerprint": "5127b0ffc0ed568d92037ba1fa8e60062ac0108a8255453b9e685df0634efd20", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "mypy", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "2.1.0", "correlation_key": "fp|5127b0ffc0ed568d92037ba1fa8e60062ac0108a8255453b9e685df0634efd20", "current_version": "1.8.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 18}}}]}, {"ruleId": "DEPCUR-PY", "level": "warning", "message": {"text": "Python package `types-peewee` is 1 major version(s) behind (3.19.0.20260109 -> 4.0.5.20260518)"}, "properties": {"repobilityId": 103150, "scanner": "repobility-dependency-currency", "fingerprint": "511e522fae7b11c1c5bdbe9b0ecf46df8da0de57254afeca1b0be85c64aa2957", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "types-peewee", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "4.0.5.20260518", "correlation_key": "fp|511e522fae7b11c1c5bdbe9b0ecf46df8da0de57254afeca1b0be85c64aa2957", "current_version": "3.19.0.20260109"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 17}}}]}, {"ruleId": "DEPCUR-PY", "level": "warning", "message": {"text": "Python package `peewee-async` is 1 major version(s) behind (1.2.1 -> 2.0.0)"}, "properties": {"repobilityId": 103149, "scanner": "repobility-dependency-currency", "fingerprint": "d21718adb0c8913b4184f9ab617abb8abfa51a47a2b1b6d2de4c5521a0290887", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "peewee-async", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "2.0.0", "correlation_key": "fp|d21718adb0c8913b4184f9ab617abb8abfa51a47a2b1b6d2de4c5521a0290887", "current_version": "1.2.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 9}}}]}, {"ruleId": "DEPCUR-PY", "level": "warning", "message": {"text": "Python package `peewee` is 1 major version(s) behind (3.19.0 -> 4.0.6)"}, "properties": {"repobilityId": 103148, "scanner": "repobility-dependency-currency", "fingerprint": "45ee514658295b4bd805cb5e05a41d37e32540bc391c7eca2c310921fdd90a29", "category": "dependency", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "1 major version(s) behind", "signal": "currency", "cwe_ids": [], "package": "peewee", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "4.0.6", "correlation_key": "fp|45ee514658295b4bd805cb5e05a41d37e32540bc391c7eca2c310921fdd90a29", "current_version": "3.19.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103134, "scanner": "repobility-ast-engine", "fingerprint": "441373199b6832947f716b19941cec1115a0cd5cb2f208e2da3f1ed4fc1363c5", "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|441373199b6832947f716b19941cec1115a0cd5cb2f208e2da3f1ed4fc1363c5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/model/dbModel/gtAgentHistory.py"}, "region": {"startLine": 131}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103133, "scanner": "repobility-ast-engine", "fingerprint": "cb947e4e6988f3e6c0c1d098244b5b0c4f23d42e57a61ef94b265fc86dcd9eb6", "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|cb947e4e6988f3e6c0c1d098244b5b0c4f23d42e57a61ef94b265fc86dcd9eb6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/model/dbModel/gtAgentHistory.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103132, "scanner": "repobility-ast-engine", "fingerprint": "fe21b35c882adfb071a1ea43b81fc2430b71a73a161378241b969f866fda0dad", "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|fe21b35c882adfb071a1ea43b81fc2430b71a73a161378241b969f866fda0dad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 919}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103131, "scanner": "repobility-ast-engine", "fingerprint": "0a9806012509b1ec9657c9bbc935f65d3b574b484add2960178d390b7705c951", "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|0a9806012509b1ec9657c9bbc935f65d3b574b484add2960178d390b7705c951"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103130, "scanner": "repobility-ast-engine", "fingerprint": "e97b73feaff1ad277a49fdd81e9d1f545189f0902544e38d4aadc2235629e29d", "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|e97b73feaff1ad277a49fdd81e9d1f545189f0902544e38d4aadc2235629e29d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 914}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103129, "scanner": "repobility-ast-engine", "fingerprint": "0265cda75790c53dd95540569122e91e31ce63e151c7a47f66e015fa97347bc1", "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|0265cda75790c53dd95540569122e91e31ce63e151c7a47f66e015fa97347bc1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 852}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103128, "scanner": "repobility-ast-engine", "fingerprint": "384099a22b81a39c4aa93c1c45fa471ee9ce30376caec6c8f32fa6fbce77473a", "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|384099a22b81a39c4aa93c1c45fa471ee9ce30376caec6c8f32fa6fbce77473a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 809}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103127, "scanner": "repobility-ast-engine", "fingerprint": "f37597bc854636634bff420e81c400973658fe25da9a89baf37c25207c9e1f89", "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|f37597bc854636634bff420e81c400973658fe25da9a89baf37c25207c9e1f89"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/funcToolService/tools.py"}, "region": {"startLine": 760}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103126, "scanner": "repobility-ast-engine", "fingerprint": "85d95815c18b36694bb19e132cf8470c27c868432e198a5ef0c981e07189a11b", "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|85d95815c18b36694bb19e132cf8470c27c868432e198a5ef0c981e07189a11b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/toolRegistry.py"}, "region": {"startLine": 211}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103125, "scanner": "repobility-ast-engine", "fingerprint": "52217f5e9c10a9d0c7a6ab5c74fed32be0e0ec55957c8744624d7a67a9460347", "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|52217f5e9c10a9d0c7a6ab5c74fed32be0e0ec55957c8744624d7a67a9460347"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/toolRegistry.py"}, "region": {"startLine": 216}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103124, "scanner": "repobility-ast-engine", "fingerprint": "757166b3c46ce2c0b65e7d9ebc6546ccaf70454e8cd087d73098fbd4d097a276", "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|757166b3c46ce2c0b65e7d9ebc6546ccaf70454e8cd087d73098fbd4d097a276"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/agentTurnRunner.py"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103123, "scanner": "repobility-ast-engine", "fingerprint": "6b6490cf0c2a33c32b543dd27b05a213d19ac5a65dbf19525a184e3bbd7d2249", "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|6b6490cf0c2a33c32b543dd27b05a213d19ac5a65dbf19525a184e3bbd7d2249"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/agentTurnRunner.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103122, "scanner": "repobility-ast-engine", "fingerprint": "9e4e34c2a8b476fbc90fedce50dde76ca2f5cc778acb64749eef36b51acd15a9", "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|9e4e34c2a8b476fbc90fedce50dde76ca2f5cc778acb64749eef36b51acd15a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/util/assertUtil.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103121, "scanner": "repobility-ast-engine", "fingerprint": "86a4e4b5e6fe7d2275c97881a317809482e97053694fe9343835e1574c9fca7c", "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|86a4e4b5e6fe7d2275c97881a317809482e97053694fe9343835e1574c9fca7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/util/jsonUtil.py"}, "region": {"startLine": 275}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103118, "scanner": "repobility-ast-engine", "fingerprint": "f66d9009acb26df59504becdc4707ce407cf562e88a5720b103a802025d11d35", "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|f66d9009acb26df59504becdc4707ce407cf562e88a5720b103a802025d11d35"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/api/test_ws_controller/test.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103093, "scanner": "repobility-ast-engine", "fingerprint": "428c122de4258e8f014bc241095de7349b283a019957e513c4322085bca911ac", "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|428c122de4258e8f014bc241095de7349b283a019957e513c4322085bca911ac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mock_llm_server.py"}, "region": {"startLine": 402}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103091, "scanner": "repobility-ast-engine", "fingerprint": "3fc6562d008fcd1124693edffb12e3c517b6df3660023bdc922967faf0d6dfbc", "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|3fc6562d008fcd1124693edffb12e3c517b6df3660023bdc922967faf0d6dfbc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/base.py"}, "region": {"startLine": 225}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103090, "scanner": "repobility-ast-engine", "fingerprint": "4107f4a2088a4e55c9f7375924cb2923d7eb665e1e5d17dcc7136f930c858a9a", "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|4107f4a2088a4e55c9f7375924cb2923d7eb665e1e5d17dcc7136f930c858a9a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/base.py"}, "region": {"startLine": 537}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103089, "scanner": "repobility-ast-engine", "fingerprint": "5a09fc7c1072343e88a3668cd6bf3548a036d5d2bd57aff4f52a09100b827c0d", "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|5a09fc7c1072343e88a3668cd6bf3548a036d5d2bd57aff4f52a09100b827c0d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/base.py"}, "region": {"startLine": 300}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103088, "scanner": "repobility-ast-engine", "fingerprint": "f4e468608d92cb47466625f937bf6d3ca440f0e9ee0d811ac52ace040af56650", "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|f4e468608d92cb47466625f937bf6d3ca440f0e9ee0d811ac52ace040af56650"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/base.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103076, "scanner": "repobility-ast-engine", "fingerprint": "1a34dba10b0b15d6ad818db6052c45a42ae0741dbf3c8e29a680b8a829e934a1", "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|1a34dba10b0b15d6ad818db6052c45a42ae0741dbf3c8e29a680b8a829e934a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/commit_and_push_frondbackend.py"}, "region": {"startLine": 170}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103075, "scanner": "repobility-ast-engine", "fingerprint": "7fbb78de520f0040cc59c87df79adfb4f606d9de940d72f45817cf91b857eb25", "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|7fbb78de520f0040cc59c87df79adfb4f606d9de940d72f45817cf91b857eb25"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/check_tui_color_env.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "Bare except continues silently"}, "properties": {"repobilityId": 103074, "scanner": "repobility-ast-engine", "fingerprint": "5bce952968ffccd315ccacfea42de77491b1ae8f2d8a19e035910ff752483947", "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|5bce952968ffccd315ccacfea42de77491b1ae8f2d8a19e035910ff752483947"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/check_tui_color_env.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "GHSA-mwh4-6h8g-pg8w", "level": "note", "message": {"text": "aiohttp: GHSA-mwh4-6h8g-pg8w"}, "properties": {"repobilityId": 103218, "scanner": "osv-scanner", "fingerprint": "bb4b8f15a4da983b2c16449cc81b5e196c1f9bb1691539c4bdc105f83a7ce09c", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34519"], "package": "aiohttp", "rule_id": "GHSA-mwh4-6h8g-pg8w", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34519|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-hcc4-c3v8-rx92", "level": "note", "message": {"text": "aiohttp: GHSA-hcc4-c3v8-rx92"}, "properties": {"repobilityId": 103214, "scanner": "osv-scanner", "fingerprint": "8273eca3865030ccd27e4829bee7350f29cc50ac410a575c88447e78d3267d22", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34513"], "package": "aiohttp", "rule_id": "GHSA-hcc4-c3v8-rx92", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34513|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-966j-vmvw-g2g9", "level": "note", "message": {"text": "aiohttp: GHSA-966j-vmvw-g2g9"}, "properties": {"repobilityId": 103212, "scanner": "osv-scanner", "fingerprint": "e43c080846f61f6dda0cb5f079a29d69de970e2f8900d2a8287dba9942e441f1", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34518"], "package": "aiohttp", "rule_id": "GHSA-966j-vmvw-g2g9", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34518|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-63hf-3vf5-4wqf", "level": "note", "message": {"text": "aiohttp: GHSA-63hf-3vf5-4wqf"}, "properties": {"repobilityId": 103211, "scanner": "osv-scanner", "fingerprint": "3ab0b34981ecf41a5235be039e646cfe1206690a763295841152f0c682f83305", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34520"], "package": "aiohttp", "rule_id": "GHSA-63hf-3vf5-4wqf", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34520|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-3wq7-rqq7-wx6j", "level": "note", "message": {"text": "aiohttp: GHSA-3wq7-rqq7-wx6j"}, "properties": {"repobilityId": 103210, "scanner": "osv-scanner", "fingerprint": "6f99c6e4a836bb2ed9db7b557b0a9b7b491ee36ed73777083cdc987737a49482", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34517"], "package": "aiohttp", "rule_id": "GHSA-3wq7-rqq7-wx6j", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34517|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-2vrm-gr82-f7m5", "level": "note", "message": {"text": "aiohttp: GHSA-2vrm-gr82-f7m5"}, "properties": {"repobilityId": 103209, "scanner": "osv-scanner", "fingerprint": "5b1a500153f014efb378c7b4aa7b1bfdda536982a8543b4a01b75601a9965aab", "category": "dependency", "severity": "low", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-34514"], "package": "aiohttp", "rule_id": "GHSA-2vrm-gr82-f7m5", "scanner": "osv-scanner", "correlation_key": "vuln|aiohttp|CVE-2026-34514|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 103203, "scanner": "repobility-docker", "fingerprint": "c47fa4d3eeca60dd78ccaf05d04fe8f32170129b1a7d5aa9eda69123ac0ea819", "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": "togospace", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|c47fa4d3eeca60dd78ccaf05d04fe8f32170129b1a7d5aa9eda69123ac0ea819"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 6}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 103202, "scanner": "repobility-docker", "fingerprint": "63e9fc0468f493ecf72e7836011de5027563346c8d27498662fb311a0a8c6f29", "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": "togospace", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|63e9fc0468f493ecf72e7836011de5027563346c8d27498662fb311a0a8c6f29"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 6}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 103201, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": [".env", "id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 103199, "scanner": "repobility-docker", "fingerprint": "20c61fcd50ec05447807e895f4aff4228fe5048bd8ce6cc4402b616a77b365bc", "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|20c61fcd50ec05447807e895f4aff4228fe5048bd8ce6cc4402b616a77b365bc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 74}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 103198, "scanner": "repobility-docker", "fingerprint": "5bcb1e3925ca6a607b03b71a926633b76f5eeed1dab691b378e9ceb71c2a1665", "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|5bcb1e3925ca6a607b03b71a926633b76f5eeed1dab691b378e9ceb71c2a1665"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 50}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 103197, "scanner": "repobility-docker", "fingerprint": "cc8d630d13692041c70b0154eca0a390d76c01eedfd145c55187951efc8d550d", "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|cc8d630d13692041c70b0154eca0a390d76c01eedfd145c55187951efc8d550d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 15}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 8 (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=1, nested_bonus=2, ternary=1."}, "properties": {"repobilityId": 103158, "scanner": "repobility-threat-engine", "fingerprint": "9599d3f708114b48d3a3abde415551624f09446dd24b098d2452663db6f0e480", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 8 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 1, "for": 4, "ternary": 1, "nested_bonus": 2}, "complexity": 8, "correlation_key": "fp|9599d3f708114b48d3a3abde415551624f09446dd24b098d2452663db6f0e480"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "assets/icon_archive/2026-04-13-wolf-icon/build_icon.py"}, "region": {"startLine": 50}}}]}, {"ruleId": "DEPCUR-PY", "level": "note", "message": {"text": "Python package `PyMySQL` is minor version(s) behind (1.1.1 -> 1.2.0)"}, "properties": {"repobilityId": 103147, "scanner": "repobility-dependency-currency", "fingerprint": "794d0226ddbd8c2d0820ae7b54db4a9ec66b6a9accd3b39a7b380f3210e1f918", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "PyMySQL", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "1.2.0", "correlation_key": "fp|794d0226ddbd8c2d0820ae7b54db4a9ec66b6a9accd3b39a7b380f3210e1f918", "current_version": "1.1.1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 7}}}]}, {"ruleId": "DEPCUR-PY", "level": "note", "message": {"text": "Python package `aiosqlite` is minor version(s) behind (0.20.0 -> 0.22.1)"}, "properties": {"repobilityId": 103146, "scanner": "repobility-dependency-currency", "fingerprint": "22e704444f4fb54c525ade7e0a6fc5811599d18b4d7faeb64b30bae1cf93f3dd", "category": "dependency", "severity": "low", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"gap": "minor version(s) behind", "signal": "currency", "cwe_ids": [], "package": "aiosqlite", "scanner": "repobility-dependency-currency", "ecosystem": "pypi", "languages": ["python"], "latest_version": "0.22.1", "correlation_key": "fp|22e704444f4fb54c525ade7e0a6fc5811599d18b4d7faeb64b30bae1cf93f3dd", "current_version": "0.20.0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103058, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8af698d3d6935b9f68d5da241bded9155f6891a2cfc664ac9d9a209a5fa83b6c", "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": "tests/base.py", "duplicate_line": 538, "correlation_key": "fp|8af698d3d6935b9f68d5da241bded9155f6891a2cfc664ac9d9a209a5fa83b6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_dept_service/test.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103057, "scanner": "repobility-ai-code-hygiene", "fingerprint": "556855ba2265889b96b1d3343c5190f3b028362228f03378c73c71d139955fb2", "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": "tests/api/test_agent_controller/test.py", "duplicate_line": 18, "correlation_key": "fp|556855ba2265889b96b1d3343c5190f3b028362228f03378c73c71d139955fb2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/api/test_team_controller/test.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103056, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9d674ace74b8b919a8b2525e2514796d3220d43bb8876e7a7c462e71a7e89770", "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": "tests/api/test_init_controller/test.py", "duplicate_line": 11, "correlation_key": "fp|9d674ace74b8b919a8b2525e2514796d3220d43bb8876e7a7c462e71a7e89770"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/api/test_system_controller/test.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103055, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cac59fa885a46b05fb3bffde15a7161bfd8cefd404cfee3845642e3e33f425ab", "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": "tests/api/test_init_controller/test.py", "duplicate_line": 11, "correlation_key": "fp|cac59fa885a46b05fb3bffde15a7161bfd8cefd404cfee3845642e3e33f425ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/api/test_llm_service_controller/test.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 103054, "scanner": "repobility-ai-code-hygiene", "fingerprint": "681ed4e98108512244d53d43791b4046f0327eeb7c053dcafb6ea4d8ca0f2fab", "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": "src/controller/teamController.py", "duplicate_line": 23, "correlation_key": "fp|681ed4e98108512244d53d43791b4046f0327eeb7c053dcafb6ea4d8ca0f2fab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/presetService.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "CORE_NO_LICENSE", "level": "note", "message": {"text": "No LICENSE file"}, "properties": {"repobilityId": 103053, "scanner": "repobility-core", "fingerprint": "9314e9238cd99885865b92490d1aaa96ca62b1390c9377878d5f3d99227e1c3c", "category": "documentation", "severity": "low", "confidence": null, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"rule_id": "CORE_NO_LICENSE", "scanner": "repobility-core", "correlation_key": "repo|documentation|core_no_license"}}}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 103189, "scanner": "repobility-threat-engine", "fingerprint": "3c56b85f9b0843ee6cd0896f3a23e9c9a99b068f97f5296cff201749d2cffd98", "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|3c56b85f9b0843ee6cd0896f3a23e9c9a99b068f97f5296cff201749d2cffd98"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentActivityService.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 103188, "scanner": "repobility-threat-engine", "fingerprint": "9ec60957d2fd09c592fa76fca66487251c5b08568ebf1eda8260552e39cace65", "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|9ec60957d2fd09c592fa76fca66487251c5b08568ebf1eda8260552e39cace65"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/model/coreModel/gtCoreChatModel.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED062", "level": "none", "message": {"text": "[MINED062] Python Dataclass No Fields: @dataclass over an empty class \u2014 unfinished model."}, "properties": {"repobilityId": 103187, "scanner": "repobility-threat-engine", "fingerprint": "6d01c3219fd52928e5b81c180314484e5533fa828cd75fca0643f335c16406ea", "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|6d01c3219fd52928e5b81c180314484e5533fa828cd75fca0643f335c16406ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/model/coreModel/gtCoreAgentEvent.py"}, "region": {"startLine": 4}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 103186, "scanner": "repobility-threat-engine", "fingerprint": "b0ec4c90b8c846831680e70a858b3c0ec409677b612f27bc2785f00f5b6da9c3", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b0ec4c90b8c846831680e70a858b3c0ec409677b612f27bc2785f00f5b6da9c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/db.py"}, "region": {"startLine": 293}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 103182, "scanner": "repobility-threat-engine", "fingerprint": "deede2eb215d875636a96303401dd81bf1c025789980c14394da92c4eaa2dcca", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "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|deede2eb215d875636a96303401dd81bf1c025789980c14394da92c4eaa2dcca", "aggregated_count": 1}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 103181, "scanner": "repobility-threat-engine", "fingerprint": "9744471a7883772884a04364712b6be50634a6338007111cb74e30f0e7df284d", "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|9744471a7883772884a04364712b6be50634a6338007111cb74e30f0e7df284d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 170}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 103180, "scanner": "repobility-threat-engine", "fingerprint": "51c901940ba9fa87a21c2309d63237096a07192e378cf4ea31d018eaee455da3", "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|51c901940ba9fa87a21c2309d63237096a07192e378cf4ea31d018eaee455da3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/settingController.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 103179, "scanner": "repobility-threat-engine", "fingerprint": "f18fec709de37613f311959ce92d8109d1c47f237b45da4a817075214e092cf2", "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|f18fec709de37613f311959ce92d8109d1c47f237b45da4a817075214e092cf2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/initController.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "properties": {"repobilityId": 103176, "scanner": "repobility-threat-engine", "fingerprint": "65bcd7f326bc59f8b4437e46d4ab6a55a7a5b15fd03b0952dee24ac035ca5b3d", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"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|65bcd7f326bc59f8b4437e46d4ab6a55a7a5b15fd03b0952dee24ac035ca5b3d", "aggregated_count": 5}}}, {"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": 103175, "scanner": "repobility-threat-engine", "fingerprint": "defc02ba72e68864c66c80791ea852428adf3216d690a1ac0ec656f02234bf0d", "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|defc02ba72e68864c66c80791ea852428adf3216d690a1ac0ec656f02234bf0d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/driver/base.py"}, "region": {"startLine": 88}}}]}, {"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": 103174, "scanner": "repobility-threat-engine", "fingerprint": "26e9798cf170f543d16beed39dad0d4f0da81585522d26835f03b93056e14ea5", "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|26e9798cf170f543d16beed39dad0d4f0da81585522d26835f03b93056e14ea5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/constants.py"}, "region": {"startLine": 23}}}]}, {"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": 103173, "scanner": "repobility-threat-engine", "fingerprint": "7757154842a9f404b8d6db157d2e4e939533042780546f652936e701416edd2e", "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|7757154842a9f404b8d6db157d2e4e939533042780546f652936e701416edd2e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/backend_main.py"}, "region": {"startLine": 72}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 103172, "scanner": "repobility-threat-engine", "fingerprint": "bd632c4ade7e75e1a901d5e2da5e3e85b36e57e91ccdfbe5098de1738a5edc96", "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": "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|bd632c4ade7e75e1a901d5e2da5e3e85b36e57e91ccdfbe5098de1738a5edc96", "aggregated_count": 3}}}, {"ruleId": "MINED063", "level": "none", "message": {"text": "[MINED063] Toctou Os Path Exists: if os.path.exists(p): open(p) \u2014 file can be replaced/deleted between check and use."}, "properties": {"repobilityId": 103168, "scanner": "repobility-threat-engine", "fingerprint": "4d353aed32755984dc450ba27e03f0c00e66c5e5d615d2a226365b49dfe8d571", "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": "toctou-os-path-exists", "owasp": null, "cwe_ids": ["CWE-367"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348048+00:00", "triaged_in_corpus": 12, "observations_count": 90754, "ai_coder_pattern_id": 41}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4d353aed32755984dc450ba27e03f0c00e66c5e5d615d2a226365b49dfe8d571"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/appEntry.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 103167, "scanner": "repobility-threat-engine", "fingerprint": "c1bae4db0e980651d2c037c0b59b09bca7cd4796eb84eee1f199e5b157c55cac", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "logger.warning(\"token \u4f30\u7b97\u5931\u8d25\uff0c\u56de\u9000\u5230\u5b57\u7b26\u4f30\u7b97: error=%s\", e)", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|7|logger.warning token : error s e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/compact.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 103166, "scanner": "repobility-threat-engine", "fingerprint": "db7f69abfa42bb6c3c1600984f45b15c7641b8df2b9fb02d0a68e4fae906f888", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "logger.warning(\"[ws] Auth failed: wrong token\")", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|6|logger.warning ws auth failed: wrong token"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/wsController.py"}, "region": {"startLine": 65}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 103165, "scanner": "repobility-threat-engine", "fingerprint": "4a21974e28d219bfe9466df3921e1c13c9d5ba2150fa38977b2c4feeb208b2ea", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "print(f\"   \u8bf7\u590d\u5236 build_config.json.example \u4e3a build_config.json \u5e76\u586b\u5199\u914d\u7f6e\")", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|scripts/build_release.py|8|print f build_config.json.example build_config.json"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_release.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "MINED077", "level": "none", "message": {"text": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles."}, "properties": {"repobilityId": 103164, "scanner": "repobility-threat-engine", "fingerprint": "486078e024965736eadbd66cfdf5d456ccd770ed2478b283b1e4e18384c4542f", "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-open-no-context", "owasp": null, "cwe_ids": ["CWE-772"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348081+00:00", "triaged_in_corpus": 12, "observations_count": 7864, "ai_coder_pattern_id": 123}, "scanner": "repobility-threat-engine", "correlation_key": "fp|486078e024965736eadbd66cfdf5d456ccd770ed2478b283b1e4e18384c4542f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_release.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED077", "level": "none", "message": {"text": "[MINED077] Python Open No Context: fp = open(path) outside with-block leaks file handles."}, "properties": {"repobilityId": 103163, "scanner": "repobility-threat-engine", "fingerprint": "9dbeb52658c3a189e0ba02dbe84627c861c21d183ccc6ca22be4043da5759fef", "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-open-no-context", "owasp": null, "cwe_ids": ["CWE-772"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348081+00:00", "triaged_in_corpus": 12, "observations_count": 7864, "ai_coder_pattern_id": 123}, "scanner": "repobility-threat-engine", "correlation_key": "fp|9dbeb52658c3a189e0ba02dbe84627c861c21d183ccc6ca22be4043da5759fef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_mac.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 46 more): Same pattern found in 46 additional files. Review if needed."}, "properties": {"repobilityId": 103160, "scanner": "repobility-threat-engine", "fingerprint": "c44279f9af9ce201dbd5b62333c3fc8e432cf9c0649e68a1e7b8c3a3ea4fb9f8", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 46 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "_find_inner_light_regions", "breakdown": {"if": 4, "for": 7, "while": 1, "nested_bonus": 12}, "aggregated": true, "complexity": 24, "correlation_key": "fp|c44279f9af9ce201dbd5b62333c3fc8e432cf9c0649e68a1e7b8c3a3ea4fb9f8", "aggregated_count": 46}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 12 more): Same pattern found in 12 additional files. Review if needed."}, "properties": {"repobilityId": 103156, "scanner": "repobility-threat-engine", "fingerprint": "35d41502c55718b81c5fe3436dbe7401b9ee358792f943c3512a16b5dc3c0ffa", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 12 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 12 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|35d41502c55718b81c5fe3436dbe7401b9ee358792f943c3512a16b5dc3c0ffa"}}}, {"ruleId": "GHSA-fqwm-6jpj-5wxc", "level": "error", "message": {"text": "tornado: GHSA-fqwm-6jpj-5wxc"}, "properties": {"repobilityId": 103231, "scanner": "osv-scanner", "fingerprint": "af2e20126bdbb75ae68b93d99f812c7843f592309344fa27c57e71ff8a3cb162", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-35536"], "package": "tornado", "rule_id": "GHSA-fqwm-6jpj-5wxc", "scanner": "osv-scanner", "correlation_key": "vuln|tornado|CVE-2026-35536|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "PYSEC-2026-140", "level": "error", "message": {"text": "tornado: PYSEC-2026-140"}, "properties": {"repobilityId": 103229, "scanner": "osv-scanner", "fingerprint": "d2223ae6de5acb3b14cb143ac784a0c13b89ef1edf299d42afa0343e409e1ebd", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "", "aliases": ["CVE-2026-31958", "GHSA-qjxf-f2mg-c6mc"], "package": "tornado", "rule_id": "PYSEC-2026-140", "scanner": "osv-scanner", "correlation_key": "vuln|tornado|CVE-2026-31958|requirements.txt", "duplicate_count": 1, "duplicate_rule_ids": ["GHSA-qjxf-f2mg-c6mc", "PYSEC-2026-140"], "duplicate_scanners": ["osv-scanner"], "duplicate_fingerprints": ["6ee8f5c5cca4eade858bd8f812a3b3f70af1da6a09fbf27a52d84ef8ed853e13", "d2223ae6de5acb3b14cb143ac784a0c13b89ef1edf299d42afa0343e409e1ebd"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-xqmj-j6mv-4862", "level": "error", "message": {"text": "litellm: GHSA-xqmj-j6mv-4862"}, "properties": {"repobilityId": 103227, "scanner": "osv-scanner", "fingerprint": "d2a4df3f278b1830507dca6e8641a2b9d0fbd1dd60f43ce5bb378183a0af117f", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-42203"], "package": "litellm", "rule_id": "GHSA-xqmj-j6mv-4862", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-42203|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-wxxx-gvqv-xp7p", "level": "error", "message": {"text": "litellm: GHSA-wxxx-gvqv-xp7p"}, "properties": {"repobilityId": 103226, "scanner": "osv-scanner", "fingerprint": "7b384515ab7b82956db64f0951274bf9a4e897d1fcb0762ef87b30f5f17aa057", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-40217"], "package": "litellm", "rule_id": "GHSA-wxxx-gvqv-xp7p", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-40217|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-v4p8-mg3p-g94g", "level": "error", "message": {"text": "litellm: GHSA-v4p8-mg3p-g94g"}, "properties": {"repobilityId": 103225, "scanner": "osv-scanner", "fingerprint": "947c9908fe89b713c2c9091c29a31896d9413467a4a10a3a450172c58d5fe627", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-42271"], "package": "litellm", "rule_id": "GHSA-v4p8-mg3p-g94g", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-42271|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-69x8-hrgq-fjj8", "level": "error", "message": {"text": "litellm: GHSA-69x8-hrgq-fjj8"}, "properties": {"repobilityId": 103222, "scanner": "osv-scanner", "fingerprint": "92df3fddd864fe6c607902c3861fcf108d4951f125d0d2a40cca911a16251d9f", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "package": "litellm", "rule_id": "GHSA-69x8-hrgq-fjj8", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|GHSA-69X8-HRGQ-FJJ8|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-53mr-6c8q-9789", "level": "error", "message": {"text": "litellm: GHSA-53mr-6c8q-9789"}, "properties": {"repobilityId": 103221, "scanner": "osv-scanner", "fingerprint": "f78ad16b5effa734d947e42c48a036ce6bed64da312af33b7bf06ad0d37393e2", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-35029"], "package": "litellm", "rule_id": "GHSA-53mr-6c8q-9789", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-35029|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-whj4-6x5x-4v2j", "level": "error", "message": {"text": "pillow: GHSA-whj4-6x5x-4v2j"}, "properties": {"repobilityId": 103208, "scanner": "osv-scanner", "fingerprint": "ab9c5303f10ecea59f859c1e7a68f477494fb8f4a1f9a96d15f0c051b8af8d37", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["BIT-pillow-2026-40192", "CVE-2026-40192"], "package": "pillow", "rule_id": "GHSA-whj4-6x5x-4v2j", "scanner": "osv-scanner", "correlation_key": "vuln|pillow|CVE-2026-40192|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-pwv6-vv43-88gr", "level": "error", "message": {"text": "pillow: GHSA-pwv6-vv43-88gr"}, "properties": {"repobilityId": 103206, "scanner": "osv-scanner", "fingerprint": "448d12408dbd68671cd59b7187f414ae3afc2b14932fdc749eb5f8d71612cae9", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["BIT-pillow-2026-42311", "CVE-2026-42311"], "package": "pillow", "rule_id": "GHSA-pwv6-vv43-88gr", "scanner": "osv-scanner", "correlation_key": "vuln|pillow|CVE-2026-42311|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "PYSEC-2026-165", "level": "error", "message": {"text": "pillow: PYSEC-2026-165"}, "properties": {"repobilityId": 103204, "scanner": "osv-scanner", "fingerprint": "b2d0c00c5823d4b04eec1c4e32d586e888ddbc60fa050a2a51719fa9a4ece963", "category": "dependency", "severity": "high", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": "", "aliases": ["BIT-pillow-2026-42308", "CVE-2026-42308", "GHSA-wjx4-4jcj-g98j"], "package": "pillow", "rule_id": "PYSEC-2026-165", "scanner": "osv-scanner", "correlation_key": "vuln|pillow|CVE-2026-42308|requirements.txt", "duplicate_count": 1, "duplicate_rule_ids": ["GHSA-wjx4-4jcj-g98j", "PYSEC-2026-165"], "duplicate_scanners": ["osv-scanner"], "duplicate_fingerprints": ["61ea0d010246eb729c784dba0206c629efa749d819d6f24cbe2dd9cbd4966e99", "b2d0c00c5823d4b04eec1c4e32d586e888ddbc60fa050a2a51719fa9a4ece963"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR006", "level": "error", "message": {"text": "Dockerfile pipes a remote script into a shell"}, "properties": {"repobilityId": 103196, "scanner": "repobility-docker", "fingerprint": "b0cc11335cf6e56e12ccac3366ba5e4ab18f22d45b25cf345a8dc3cd5f2a1ae8", "category": "docker", "severity": "high", "confidence": 0.92, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "RUN instruction contains curl/wget piped into a shell.", "evidence": {"rule_id": "DKR006", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|b0cc11335cf6e56e12ccac3366ba5e4ab18f22d45b25cf345a8dc3cd5f2a1ae8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 15}}}]}, {"ruleId": "SEC004", "level": "error", "message": {"text": "[SEC004] SQL Injection Risk: String interpolation in SQL execution. Allows SQL injection."}, "properties": {"repobilityId": 103184, "scanner": "repobility-threat-engine", "fingerprint": "1e8075a1a500d688d7567f80531753984edc229afa64a028ecc54bb6b0412a55", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".execute(\n        f\"SELECT", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC004", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|src/db.py|78|sec004"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/db.py"}, "region": {"startLine": 78}}}]}, {"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": 103178, "scanner": "repobility-threat-engine", "fingerprint": "062ae63f5ac70345d06c9479ca316cf8d9f9895592a0ecf73283d1c19e0c26d3", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(c", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|062ae63f5ac70345d06c9479ca316cf8d9f9895592a0ecf73283d1c19e0c26d3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/tui_main.py"}, "region": {"startLine": 54}}}]}, {"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": 103177, "scanner": "repobility-threat-engine", "fingerprint": "048f4a0ab7a56f628b9ac236194f27d2b0a5106f498573233d0eee51bdf75997", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(c", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|048f4a0ab7a56f628b9ac236194f27d2b0a5106f498573233d0eee51bdf75997"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/initController.py"}, "region": {"startLine": 25}}}]}, {"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": 103171, "scanner": "repobility-threat-engine", "fingerprint": "6dce74c2e531cf662758e57e41a3b3fa39bff1e1f8cdd7097db08700563d1a76", "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|6dce74c2e531cf662758e57e41a3b3fa39bff1e1f8cdd7097db08700563d1a76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/service/agentService/driver/tspDriver.py"}, "region": {"startLine": 107}}}]}, {"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": 103170, "scanner": "repobility-threat-engine", "fingerprint": "bf9afcbb403f18eb0c44808bd55c3a88df754f4f251b70a5c1d7f1f2e131bc58", "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|bf9afcbb403f18eb0c44808bd55c3a88df754f4f251b70a5c1d7f1f2e131bc58"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/constants.py"}, "region": {"startLine": 22}}}]}, {"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": 103169, "scanner": "repobility-threat-engine", "fingerprint": "b2a0361cfcfccad78611001feec1c0309a67fc75c08810fc8e9c15b2dae291cf", "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|b2a0361cfcfccad78611001feec1c0309a67fc75c08810fc8e9c15b2dae291cf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/backend_main.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 103162, "scanner": "repobility-threat-engine", "fingerprint": "20978cc6e46d8c3d1523b9305f9b6e79c9291b0ef53cb8e575a925c510b5cbdd", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(r'__version__\\s*=\\s*[\"\\']([^\"\\']+)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|scripts/build_release.py|100|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_release.py"}, "region": {"startLine": 100}}}]}, {"ruleId": "SEC103", "level": "error", "message": {"text": "[SEC103] LDAP injection \u2014 non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts."}, "properties": {"repobilityId": 103161, "scanner": "repobility-threat-engine", "fingerprint": "135050e21f7e2a9b490e22229e8874a279e006422f1376386979e1ec43c2c855", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".search(r'__version__\\s*=\\s*[\"\\']([^\"\\']+)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC103", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|scripts/build_mac.py|36|sec103"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "scripts/build_mac.py"}, "region": {"startLine": 36}}}]}, {"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": 103155, "scanner": "repobility-threat-engine", "fingerprint": "0b7b766e552fa04d0d2ae8f774dcdb42429f1e0ef4bcf9e2021dfaf1e03f7fd4", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "current.update(updates)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0b7b766e552fa04d0d2ae8f774dcdb42429f1e0ef4bcf9e2021dfaf1e03f7fd4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/settingController.py"}, "region": {"startLine": 150}}}]}, {"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": 103154, "scanner": "repobility-threat-engine", "fingerprint": "69171b13d6921f5415b69598c1369e9826de46ea220e755f091fcadd8ffc1323", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "payload.update(data)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|69171b13d6921f5415b69598c1369e9826de46ea220e755f091fcadd8ffc1323"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/baseController.py"}, "region": {"startLine": 99}}}]}, {"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": 103153, "scanner": "repobility-threat-engine", "fingerprint": "05d6d01384611ee3b2a83427c73a8c652246a95a682211b17aeecd4a54cbb291", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "final.save(OUT_PNG)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|05d6d01384611ee3b2a83427c73a8c652246a95a682211b17aeecd4a54cbb291"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "assets/icon_archive/2026-04-13-wolf-icon/build_icon.py"}, "region": {"startLine": 155}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `softprops/action-gh-release` pinned to mutable ref `@v3`"}, "properties": {"repobilityId": 103145, "scanner": "repobility-supply-chain", "fingerprint": "3c4fd00fd39bbe99d7fed04bba17e90acb0e3c41d648bac4fd30998a179183e4", "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|3c4fd00fd39bbe99d7fed04bba17e90acb0e3c41d648bac4fd30998a179183e4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 221}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v5`"}, "properties": {"repobilityId": 103144, "scanner": "repobility-supply-chain", "fingerprint": "ca21cd29c80f7c72e5e25a3413b870ae120beee44ea0f1bc422711c0f8a5ed65", "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|ca21cd29c80f7c72e5e25a3413b870ae120beee44ea0f1bc422711c0f8a5ed65"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 133}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-node` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103143, "scanner": "repobility-supply-chain", "fingerprint": "7ceef483232128542d255dcc4b7c668a4a991a0ce0f6b75f1b5a12ddddea99e8", "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|7ceef483232128542d255dcc4b7c668a4a991a0ce0f6b75f1b5a12ddddea99e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 127}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103142, "scanner": "repobility-supply-chain", "fingerprint": "0dabd025a2d58e3f7b7b10a23d895b3d5a0bd4afd22c349610ec2ab8c5f38ca8", "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|0dabd025a2d58e3f7b7b10a23d895b3d5a0bd4afd22c349610ec2ab8c5f38ca8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103141, "scanner": "repobility-supply-chain", "fingerprint": "29632debb72d824412c1320fe6ac32b30450db0241bcc1aa985053c466bbe1b4", "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|29632debb72d824412c1320fe6ac32b30450db0241bcc1aa985053c466bbe1b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/release.yml"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103140, "scanner": "repobility-supply-chain", "fingerprint": "4732ad4cab5f6e69479242014b40e36ff32981610ad5c2696bdfb599fc932580", "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|4732ad4cab5f6e69479242014b40e36ff32981610ad5c2696bdfb599fc932580"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/docker.yml"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/cache` pinned to mutable ref `@v5`"}, "properties": {"repobilityId": 103139, "scanner": "repobility-supply-chain", "fingerprint": "3c4683e254faeb69155c4191eb2cb7a27c948ebfe894acd0a2865beb82d97542", "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|3c4683e254faeb69155c4191eb2cb7a27c948ebfe894acd0a2865beb82d97542"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/setup-python` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103138, "scanner": "repobility-supply-chain", "fingerprint": "11a13728d72d1576d962a078dcd4ddf392dba50c49f225cd4f59467492cbfedf", "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|11a13728d72d1576d962a078dcd4ddf392dba50c49f225cd4f59467492cbfedf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "Action `actions/checkout` pinned to mutable ref `@v6`"}, "properties": {"repobilityId": 103137, "scanner": "repobility-supply-chain", "fingerprint": "47378ebaf9efc3414af468ded8fd01ed86b4b4cf1ccb6105239b82bc0fba39d3", "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|47378ebaf9efc3414af468ded8fd01ed86b4b4cf1ccb6105239b82bc0fba39d3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/test.yml"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "Dockerfile FROM `ubuntu:24.04` not pinned by digest"}, "properties": {"repobilityId": 103136, "scanner": "repobility-supply-chain", "fingerprint": "29f35659e6fd63c9e157188b7ec9366840350f289f4db5d4741a732ce47b97b3", "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|29f35659e6fd63c9e157188b7ec9366840350f289f4db5d4741a732ce47b97b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 34}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "Dockerfile FROM `ubuntu:24.04` not pinned by digest"}, "properties": {"repobilityId": 103135, "scanner": "repobility-supply-chain", "fingerprint": "75814c6800d2024196da9dac1cc8b338d43778109945e939b654a4168a273cdd", "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|75814c6800d2024196da9dac1cc8b338d43778109945e939b654a4168a273cdd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_escalate_raises_if_db_id_not_found"}, "properties": {"repobilityId": 103117, "scanner": "repobility-ast-engine", "fingerprint": "4d21fbef8a8e797e97c479d0d1ce942933db08dae046e99ee253870e39f139ad", "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|4d21fbef8a8e797e97c479d0d1ce942933db08dae046e99ee253870e39f139ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit/service/test_room_message_store.py"}, "region": {"startLine": 195}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_request_shutdown_sets_event_directly_when_loop_not_running"}, "properties": {"repobilityId": 103116, "scanner": "repobility-ast-engine", "fingerprint": "8449287aaaa5f3772148634f4e29e862d1435ec0b1a10c58b91fb18bd4f94e00", "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|8449287aaaa5f3772148634f4e29e862d1435ec0b1a10c58b91fb18bd4f94e00"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit/backend/test_backend_main_shutdown.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_request_shutdown_uses_threadsafe_signal_when_loop_is_running"}, "properties": {"repobilityId": 103115, "scanner": "repobility-ast-engine", "fingerprint": "f24f938445a5aaa57120bd5675b22041b15bb73b62aa9754e390467b7517b579", "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|f24f938445a5aaa57120bd5675b22041b15bb73b62aa9754e390467b7517b579"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit/backend/test_backend_main_shutdown.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_request_shutdown_noop_when_main_loop_not_initialized"}, "properties": {"repobilityId": 103114, "scanner": "repobility-ast-engine", "fingerprint": "df6f07908fa31013edf2f0e772222c73bf7a74ce38edabc4bf435c8b4039ca0f", "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|df6f07908fa31013edf2f0e772222c73bf7a74ce38edabc4bf435c8b4039ca0f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/unit/backend/test_backend_main_shutdown.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_unknown_type_raises"}, "properties": {"repobilityId": 103113, "scanner": "repobility-ast-engine", "fingerprint": "1c3749cd9b30137364bb5cc6aa120d8e661360c0eb42b2cf417e1e6067694202", "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|1c3749cd9b30137364bb5cc6aa120d8e661360c0eb42b2cf417e1e6067694202"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_funcToolService/test_tool_functions.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_bare_list_raises"}, "properties": {"repobilityId": 103112, "scanner": "repobility-ast-engine", "fingerprint": "66cf59838b4c5e1f5e277d6ebd133e3678ab5d96242ea9a7b4bdb7dd992d2a26", "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|66cf59838b4c5e1f5e277d6ebd133e3678ab5d96242ea9a7b4bdb7dd992d2a26"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_funcToolService/test_tool_functions.py"}, "region": {"startLine": 103}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_start_consumer_task_triggers_consume_on_failed_agent"}, "properties": {"repobilityId": 103111, "scanner": "repobility-ast-engine", "fingerprint": "0dc41caf1a18bb1e31ecb077b4dee9bdfb7caef69b0c3a25d2d3b1a305a17947", "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|0dc41caf1a18bb1e31ecb077b4dee9bdfb7caef69b0c3a25d2d3b1a305a17947"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_agent_service/test_agent_service.py"}, "region": {"startLine": 297}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_update_activity_rejects_invalid_field"}, "properties": {"repobilityId": 103110, "scanner": "repobility-ast-engine", "fingerprint": "ee38b167a40d8a7d83495d3d7e3e18e27cc311e164902c8339a70351ad9f3868", "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|ee38b167a40d8a7d83495d3d7e3e18e27cc311e164902c8339a70351ad9f3868"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_agent_activity/test.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_agent_manager_batch_save_agents_rejects_mismatched_team_id"}, "properties": {"repobilityId": 103109, "scanner": "repobility-ast-engine", "fingerprint": "b3c63ff971610cb4a6a0dd79fdcb5cb20ebb798ccf8f26c10f5dcb2abd33d497", "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|b3c63ff971610cb4a6a0dd79fdcb5cb20ebb798ccf8f26c10f5dcb2abd33d497"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_dal_manager/test.py"}, "region": {"startLine": 282}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_add_message_rejects_non_member"}, "properties": {"repobilityId": 103108, "scanner": "repobility-ast-engine", "fingerprint": "b30b9e7a0f21692ed58e90048ab451b04b544393ac1289129412c864a5743c3f", "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|b30b9e7a0f21692ed58e90048ab451b04b544393ac1289129412c864a5743c3f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_room_service/test_chat_room_messages.py"}, "region": {"startLine": 142}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_add_message_publishes_next_agent"}, "properties": {"repobilityId": 103107, "scanner": "repobility-ast-engine", "fingerprint": "204d871febdc4246637d90a393891969f5a4a46d424756f298f16726698e7b79", "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|204d871febdc4246637d90a393891969f5a4a46d424756f298f16726698e7b79"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_room_service/test_turn_scheduling.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_start_scheduling_publishes_first_agent"}, "properties": {"repobilityId": 103106, "scanner": "repobility-ast-engine", "fingerprint": "6d8b3585fe023ec22afbce6a29cbc014e1dbbbf9b0d12ee28d46a72cfcb03973", "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|6d8b3585fe023ec22afbce6a29cbc014e1dbbbf9b0d12ee28d46a72cfcb03973"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_room_service/test_turn_scheduling.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_start_scheduling_skips_when_not_running"}, "properties": {"repobilityId": 103105, "scanner": "repobility-ast-engine", "fingerprint": "086ffea9609f6e0ac79090a86592a432e27ec1e8b062755e3e8559b2ff759e6d", "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|086ffea9609f6e0ac79090a86592a432e27ec1e8b062755e3e8559b2ff759e6d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 501}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_start_schedule_activates_rooms"}, "properties": {"repobilityId": 103104, "scanner": "repobility-ast-engine", "fingerprint": "e3a18fcce815edc9e4ab6807011e2a5376d276ecd216f55ee158f21d9cfc2fa2", "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|e3a18fcce815edc9e4ab6807011e2a5376d276ecd216f55ee158f21d9cfc2fa2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 463}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_stop_agent_task_delegates_to_agent"}, "properties": {"repobilityId": 103103, "scanner": "repobility-ast-engine", "fingerprint": "46b1b875e337bab08584fdeee3a06564d033bbecba5a87b5a9c73cf59d055a60", "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|46b1b875e337bab08584fdeee3a06564d033bbecba5a87b5a9c73cf59d055a60"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 425}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_stop_agent_task_non_existent"}, "properties": {"repobilityId": 103102, "scanner": "repobility-ast-engine", "fingerprint": "a08079587d1431952698a48c87e604c04265e7af4bd06d67e8812fc6f851ee51", "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|a08079587d1431952698a48c87e604c04265e7af4bd06d67e8812fc6f851ee51"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 420}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_on_agent_turn_general_exception"}, "properties": {"repobilityId": 103101, "scanner": "repobility-ast-engine", "fingerprint": "564521470f4beb3913603ca73eb8cecb9920137655facc7a478e35b01ccd58ee", "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|564521470f4beb3913603ca73eb8cecb9920137655facc7a478e35b01ccd58ee"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 392}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_on_agent_turn_agent_not_found"}, "properties": {"repobilityId": 103100, "scanner": "repobility-ast-engine", "fingerprint": "824d66b409b22488e97cea543aeeeed970d94db185a25624cb73dfd14706d3c9", "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|824d66b409b22488e97cea543aeeeed970d94db185a25624cb73dfd14706d3c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 364}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_stop_scheduler_team"}, "properties": {"repobilityId": 103099, "scanner": "repobility-ast-engine", "fingerprint": "fe31178e0eb9b476e6fa807c88429898e30f4a9354de86526dc05c8087740250", "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|fe31178e0eb9b476e6fa807c88429898e30f4a9354de86526dc05c8087740250"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 353}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_need_scheduling_false_skips_scheduling"}, "properties": {"repobilityId": 103098, "scanner": "repobility-ast-engine", "fingerprint": "288274e8b2dc5be23451c0f3b90ccebb8727e8053f6989d042a98693f9e742bc", "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|288274e8b2dc5be23451c0f3b90ccebb8727e8053f6989d042a98693f9e742bc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 241}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_on_agent_turn_creates_task"}, "properties": {"repobilityId": 103097, "scanner": "repobility-ast-engine", "fingerprint": "4bebe8766db25a10bb22d87a5ad48fb72c6187ad09e992a0a0e99692b6c4731e", "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|4bebe8766db25a10bb22d87a5ad48fb72c6187ad09e992a0a0e99692b6c4731e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 202}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_scheduler_runs_agent_on_turn_event"}, "properties": {"repobilityId": 103096, "scanner": "repobility-ast-engine", "fingerprint": "c0b7cf77e81905fa9225c0ecce968fedf09696ac6ac098c2679d4feff33c5f6e", "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|c0b7cf77e81905fa9225c0ecce968fedf09696ac6ac098c2679d4feff33c5f6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 89}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_scheduler_shutdown_stops_all_agent_consumer_tasks"}, "properties": {"repobilityId": 103095, "scanner": "repobility-ast-engine", "fingerprint": "68bab0c27fcbdef05575ff164766021cd80153e8a90341843e4fd9eb244121d8", "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|68bab0c27fcbdef05575ff164766021cd80153e8a90341843e4fd9eb244121d8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_scheduler_service/test.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_no_subscribers_no_error"}, "properties": {"repobilityId": 103094, "scanner": "repobility-ast-engine", "fingerprint": "7964a871e63479201a9a3bd6786a14863494d150c1900c25d0bb6025a54c7727", "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|7964a871e63479201a9a3bd6786a14863494d150c1900c25d0bb6025a54c7727"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/integration/test_message_bus/test.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "Phantom test coverage: test_db_path"}, "properties": {"repobilityId": 103087, "scanner": "repobility-ast-engine", "fingerprint": "2631a7277742ddadbb9dbc77afec9c89e6db02d185faa6bb619b2eaa7ce3e68d", "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|2631a7277742ddadbb9dbc77afec9c89e6db02d185faa6bb619b2eaa7ce3e68d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/base.py"}, "region": {"startLine": 181}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.size` used but never assigned in __init__"}, "properties": {"repobilityId": 103086, "scanner": "repobility-ast-engine", "fingerprint": "414184622aedd68f877c03f04291ee79fd8750767a10fa37f6d65c8216ff38ba", "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|414184622aedd68f877c03f04291ee79fd8750767a10fa37f6d65c8216ff38ba"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/widgets.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.refresh` used but never assigned in __init__"}, "properties": {"repobilityId": 103085, "scanner": "repobility-ast-engine", "fingerprint": "845ac8fad9c64a75f074b993acf5ed481bb7bd6d616b4202a37fdb2b22e256d0", "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|845ac8fad9c64a75f074b993acf5ed481bb7bd6d616b4202a37fdb2b22e256d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/widgets.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103084, "scanner": "repobility-ast-engine", "fingerprint": "30d421da7bea4a938e11e07af62a8e6c4b8aef4dd40dab81ff213704aa7b0f79", "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|30d421da7bea4a938e11e07af62a8e6c4b8aef4dd40dab81ff213704aa7b0f79"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 171}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103083, "scanner": "repobility-ast-engine", "fingerprint": "ff0432c26fb976e79321bdb4a5c6985174566088cbcff6e742614f355be2962b", "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|ff0432c26fb976e79321bdb4a5c6985174566088cbcff6e742614f355be2962b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103082, "scanner": "repobility-ast-engine", "fingerprint": "c32ee22dc98ca124aa2db1280decef1ebedca212e250603cba82f5aa25498e9a", "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|c32ee22dc98ca124aa2db1280decef1ebedca212e250603cba82f5aa25498e9a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 149}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103081, "scanner": "repobility-ast-engine", "fingerprint": "7cd908697b00788743a4c64af0eccc438bb8e61f8ccb9d1845696a53d12df93a", "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|7cd908697b00788743a4c64af0eccc438bb8e61f8ccb9d1845696a53d12df93a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 139}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103080, "scanner": "repobility-ast-engine", "fingerprint": "0fd3f86deb53380f7d462bb1c97f5edc60a98e18e18c212ef924ee3ebcb8e9ad", "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|0fd3f86deb53380f7d462bb1c97f5edc60a98e18e18c212ef924ee3ebcb8e9ad"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 108}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103079, "scanner": "repobility-ast-engine", "fingerprint": "02786179c74c82bc65f42053f35803bf450dc3ed760ed2fc8c5662e9b6d0bed3", "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|02786179c74c82bc65f42053f35803bf450dc3ed760ed2fc8c5662e9b6d0bed3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103078, "scanner": "repobility-ast-engine", "fingerprint": "81628a39906403bd2fbefea358fd73f96b7096d540553b0aa0d22d127d014f46", "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|81628a39906403bd2fbefea358fd73f96b7096d540553b0aa0d22d127d014f46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._get_session` used but never assigned in __init__"}, "properties": {"repobilityId": 103077, "scanner": "repobility-ast-engine", "fingerprint": "5385023631b67643e33866a0238bb320b1a933fa16b75bca70466b052083e256", "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|5385023631b67643e33866a0238bb320b1a933fa16b75bca70466b052083e256"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tui/api_client.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_set_language` used but never assigned in __init__"}, "properties": {"repobilityId": 103073, "scanner": "repobility-ast-engine", "fingerprint": "8d4cac5ec3f23bb021d15935f5800fe336e6610fb02468100b932b10d7b154ae", "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|8d4cac5ec3f23bb021d15935f5800fe336e6610fb02468100b932b10d7b154ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 181}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_set_language` used but never assigned in __init__"}, "properties": {"repobilityId": 103072, "scanner": "repobility-ast-engine", "fingerprint": "cbd7b62d214dc7e06bc4508a307f29c972162ec4cb2407047aa998eaf3e4ddb5", "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|cbd7b62d214dc7e06bc4508a307f29c972162ec4cb2407047aa998eaf3e4ddb5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 175}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_quit` used but never assigned in __init__"}, "properties": {"repobilityId": 103071, "scanner": "repobility-ast-engine", "fingerprint": "5d8a53f2fca346724d45078f5fb4c9365485f47c382fad6fafde5f6843ea3e5b", "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|5d8a53f2fca346724d45078f5fb4c9365485f47c382fad6fafde5f6843ea3e5b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 189}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_reset_data` used but never assigned in __init__"}, "properties": {"repobilityId": 103070, "scanner": "repobility-ast-engine", "fingerprint": "e7da8464933174c4b0c7f5582b3e2cf3a59c48196219209ac1f06b8a93d1c54f", "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|e7da8464933174c4b0c7f5582b3e2cf3a59c48196219209ac1f06b8a93d1c54f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 168}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_open_config_dir` used but never assigned in __init__"}, "properties": {"repobilityId": 103069, "scanner": "repobility-ast-engine", "fingerprint": "0955b2060be7197936d36264ca18eeff704d5426eb32801e49c07a4ecb5f7a4d", "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|0955b2060be7197936d36264ca18eeff704d5426eb32801e49c07a4ecb5f7a4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 167}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_open_web` used but never assigned in __init__"}, "properties": {"repobilityId": 103068, "scanner": "repobility-ast-engine", "fingerprint": "2e1a0fb5926fb696ed8e1d9e546fc7937b79a61a11a016e5102679396bbd138f", "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|2e1a0fb5926fb696ed8e1d9e546fc7937b79a61a11a016e5102679396bbd138f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._cb_status` used but never assigned in __init__"}, "properties": {"repobilityId": 103067, "scanner": "repobility-ast-engine", "fingerprint": "15e4e4ba3b6c9636f517cb71ef82d5bcc08bc06220272cc17d18c5e682bb30b1", "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|15e4e4ba3b6c9636f517cb71ef82d5bcc08bc06220272cc17d18c5e682bb30b1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/trayMenu.py"}, "region": {"startLine": 164}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.name` used but never assigned in __init__"}, "properties": {"repobilityId": 103066, "scanner": "repobility-ast-engine", "fingerprint": "10f7238e83649a35a62c22e51046d4bfdb4af0a6d9c28234d6b7f1b045bb4a23", "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|10f7238e83649a35a62c22e51046d4bfdb4af0a6d9c28234d6b7f1b045bb4a23"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/constants.py"}, "region": {"startLine": 52}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.clear_header` used but never assigned in __init__"}, "properties": {"repobilityId": 103065, "scanner": "repobility-ast-engine", "fingerprint": "0e0af33c9a0944cb8bfda3eaff88c55570590d18c33678eae58127496f380df5", "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|0e0af33c9a0944cb8bfda3eaff88c55570590d18c33678eae58127496f380df5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.clear_header` used but never assigned in __init__"}, "properties": {"repobilityId": 103064, "scanner": "repobility-ast-engine", "fingerprint": "49f9766801636a29e4f5903a8e5794ad2edc304a6460fc2b59aa9d7157e1e82f", "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|49f9766801636a29e4f5903a8e5794ad2edc304a6460fc2b59aa9d7157e1e82f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.set_header` used but never assigned in __init__"}, "properties": {"repobilityId": 103063, "scanner": "repobility-ast-engine", "fingerprint": "2e5d4b014fb39cb5d914bf832b84e42869b088f1ff8810a13f18f30a6abfc481", "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|2e5d4b014fb39cb5d914bf832b84e42869b088f1ff8810a13f18f30a6abfc481"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.set_header` used but never assigned in __init__"}, "properties": {"repobilityId": 103062, "scanner": "repobility-ast-engine", "fingerprint": "4dea4f8f9dace2f09377ca64a79d7da141cff153f07ad72418080c92e49be30e", "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|4dea4f8f9dace2f09377ca64a79d7da141cff153f07ad72418080c92e49be30e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self.set_header` used but never assigned in __init__"}, "properties": {"repobilityId": 103061, "scanner": "repobility-ast-engine", "fingerprint": "50a6f449faf1a86ee8a4e144c2640bc1f26a94e6d4a3f600350083d12fc948ac", "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|50a6f449faf1a86ee8a4e144c2640bc1f26a94e6d4a3f600350083d12fc948ac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._is_shell_path` used but never assigned in __init__"}, "properties": {"repobilityId": 103060, "scanner": "repobility-ast-engine", "fingerprint": "171561270ab5db5571714b4190ad667dfe13197003d2d474b331b3de2286cad0", "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|171561270ab5db5571714b4190ad667dfe13197003d2d474b331b3de2286cad0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "`self._is_shell_path` used but never assigned in __init__"}, "properties": {"repobilityId": 103059, "scanner": "repobility-ast-engine", "fingerprint": "4f7ed09a84a1cf50478bec96af3f78f274802945934a0ba84b426957f5840d49", "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|4f7ed09a84a1cf50478bec96af3f78f274802945934a0ba84b426957f5840d49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/route.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "GHSA-r75f-5x8p-qvmc", "level": "error", "message": {"text": "litellm: GHSA-r75f-5x8p-qvmc"}, "properties": {"repobilityId": 103224, "scanner": "osv-scanner", "fingerprint": "980de7141ad6c52f5a9682962439080b6df562a585b770ef3b6df34447f28d47", "category": "dependency", "severity": "critical", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-42208"], "package": "litellm", "rule_id": "GHSA-r75f-5x8p-qvmc", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-42208|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "GHSA-jjhc-v7c2-5hh6", "level": "error", "message": {"text": "litellm: GHSA-jjhc-v7c2-5hh6"}, "properties": {"repobilityId": 103223, "scanner": "osv-scanner", "fingerprint": "79db70e35c0ce16ee6268483a427655448bbb6d85f172bd5aa840ea12c54d54d", "category": "dependency", "severity": "critical", "confidence": 0.88, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"match": "", "aliases": ["CVE-2026-35030"], "package": "litellm", "rule_id": "GHSA-jjhc-v7c2-5hh6", "scanner": "osv-scanner", "correlation_key": "vuln|litellm|CVE-2026-35030|requirements.txt"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "MINED007", "level": "error", "message": {"text": "[MINED007] Sql String Concat: cursor.execute(f\"... {user_input} ...\") \u2014 SQL injection."}, "properties": {"repobilityId": 103185, "scanner": "repobility-threat-engine", "fingerprint": "f61fdf067a49f0feb5cce27dd3d9e8a3dfd83b53b06bda582143cfd67e94faa0", "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": "sql-string-concat", "owasp": "A03:2021", "cwe_ids": ["CWE-89"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347914+00:00", "triaged_in_corpus": 20, "observations_count": 210457, "ai_coder_pattern_id": 12}, "scanner": "repobility-threat-engine", "correlation_key": "fp|f61fdf067a49f0feb5cce27dd3d9e8a3dfd83b53b06bda582143cfd67e94faa0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/db.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 103183, "scanner": "repobility-threat-engine", "fingerprint": "6fb2193d054b698802f707082ce469662b7dc5e9613c12fbdb439a963ee46eb3", "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|6fb2193d054b698802f707082ce469662b7dc5e9613c12fbdb439a963ee46eb3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/controller/roleTemplateController.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `datetime` used but not imported"}, "properties": {"repobilityId": 103120, "scanner": "repobility-ast-engine", "fingerprint": "2eddd7b637c8d78fbd3ca096af8b1abb44ec3c77d707bd2833489bdec6dfc89a", "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|2eddd7b637c8d78fbd3ca096af8b1abb44ec3c77d707bd2833489bdec6dfc89a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "src/util/jsonUtil.py"}, "region": {"startLine": 233}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `queue` used but not imported"}, "properties": {"repobilityId": 103119, "scanner": "repobility-ast-engine", "fingerprint": "d2138081adb2386aed2f68c79fe75726619ed6a7b448a70d6042c3a0a9c77253", "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|d2138081adb2386aed2f68c79fe75726619ed6a7b448a70d6042c3a0a9c77253"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "assets/icon_archive/2026-04-13-wolf-icon/build_icon.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "Missing import: `queue` used but not imported"}, "properties": {"repobilityId": 103092, "scanner": "repobility-ast-engine", "fingerprint": "8633a7fb4d8ac8663249778b606e814f8a31f29b5cab82b1823dc58b5694eb73", "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|8633a7fb4d8ac8663249778b606e814f8a31f29b5cab82b1823dc58b5694eb73"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tests/mock_llm_server.py"}, "region": {"startLine": 239}}}]}]}]}