{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "MINED111", "name": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or ", "shortDescription": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "fullDescription": {"text": "Either narrow the exception type, log the exception with `logger.exception(...)`, or re-raise after handling."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "JRN003", "name": "Frontend API reference is not matched by discovered backend routes", "shortDescription": {"text": "Frontend API reference is not matched by discovered backend routes"}, "fullDescription": {"text": "Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore."}, "properties": {"scanner": "repobility-journey-contract", "category": "quality", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC009", "name": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function", "shortDescription": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /fi"}, "fullDescription": {"text": "Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authenticatio", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "fullDescription": {"text": "Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC001", "name": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobilit", "shortDescription": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "fullDescription": {"text": "Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.92, "cwe": "", "owasp": ""}}, {"id": "CFG006", "name": "[CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts.", "shortDescription": {"text": "[CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts."}, "fullDescription": {"text": "Add a .gitignore appropriate for your language/framework."}, "properties": {"scanner": "repobility-threat-engine", "category": "practices", "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": "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": "SEC115", "name": "[SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap \u2192 ", "shortDescription": {"text": "[SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap \u2192 memory/disk exhaustion DoS (10kb \u2192 4GB classic 'zip bomb')."}, "fullDescription": {"text": "Wrap reader with `io.LimitReader(r, MAX_BYTES)`. In Python, iterate `ZipFile.infolist()` and check each entry's `file_size`. Cap total uncompressed bytes (e.g. 100MB)."}, "properties": {"scanner": "repobility-threat-engine", "category": "resource_exhaustion", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC012", "name": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the t", "shortDescription": {"text": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory."}, "fullDescription": {"text": "Validate extracted paths with os.path.realpath() and ensure they stay within the target directory."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "COMP001", "name": "[COMP001] High cognitive complexity: Function `analyze_results` has cognitive complexity 18 (SonarSource scale). Cogniti", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `analyze_results` has cognitive complexity 18 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursi"}, "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 18."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "SEC005", "name": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.", "shortDescription": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "fullDescription": {"text": "Use subprocess with shell=False and a list of args. Never eval user input."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "SEC134", "name": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left ", "shortDescription": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets"}, "fullDescription": {"text": "Move dummy values to fixtures / seed files. In application code, require these to come from config or fail closed. Add a CI grep that rejects 'lorem ipsum' and 'example.com' outside test files."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC017", "name": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.", "shortDescription": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely"}, "fullDescription": {"text": "1) Enforce a maximum input length BEFORE sending to the API: e.g. `if len(text) > 4000: return error`. 2) Use token counting (tiktoken for OpenAI, anthropic's token counter) to enforce token-level limits. 3) Set max_tokens on the API call to cap response cost. 4) Add rate limiting per user/IP to prevent automated abuse. 5) Monitor API spend with alerts for unusual usage patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "medium", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "SEC045", "name": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a latera", "shortDescription": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use obj"}, "fullDescription": {"text": "For literal data structures: use ast.literal_eval(text) \u2014 only parses literals, raises on code.\nFor formula evaluation: use asteval or simpleeval (purpose-built sandboxes with allow-lists).\nFor Odoo: use odoo.tools.safe_eval(expr, locals_dict, mode='exec').\nIf you genuinely need to execute admin-stored code: require explicit super-admin permission AND log every execution with a stack trace."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "WEB005", "name": "robots.txt does not advertise a sitemap", "shortDescription": {"text": "robots.txt does not advertise a sitemap"}, "fullDescription": {"text": "Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC005", "name": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or sup", "shortDescription": {"text": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found."}, "fullDescription": {"text": "Add regression tests for anonymous denial, cross-user object denial, admin role limits, and super_admin-only behavior."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "low", "confidence": 0.76, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "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": "MINED050", "name": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO ", "shortDescription": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data.", "shortDescription": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "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": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED056", "name": "[MINED056] React Key As Index (and 1 more): Same pattern found in 1 additional files. Review if needed.", "shortDescription": {"text": "[MINED056] React Key As Index (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-682 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 4 more): Same pattern found in 4 additi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Validate the URL against an allowlist BEFORE fetching:\n  ALLOWED = {'images.example.com', 'cdn.example.com'}\n  host = urlparse(url).hostname\n  if host not in ALLOWED: abort(400)\nOr use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request handler.\nBlock private CIDRs explicitly: 10/8, 172.16/12, 192.168/16, 169.254/16."}, "properties": {"scanner": "repobility-threat-engine", "category": "ssrf", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional fil", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal (and 1 more): Same pattern found in 1 additional files. Review if neede", "shortDescription": {"text": "[SEC085] JS: child_process.exec with non-literal (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED054", "name": "[MINED054] Ts As Any (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[MINED054] Ts As Any (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED045", "name": "[MINED045] Ts Non Null Assertion (and 6 more): Same pattern found in 6 additional files. Review if needed.", "shortDescription": {"text": "[MINED045] Ts Non Null Assertion (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-476 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED049] Print Pii (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs (and 12 more): Same pattern found in 12 additional files. Review if needed.", "shortDescription": {"text": "[SEC020] Secret Printed to Logs (and 12 more): Same pattern found in 12 additional files. Review if needed."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED052", "name": "[MINED052] Ts Any Typed (and 29 more): Same pattern found in 29 additional files. Review if needed.", "shortDescription": {"text": "[MINED052] Ts Any Typed (and 29 more): Same pattern found in 29 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-704 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 79 more): Same pattern found in 79 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 79 more): Same pattern found in 79 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED115", "name": "[MINED115] Action `anthropics/claude-code-action` pinned to mutable ref `@v1`: `uses: anthropics/claude-code-action@v1` ", "shortDescription": {"text": "[MINED115] Action `anthropics/claude-code-action` pinned to mutable ref `@v1`: `uses: anthropics/claude-code-action@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-"}, "fullDescription": {"text": "Replace with: `uses: anthropics/claude-code-action@<40-char-sha>  # v1` and let Dependabot bump it on a scheduled cadence."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_entry_height_adequate` of class `TestGetB", "shortDescription": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_entry_height_adequate` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). T"}, "fullDescription": {"text": "Initialize `self.assertTrue = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / ex", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInt", "shortDescription": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC013", "name": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows ", "shortDescription": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "fullDescription": {"text": "Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads."}, "properties": {"scanner": "repobility-threat-engine", "category": "path_traversal", "severity": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake): Async call invoked without `await` returns", "shortDescription": {"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, ra"}, "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": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED034", "name": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.", "shortDescription": {"text": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-78 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC016", "name": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prom", "shortDescription": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input tha"}, "fullDescription": {"text": "1) Separate user content from instructions: use the 'user' role for user text and 'system' role for your instructions \u2014 never concatenate them into one string. 2) Validate and constrain: limit input length, strip control characters, and reject known injection patterns. 3) Use structured output (JSON mode / function calling) so the model returns data, not freeform actions. 4) Apply output validation: check the AI's response before acting on it. 5) Consider a prompt injection detection layer (e.g. Anthropic's constitutional AI, prompt-guard models)."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.CLAUDE_CODE_OAUTH_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.CLAUDE_CODE_OAUTH_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CLAUDE_CODE_OAUTH_TOKEN }` lets a PR from any fork e"}, "fullDescription": {"text": "Either remove the secret reference, or switch the trigger to `pull_request_target` AND ensure no fork-controlled code runs before the secret is consumed."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "critical", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED107", "name": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `", "shortDescription": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import warnings` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1511"}, "properties": {"repository": "danielmiessler/Personal_AI_Infrastructure", "repoUrl": "https://github.com/danielmiessler/Personal_AI_Infrastructure.git", "branch": "main"}, "results": [{"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154933, "scanner": "repobility-ast-engine", "fingerprint": "babb12117b8935e514d7e7a9c7028c0cb6c817246f079a0191b91ca2b4beade2", "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|babb12117b8935e514d7e7a9c7028c0cb6c817246f079a0191b91ca2b4beade2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/pack.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154932, "scanner": "repobility-ast-engine", "fingerprint": "db256cd611056784114551c7030ce9b7cd0a87352605de5eef8df2cb96c04c13", "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|db256cd611056784114551c7030ce9b7cd0a87352605de5eef8df2cb96c04c13"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Ooxml/Scripts/pack.py"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154931, "scanner": "repobility-ast-engine", "fingerprint": "67689e77964e31a71696d9cae10967a301e20e26cb4d21e903afcdbdd944937e", "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|67689e77964e31a71696d9cae10967a301e20e26cb4d21e903afcdbdd944937e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py"}, "region": {"startLine": 70}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154930, "scanner": "repobility-ast-engine", "fingerprint": "22a9d2782357652d085ec30e2b344e0c4b31ec1606b34e501cd649a8a9088fce", "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|22a9d2782357652d085ec30e2b344e0c4b31ec1606b34e501cd649a8a9088fce"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/thumbnail.py"}, "region": {"startLine": 351}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154929, "scanner": "repobility-ast-engine", "fingerprint": "f3ca427efe53e33b0814d31cc7bdb9fc4417b2089bee26b00afcd5df1e761e8e", "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|f3ca427efe53e33b0814d31cc7bdb9fc4417b2089bee26b00afcd5df1e761e8e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/thumbnail.py"}, "region": {"startLine": 144}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154928, "scanner": "repobility-ast-engine", "fingerprint": "d72cceba77b6d47ee7be750df1c282c7d8b182f70aa3d53452f9827f1aabaec2", "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|d72cceba77b6d47ee7be750df1c282c7d8b182f70aa3d53452f9827f1aabaec2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/replace.py"}, "region": {"startLine": 376}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154926, "scanner": "repobility-ast-engine", "fingerprint": "2be4e744cb34e9a4a69e0215aa05f25de150bca52194af9a4d4d9eb01d3402e3", "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|2be4e744cb34e9a4a69e0215aa05f25de150bca52194af9a4d4d9eb01d3402e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/inventory.py"}, "region": {"startLine": 601}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154925, "scanner": "repobility-ast-engine", "fingerprint": "2dc2470d9229eaaf79319f4eae416a63a560c6d788958068664d132b1cad7c4b", "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|2dc2470d9229eaaf79319f4eae416a63a560c6d788958068664d132b1cad7c4b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/inventory.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154907, "scanner": "repobility-ast-engine", "fingerprint": "ef7f650ff5097d21196e1a1e4081daffb3f8f65335fdd37f2652970b38c5b505", "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|ef7f650ff5097d21196e1a1e4081daffb3f8f65335fdd37f2652970b38c5b505"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 154}}}]}, {"ruleId": "MINED111", "level": "warning", "message": {"text": "[MINED111] Bare except continues silently: Bare `except:` (or `except Exception:`) that runs code without re-raising or logging the exception. Hides real failures and makes bugs hard to diagnose."}, "properties": {"repobilityId": 154906, "scanner": "repobility-ast-engine", "fingerprint": "ab6e0dd2d2bbe2aa5cd2cd27f32c62944726278eb6648347d0c99368af1fb22b", "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|ab6e0dd2d2bbe2aa5cd2cd27f32c62944726278eb6648347d0c99368af1fb22b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154893, "scanner": "repobility-journey-contract", "fingerprint": "7a3c04c5a2835106d6eb3bab716c636d7a78e9e63110cfb145598b527e780cf5", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/tasks", "correlation_key": "fp|7a3c04c5a2835106d6eb3bab716c636d7a78e9e63110cfb145598b527e780cf5", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 424}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154892, "scanner": "repobility-journey-contract", "fingerprint": "c0afab0d57b164936254951b6a2faad778634dc1e58c320b69fe4a98939f0646", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/haiku/summarize", "correlation_key": "fp|c0afab0d57b164936254951b6a2faad778634dc1e58c320b69fe4a98939f0646", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 334}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154891, "scanner": "repobility-journey-contract", "fingerprint": "7cf392cb0dfcf40d70c9125899a0148fa79d84a4862756ba84b1821ef04c0c58", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/activities", "correlation_key": "fp|7cf392cb0dfcf40d70c9125899a0148fa79d84a4862756ba84b1821ef04c0c58", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 283}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154890, "scanner": "repobility-journey-contract", "fingerprint": "2e97cbc65ae05a5043feb6a23028f44c4ebac65ae47e84677f745fa466ede554", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes/stats", "correlation_key": "fp|2e97cbc65ae05a5043feb6a23028f44c4ebac65ae47e84677f745fa466ede554", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 275}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154889, "scanner": "repobility-journey-contract", "fingerprint": "c7d2f0fcab0e53d19474656b380dc7b58fc0a0f3af83b8b2caa0f6a9cd865455", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes/import", "correlation_key": "fp|c7d2f0fcab0e53d19474656b380dc7b58fc0a0f3af83b8b2caa0f6a9cd865455", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 250}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154888, "scanner": "repobility-journey-contract", "fingerprint": "ac5762a947f2c0e24375a62888789e77ce9bf26c6fddce6bad4921bccdb83221", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes", "correlation_key": "fp|ac5762a947f2c0e24375a62888789e77ce9bf26c6fddce6bad4921bccdb83221", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 205}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154887, "scanner": "repobility-journey-contract", "fingerprint": "3d789292aa7938be6d52e8ec69d8991a61f2c32091585493ac45d697ddae33f8", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes", "correlation_key": "fp|3d789292aa7938be6d52e8ec69d8991a61f2c32091585493ac45d697ddae33f8", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 171}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154886, "scanner": "repobility-journey-contract", "fingerprint": "a391bde0b8dbe2fa006884590e4ca4974aeced5421edf32632720b2cd978bbd3", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes", "correlation_key": "fp|a391bde0b8dbe2fa006884590e4ca4974aeced5421edf32632720b2cd978bbd3", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 150}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154885, "scanner": "repobility-journey-contract", "fingerprint": "bc9e7168b83ac3d5efdff1265cdd7f27d343dfbb7ed45154b62118ca5a392230", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes", "correlation_key": "fp|bc9e7168b83ac3d5efdff1265cdd7f27d343dfbb7ed45154b62118ca5a392230", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 132}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154884, "scanner": "repobility-journey-contract", "fingerprint": "aec4b197605de7b008ce43747cb6c8059354d7f73409cbc92516c39649077748", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/themes", "correlation_key": "fp|aec4b197605de7b008ce43747cb6c8059354d7f73409cbc92516c39649077748", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/server/src/index.ts"}, "region": {"startLine": 109}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154883, "scanner": "repobility-journey-contract", "fingerprint": "f131c00eb27f35fde384ebd73ce2293aaf9918628b1f11a9411657c2d5459dd9", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/files/count", "correlation_key": "fp|f131c00eb27f35fde384ebd73ce2293aaf9918628b1f11a9411657c2d5459dd9", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/Components/sidebar.tsx"}, "region": {"startLine": 30}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154882, "scanner": "repobility-journey-contract", "fingerprint": "231014e58d71bc6d53555655306250a759ca9b4ba48f8735c4a84935f41b0497", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/chat", "correlation_key": "fp|231014e58d71bc6d53555655306250a759ca9b4ba48f8735c4a84935f41b0497", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/ask/page.tsx"}, "region": {"startLine": 34}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 154881, "scanner": "repobility-journey-contract", "fingerprint": "8c29a777c2519c579999ef22452e1fd42fe70396a80d84d670d0bad25c3c535d", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Same-origin /api path appears in frontend code but no discovered backend endpoint has the same route shape.", "evidence": {"rule_id": "JRN003", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "route_shape": "/api/upload", "correlation_key": "fp|8c29a777c2519c579999ef22452e1fd42fe70396a80d84d670d0bad25c3c535d", "backend_endpoint_count": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/add-file/page.tsx"}, "region": {"startLine": 67}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /files/count/route."}, "properties": {"repobilityId": 154879, "scanner": "repobility-access-control", "fingerprint": "e29c9b9f778b3864705e6bb51729a14ae5fa68f64e9cf7fb236d26b1e5213675", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation. Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"path": "/files/count/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|6|auc009", "duplicate_count": 1, "identity_targets": ["unknown"], "duplicate_rule_ids": ["AUC009"], "duplicate_scanners": ["repobility-access-control"], "duplicate_fingerprints": ["8a1e66bf0146d4f01f3303c0acb54266efdb851befb06cb79f68654200728ebe", "e29c9b9f778b3864705e6bb51729a14ae5fa68f64e9cf7fb236d26b1e5213675"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/api/files/count/route.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /upload/route."}, "properties": {"repobilityId": 154878, "scanner": "repobility-access-control", "fingerprint": "eebc1f8a52775888c1e719f7ff3a52dc09b5be2f3ba175f10bb02d1b0cce0796", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation. Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"path": "/upload/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|8|auc009", "duplicate_count": 1, "identity_targets": ["unknown"], "duplicate_rule_ids": ["AUC009"], "duplicate_scanners": ["repobility-access-control"], "duplicate_fingerprints": ["5afea4821b3c208197bd8228769478074688a5dd3fb0afb3bfef4ee2754e6224", "eebc1f8a52775888c1e719f7ff3a52dc09b5be2f3ba175f10bb02d1b0cce0796"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/api/upload/route.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /chat/route."}, "properties": {"repobilityId": 154877, "scanner": "repobility-access-control", "fingerprint": "c5a255c34a52ce71279f2beac52bdb443d8b345dd5b9fe2cfcb7f42e26a5f1e9", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/chat/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|5|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/api/chat/route.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 154876, "scanner": "repobility-access-control", "fingerprint": "b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 5, "correlation_key": "fp|b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "auth_visible_percent": 0.0}}}, {"ruleId": "AUC001", "level": "warning", "message": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "properties": {"repobilityId": 154875, "scanner": "repobility-access-control", "fingerprint": "f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10", "category": "auth", "severity": "medium", "confidence": 0.92, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["Next.js"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "CFG006", "level": "warning", "message": {"text": "[CFG006] Missing .gitignore: No .gitignore file. Risk of committing secrets and build artifacts."}, "properties": {"repobilityId": 154844, "scanner": "repobility-threat-engine", "fingerprint": "c65fc71ce58c37a0e07837c0fe294108b731c43ef16027a2f0971c757bbe9a16", "category": "practices", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "No .gitignore file found in repository root", "evidence": {"reason": "No .gitignore file found in repository root", "rule_id": "CFG006", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "repo|practices|cfg006"}}}, {"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": 154843, "scanner": "repobility-threat-engine", "fingerprint": "7257d3c2fad293dfdb33a1634741f7b9be2ffa1478356802a3f35002ed694afa", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "} catch (err) {\n      return null;\n    }", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7257d3c2fad293dfdb33a1634741f7b9be2ffa1478356802a3f35002ed694afa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/apps/client/src/composables/useRemoteAgent.ts"}, "region": {"startLine": 119}}}]}, {"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": 154838, "scanner": "repobility-threat-engine", "fingerprint": "307fedffdb64d41d3d3546a475f6a25c1119cf6d65a3914dc1834d97820a4b48", "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|307fedffdb64d41d3d3546a475f6a25c1119cf6d65a3914dc1834d97820a4b48"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "SEC115", "level": "warning", "message": {"text": "[SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap \u2192 memory/disk exhaustion DoS (10kb \u2192 4GB classic 'zip bomb')."}, "properties": {"repobilityId": 154831, "scanner": "repobility-threat-engine", "fingerprint": "016d2816293bb19894e0d14f5a3091d63a2ac1bceb5a6032c611960c223687d7", "category": "resource_exhaustion", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "zipfile.ZipFile(input_file).extractall(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC115", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|016d2816293bb19894e0d14f5a3091d63a2ac1bceb5a6032c611960c223687d7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Ooxml/Scripts/unpack.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "SEC115", "level": "warning", "message": {"text": "[SEC115] Decompression without size cap (zip/gzip bomb): Decompressing untrusted archives without a size or ratio cap \u2192 memory/disk exhaustion DoS (10kb \u2192 4GB classic 'zip bomb')."}, "properties": {"repobilityId": 154830, "scanner": "repobility-threat-engine", "fingerprint": "1045fc954b46044cf5662c32da6f174a43da84e144bd372cd300a2c160b74da6", "category": "resource_exhaustion", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "zipfile.ZipFile(input_file).extractall(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC115", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1045fc954b46044cf5662c32da6f174a43da84e144bd372cd300a2c160b74da6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/unpack.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "SEC012", "level": "warning", "message": {"text": "[SEC012] ZipSlip \u2014 Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory."}, "properties": {"repobilityId": 154829, "scanner": "repobility-threat-engine", "fingerprint": "e71f26bfed504bd8ed717656ac6c3b193a4602a4d9d798abde5f7f096301535e", "category": "path_traversal", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found Collapsed 1 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"match": ".extractall(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC012", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|path_traversal|token|17|sec012", "duplicate_count": 1, "duplicate_rule_ids": ["SEC012"], "duplicate_scanners": ["repobility-threat-engine"], "duplicate_fingerprints": ["0df4f361ff49b91a94b8d6893a6cd3a3c775c0260766850ddc38161899020cea", "e71f26bfed504bd8ed717656ac6c3b193a4602a4d9d798abde5f7f096301535e"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Docx/Ooxml/Scripts/unpack.py"}, "region": {"startLine": 17}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `analyze_results` has cognitive complexity 18 (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=5, if=6, nested_bonus=6, ternary=1."}, "properties": {"repobilityId": 154822, "scanner": "repobility-threat-engine", "fingerprint": "a18da42adbde88aafc78afea6398090e36270963c82b335abf2980a7e519782c", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 18 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "analyze_results", "breakdown": {"if": 6, "for": 5, "ternary": 1, "nested_bonus": 6}, "complexity": 18, "correlation_key": "fp|a18da42adbde88aafc78afea6398090e36270963c82b335abf2980a7e519782c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/ffuf-helper.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "SEC005", "level": "warning", "message": {"text": "[SEC005] Command Injection Risk: Unsafe shell execution or eval of user input."}, "properties": {"repobilityId": 154819, "scanner": "repobility-threat-engine", "fingerprint": "7223fc33fb74478bf5f71c636e17a0c6de044994d5dd56ecce693bcde3b8996a", "category": "injection", "severity": "medium", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "shell=True detected \u2014 verify command source is not user-controllable", "evidence": {"match": "subprocess.Popen(\n                server['cmd'],\n                shell=True", "reason": "shell=True detected \u2014 verify command source is not user-controllable", "rule_id": "SEC005", "scanner": "repobility-threat-engine", "confidence": 0.5, "correlation_key": "code|injection|token|69|sec005"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/WebappScripts/with_server.py"}, "region": {"startLine": 69}}}]}, {"ruleId": "SEC134", "level": "warning", "message": {"text": "[SEC134] AI scaffold leftover \u2014 Lorem ipsum / example.com / John Doe in code: Lorem ipsum / John Doe / example.com left in non-test code. AI agents emit these as 'reasonable defaults' when they don't know real values; the human then forgets to swap them. In production, these break demo flows, send mail to a real example.com host (it's owned by IANA), and leak that the codebase had an AI scaffolding pass."}, "properties": {"repobilityId": 154818, "scanner": "repobility-threat-engine", "fingerprint": "0b771e01aa2b30fcd73dfb4cb85ef1dcb10f0cca0c46aac7243abe88f2a1a906", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "'John Doe'", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0b771e01aa2b30fcd73dfb4cb85ef1dcb10f0cca0c46aac7243abe88f2a1a906"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/WebappExamples/static_html_automation.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "SEC017", "level": "warning", "message": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely long inputs to burn through your API credits (a single 128K-token request to GPT-4 costs ~$4, and automated attacks can drain budgets in minutes). (2) Context stuffing \u2014 oversized inputs can push your system prompt out of the context window, effectively disab"}, "properties": {"repobilityId": 154813, "scanner": "repobility-threat-engine", "fingerprint": "5d2933ed03c793510730933cd4753134b46a76f36b6966fd3bc8828f84b91430", "category": "llm_injection", "severity": "medium", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "This file sends user input to an LLM with no visible length check or rate limit. Risks: (1) cost abuse \u2014 automated long inputs drain API budget ($4/request at 128K tokens on GPT-4), (2) context stuffing \u2014 oversized input pushes system prompt out of context window, disabling safety rules. Add input length validation before the API call.", "evidence": {"reason": "This file sends user input to an LLM with no visible length check or rate limit. Risks: (1) cost abuse \u2014 automated long inputs drain API budget ($4/request at 128K tokens on GPT-4), (2) context stuffing \u2014 oversized input pushes system prompt out of context window, disabling safety rules. Add input length validation before the API call.", "rule_id": "SEC017", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "fp|5d2933ed03c793510730933cd4753134b46a76f36b6966fd3bc8828f84b91430"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Tools/PAIAgentAdapter.ts"}, "region": {"startLine": 36}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 154798, "scanner": "repobility-threat-engine", "fingerprint": "3628ebfb283b8ac7adc69b0109b84cb1429d20ce194e29987348b2562ac7f083", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|113|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Webdesign/src/Tools/VerifyDesign.ts"}, "region": {"startLine": 113}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 154797, "scanner": "repobility-threat-engine", "fingerprint": "48fb530789c45ccc91fbd94732eb0d6713e84c259fe14e20a8c7d52f2b0e7a00", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|37|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Webdesign/src/Tools/ProcessHandoffBundle.ts"}, "region": {"startLine": 37}}}]}, {"ruleId": "SEC045", "level": "warning", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data: eval() and exec() on data \u2014 even admin-stored data \u2014 is a lateral-movement vector after any one credential compromise. Sandboxes (__builtins__ cleared) are escapable: attackers use object introspection (().__class__.__mro__[-1].__subclasses__()) to reach os.system. CWE-95 (eval injection)."}, "properties": {"repobilityId": 154796, "scanner": "repobility-threat-engine", "fingerprint": "d6cc4ce2f7072b56b096f39637a99dbf3ae534412fb10d385dabba92e763f858", "category": "injection", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".exec(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|99|sec045"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Daemon/src/Tools/SecurityFilter.ts"}, "region": {"startLine": 99}}}]}, {"ruleId": "WEB005", "level": "note", "message": {"text": "robots.txt does not advertise a sitemap"}, "properties": {"repobilityId": 154894, "scanner": "repobility-web-presence", "fingerprint": "e16f585d4057aed1cd56fc59f5b96a9a9272f1a6ceda98ea6b783a275899147d", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Discovered robots file or route lacks a Sitemap directive.", "evidence": {"rule_id": "WEB005", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://www.sitemaps.org/protocol.html"], "correlation_key": "fp|e16f585d4057aed1cd56fc59f5b96a9a9272f1a6ceda98ea6b783a275899147d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/ffuf-helper.py"}, "region": {"startLine": 1}}}]}, {"ruleId": "AUC005", "level": "note", "message": {"text": "[AUC005] No authorization-focused tests detected: No test files with common authorization, ownership, 403, admin, or super_admin assertions were found."}, "properties": {"repobilityId": 154880, "scanner": "repobility-access-control", "fingerprint": "c58bb88e6682225dc480b3036f30153044953a3d94f500396678a77324e8d30e", "category": "auth", "severity": "low", "confidence": 0.76, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["Next.js"], "correlation_key": "fp|c58bb88e6682225dc480b3036f30153044953a3d94f500396678a77324e8d30e"}}}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154874, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3e190659ccab54e5acd08b0cde2fe89fbee731c8b32f03b6c9d9ea566f272886", "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": "Packs/AudioEditor/src/Tools/Pipeline.ts", "duplicate_line": 1, "correlation_key": "fp|3e190659ccab54e5acd08b0cde2fe89fbee731c8b32f03b6c9d9ea566f272886"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/AudioEditor/Tools/Pipeline.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154873, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c93b83a3112a1cf451b7468f7185e5dc7e5db59609a32d3089f2e224b79a1d57", "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": "Packs/AudioEditor/src/Tools/Edit.ts", "duplicate_line": 1, "correlation_key": "fp|c93b83a3112a1cf451b7468f7185e5dc7e5db59609a32d3089f2e224b79a1d57"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/AudioEditor/Tools/Edit.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154872, "scanner": "repobility-ai-code-hygiene", "fingerprint": "5d79c348557ef3cf7c30fa215e66c71d314a56b0389e420e90ed3bc40ec32239", "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": "Packs/AudioEditor/src/Tools/Analyze.ts", "duplicate_line": 3, "correlation_key": "fp|5d79c348557ef3cf7c30fa215e66c71d314a56b0389e420e90ed3bc40ec32239"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/AudioEditor/Tools/Analyze.ts"}, "region": {"startLine": 31}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154871, "scanner": "repobility-ai-code-hygiene", "fingerprint": "314490d6bfa8f74b560e9da25da1e4ddaa9b5ebb04e0f7ac6230fe2a9a777715", "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": "Packs/AudioEditor/src/Tools/Polish.ts", "duplicate_line": 8, "correlation_key": "fp|314490d6bfa8f74b560e9da25da1e4ddaa9b5ebb04e0f7ac6230fe2a9a777715"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/AudioEditor/Tools/Analyze.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154870, "scanner": "repobility-ai-code-hygiene", "fingerprint": "fe2d8ccc3b4f97aae61c888355d84f8bdeb5b44288d4510c06776bfd43c05395", "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": "Packs/Security/src/Recon/Tools/EndpointDiscovery.ts", "duplicate_line": 359, "correlation_key": "fp|fe2d8ccc3b4f97aae61c888355d84f8bdeb5b44288d4510c06776bfd43c05395"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/Recon/Tools/PortScan.ts"}, "region": {"startLine": 231}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154869, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8831f8a9ac670cf452bc3e34847e73be46c23a0b6a8f4c3a32eacbd17d0e1b00", "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": "Packs/Security/src/Recon/Tools/EndpointDiscovery.ts", "duplicate_line": 359, "correlation_key": "fp|8831f8a9ac670cf452bc3e34847e73be46c23a0b6a8f4c3a32eacbd17d0e1b00"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/Recon/Tools/MassScan.ts"}, "region": {"startLine": 251}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154868, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9f71813b73d8bf7a1adae2173465ca2d39789ba8767e316c8a3fd6c57ad2779d", "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": "Packs/Security/src/AnnualReports/Tools/FetchReport.ts", "duplicate_line": 5, "correlation_key": "fp|9f71813b73d8bf7a1adae2173465ca2d39789ba8767e316c8a3fd6c57ad2779d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/AnnualReports/Tools/UpdateSources.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154867, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bcc97cbc71fe80f89645d924eb6bbe0de751b96005463b3c55831e02332f1841", "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": "Packs/Security/src/AnnualReports/Tools/FetchReport.ts", "duplicate_line": 5, "correlation_key": "fp|bcc97cbc71fe80f89645d924eb6bbe0de751b96005463b3c55831e02332f1841"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/AnnualReports/Tools/ListSources.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154866, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c6923413e647696ad4bfefeaff55ec8ca79374602ae9e5bd09dc865e5990a745", "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": "Packs/Apify/src/types/common.ts", "duplicate_line": 1, "correlation_key": "fp|c6923413e647696ad4bfefeaff55ec8ca79374602ae9e5bd09dc865e5990a745"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/types/common.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154865, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7e4a9a6a3eb1a58cbc552350b9d07efa85f7abfa45938c77b1f1e673190d3f70", "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": "Packs/Apify/src/index.ts", "duplicate_line": 1, "correlation_key": "fp|7e4a9a6a3eb1a58cbc552350b9d07efa85f7abfa45938c77b1f1e673190d3f70"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/index.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154864, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ac0caa4a6433e71cd3b0192494bfe62cabe88f1e997af5e591e6fa224dff6f47", "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": "Packs/Apify/src/actors/web/web-scraper.ts", "duplicate_line": 1, "correlation_key": "fp|ac0caa4a6433e71cd3b0192494bfe62cabe88f1e997af5e591e6fa224dff6f47"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/web/web-scraper.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154863, "scanner": "repobility-ai-code-hygiene", "fingerprint": "201cd73007265179a16f192b4253787d60670a65f0625308bd90ceffe097d017", "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": "Packs/Apify/src/actors/social-media/youtube.ts", "duplicate_line": 1, "correlation_key": "fp|201cd73007265179a16f192b4253787d60670a65f0625308bd90ceffe097d017"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/youtube.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154862, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6cf85a60fadc52ddc0116521ed91dc1ecbd73cfb17b294667c5fa2867d5fca20", "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": "Packs/Apify/src/actors/social-media/twitter.ts", "duplicate_line": 1, "correlation_key": "fp|6cf85a60fadc52ddc0116521ed91dc1ecbd73cfb17b294667c5fa2867d5fca20"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/twitter.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154861, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d277222432b67b70ef9cb128b84dabacc2778d9c09b2b329a64949839dd3a5e5", "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": "Packs/Apify/src/actors/social-media/tiktok.ts", "duplicate_line": 1, "correlation_key": "fp|d277222432b67b70ef9cb128b84dabacc2778d9c09b2b329a64949839dd3a5e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/tiktok.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154860, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b4ec5bc2292b0969b99b85c9014d8cd1d218a2e559be5531ee0ad1d83dfc9470", "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": "Packs/Apify/src/actors/social-media/linkedin.ts", "duplicate_line": 1, "correlation_key": "fp|b4ec5bc2292b0969b99b85c9014d8cd1d218a2e559be5531ee0ad1d83dfc9470"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/linkedin.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154859, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6cc80758b2323bc58c3b5bc1a81287b04a7b91eacf3ebbc99de285a9358dfaaf", "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": "Packs/Apify/src/actors/social-media/instagram.ts", "duplicate_line": 1, "correlation_key": "fp|6cc80758b2323bc58c3b5bc1a81287b04a7b91eacf3ebbc99de285a9358dfaaf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/instagram.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154858, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c1f97e75b9149e05a1f1b1568fc97c729557d5ed11aba1c2ae35a0a12aa6b9cc", "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": "Packs/Apify/src/actors/social-media/facebook.ts", "duplicate_line": 1, "correlation_key": "fp|c1f97e75b9149e05a1f1b1568fc97c729557d5ed11aba1c2ae35a0a12aa6b9cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/social-media/facebook.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154857, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d6f51a8f0c5f2061bff4ca953780e40c6cce3e28ea6d75eb58d2757b2e694459", "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": "Packs/Apify/src/actors/ecommerce/amazon.ts", "duplicate_line": 1, "correlation_key": "fp|d6f51a8f0c5f2061bff4ca953780e40c6cce3e28ea6d75eb58d2757b2e694459"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/ecommerce/amazon.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154856, "scanner": "repobility-ai-code-hygiene", "fingerprint": "50036de634d1b6f8b47520468790f079afc28912f6e2c03405429bd135c7bf99", "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": "Packs/Apify/src/actors/business/google-maps.ts", "duplicate_line": 1, "correlation_key": "fp|50036de634d1b6f8b47520468790f079afc28912f6e2c03405429bd135c7bf99"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/actors/business/google-maps.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154855, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9f9108fe0e2980b759d5e7e866692dec26405d6f50e5ee9a92e8ea30bcb83caf", "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": "Packs/Media/src/Remotion/Tools/Theme.ts", "duplicate_line": 1, "correlation_key": "fp|9f9108fe0e2980b759d5e7e866692dec26405d6f50e5ee9a92e8ea30bcb83caf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Remotion/src/Tools/Theme.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154854, "scanner": "repobility-ai-code-hygiene", "fingerprint": "62cb5c9dbef553dda7f1ec92fe6d2cd89a08d64b0f80f51b3fce150856ef16ed", "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": "Packs/Media/src/Remotion/Tools/Render.ts", "duplicate_line": 6, "correlation_key": "fp|62cb5c9dbef553dda7f1ec92fe6d2cd89a08d64b0f80f51b3fce150856ef16ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Remotion/src/Tools/Render.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154853, "scanner": "repobility-ai-code-hygiene", "fingerprint": "73b95d29fb355065ecee8c4af4bb632c8abf964001ce53e99f017faf55c5a83d", "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": "Packs/Art/src/Tools/GeneratePrompt.ts", "duplicate_line": 1, "correlation_key": "fp|73b95d29fb355065ecee8c4af4bb632c8abf964001ce53e99f017faf55c5a83d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Tools/GeneratePrompt.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154852, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8de1403c71058552f640334b0f2de61a7f4bf7de8910c153032b75b49f6a10eb", "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": "Packs/Art/src/Tools/Generate.ts", "duplicate_line": 6, "correlation_key": "fp|8de1403c71058552f640334b0f2de61a7f4bf7de8910c153032b75b49f6a10eb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Tools/GenerateMidjourneyImage.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154851, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7689ac7e5c91c50a0ee8edd2480451f0436c38ccb200cdc65e0c995931137745", "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": "Packs/Art/src/Tools/GenerateMidjourneyImage.ts", "duplicate_line": 1, "correlation_key": "fp|7689ac7e5c91c50a0ee8edd2480451f0436c38ccb200cdc65e0c995931137745"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Tools/GenerateMidjourneyImage.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154850, "scanner": "repobility-ai-code-hygiene", "fingerprint": "219a50ae86e0171f65cb0d3bb7fdc5eb6963692f48e586451b7fd0b08b27e984", "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": "Packs/Art/src/Tools/Generate.ts", "duplicate_line": 1, "correlation_key": "fp|219a50ae86e0171f65cb0d3bb7fdc5eb6963692f48e586451b7fd0b08b27e984"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Tools/Generate.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154849, "scanner": "repobility-ai-code-hygiene", "fingerprint": "fe4cd783045b9bec7f0d6ec1ae07910516ed0a4b78df65dc34e2d9464d5fbf68", "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": "Packs/Art/src/Tools/ComposeThumbnail.ts", "duplicate_line": 1, "correlation_key": "fp|fe4cd783045b9bec7f0d6ec1ae07910516ed0a4b78df65dc34e2d9464d5fbf68"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Tools/ComposeThumbnail.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154848, "scanner": "repobility-ai-code-hygiene", "fingerprint": "46cae4b9e5769f0f1295c98bdc5e161f2f89200f50f27d3457b3d55d2fe7a66e", "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": "Packs/Art/src/Lib/midjourney-client.ts", "duplicate_line": 1, "correlation_key": "fp|46cae4b9e5769f0f1295c98bdc5e161f2f89200f50f27d3457b3d55d2fe7a66e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Lib/midjourney-client.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154847, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6c447807df348422637890bee3d4929161b168465bfa7174a4a474a8fa995a00", "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": "Packs/Art/src/Lib/discord-bot.ts", "duplicate_line": 1, "correlation_key": "fp|6c447807df348422637890bee3d4929161b168465bfa7174a4a474a8fa995a00"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Art/Lib/discord-bot.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154846, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6ad9d4d8c553e01c26450227059cdeb500112b64e151965c8ccb349c3b2daabe", "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": "Packs/Evals/src/Tools/PAIAgentAdapter.ts", "duplicate_line": 45, "correlation_key": "fp|6ad9d4d8c553e01c26450227059cdeb500112b64e151965c8ccb349c3b2daabe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Tools/ScenarioToTranscript.ts"}, "region": {"startLine": 90}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 154845, "scanner": "repobility-ai-code-hygiene", "fingerprint": "4b3cada27fa424c9d13b974b03819c4635a51ecdc322ad9d5abfd092b5dc635e", "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": "Packs/Art/src/Tools/Generate.ts", "duplicate_line": 6, "correlation_key": "fp|4b3cada27fa424c9d13b974b03819c4635a51ecdc322ad9d5abfd092b5dc635e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Art/src/Tools/GenerateMidjourneyImage.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `create_request_file` has cognitive complexity 11 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: else=2, for=1, if=4, nested_bonus=3, ternary=1."}, "properties": {"repobilityId": 154823, "scanner": "repobility-threat-engine", "fingerprint": "3c5ac2f4c927dcc4bf30a1dd83136512f5034b75163797427e4b5fa14ab66d0a", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 11 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "create_request_file", "breakdown": {"if": 4, "for": 1, "else": 2, "ternary": 1, "nested_bonus": 3}, "complexity": 11, "correlation_key": "fp|3c5ac2f4c927dcc4bf30a1dd83136512f5034b75163797427e4b5fa14ab66d0a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/ffuf-helper.py"}, "region": {"startLine": 81}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `main` has cognitive complexity 10 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: except=1, for=3, if=4, nested_bonus=2."}, "properties": {"repobilityId": 154821, "scanner": "repobility-threat-engine", "fingerprint": "1ab727883921d9c87f7daff90655863c0d47f2d168da42c3b47fae6557932fc9", "category": "quality", "severity": "low", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 10 (severity threshold for low: 8+).", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 4, "for": 3, "except": 1, "nested_bonus": 2}, "complexity": 10, "correlation_key": "fp|1ab727883921d9c87f7daff90655863c0d47f2d168da42c3b47fae6557932fc9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/WebappScripts/with_server.py"}, "region": {"startLine": 35}}}]}, {"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": 154842, "scanner": "repobility-threat-engine", "fingerprint": "e4e7acea3d062d9312e3cc14213911ceb8b0253a53a8622c078f509649a51d34", "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|e4e7acea3d062d9312e3cc14213911ceb8b0253a53a8622c078f509649a51d34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function: Function declared but body is just pass, return None, raise NotImplementedError, or TODO comment."}, "properties": {"repobilityId": 154841, "scanner": "repobility-threat-engine", "fingerprint": "fb58fcf58da819f9d3fcb7aaf9cd53b3b92d69dbed17f988020e1899dc65de31", "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|fb58fcf58da819f9d3fcb7aaf9cd53b3b92d69dbed17f988020e1899dc65de31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 87}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 154840, "scanner": "repobility-threat-engine", "fingerprint": "fca6557f2d62b19e36f1d486b6c30aa231342deb2204b82df7fb6793060bbb4f", "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|fca6557f2d62b19e36f1d486b6c30aa231342deb2204b82df7fb6793060bbb4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Releases/v2.3/.claude/Observability/MenuBarApp/ObservabilityApp.swift"}, "region": {"startLine": 272}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 154839, "scanner": "repobility-threat-engine", "fingerprint": "ef6dcb53df267a5d800ca677d32d941865745b159a315916e040eaf914784420", "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|ef6dcb53df267a5d800ca677d32d941865745b159a315916e040eaf914784420"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 37}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 154828, "scanner": "repobility-threat-engine", "fingerprint": "e3388b234273f4a2e74e16f8adc875a3f1486e18f190fcdf1616eb27c8e71c32", "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": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|e3388b234273f4a2e74e16f8adc875a3f1486e18f190fcdf1616eb27c8e71c32", "aggregated_count": 1}}}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 154827, "scanner": "repobility-threat-engine", "fingerprint": "6d1f0ef8e79ddfa7df73c141a52d42ec200cf96714c1f2072a36bbd3cc264682", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6d1f0ef8e79ddfa7df73c141a52d42ec200cf96714c1f2072a36bbd3cc264682"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/ReportTemplate/App/page.tsx"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 154826, "scanner": "repobility-threat-engine", "fingerprint": "484d80146142be5d33b33685a2347818525410453b87587c612b4c1fabd876bd", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|484d80146142be5d33b33685a2347818525410453b87587c612b4c1fabd876bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/ask/page.tsx"}, "region": {"startLine": 104}}}]}, {"ruleId": "MINED056", "level": "none", "message": {"text": "[MINED056] React Key As Index: key={index} in map() \u2014 re-renders the wrong elements on re-order."}, "properties": {"repobilityId": 154825, "scanner": "repobility-threat-engine", "fingerprint": "4415892740d302c6303210c2021577cb095e2b686d66bbf9534e9c3749e3c903", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "react-key-as-index", "owasp": null, "cwe_ids": ["CWE-682"], "languages": ["typescript", "tsx", "javascript", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348032+00:00", "triaged_in_corpus": 12, "observations_count": 299917, "ai_coder_pattern_id": 135}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4415892740d302c6303210c2021577cb095e2b686d66bbf9534e9c3749e3c903"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Telos/src/DashboardTemplate/App/add-file/page.tsx"}, "region": {"startLine": 168}}}]}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 17 more): Same pattern found in 17 additional files. Review if needed."}, "properties": {"repobilityId": 154824, "scanner": "repobility-threat-engine", "fingerprint": "d683dd7f862c53a7d1d54a33e5815dea3a351ae865bc5298119fe512b5061bcb", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 17 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "main", "breakdown": {"if": 4, "for": 3, "except": 1, "nested_bonus": 2}, "aggregated": true, "complexity": 10, "correlation_key": "fp|d683dd7f862c53a7d1d54a33e5815dea3a351ae865bc5298119fe512b5061bcb", "aggregated_count": 17}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 154817, "scanner": "repobility-threat-engine", "fingerprint": "462bb8b57887719306ec8a3cf2c050b455aeffaa9cbba6dae0ac34058459ea29", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|462bb8b57887719306ec8a3cf2c050b455aeffaa9cbba6dae0ac34058459ea29"}}}, {"ruleId": "SEC040", "level": "none", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 154811, "scanner": "repobility-threat-engine", "fingerprint": "588cbe6635e9107e3f4226ff395bb9d3b8dbc57f8977957784281db9e5f71589", "category": "xss", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|588cbe6635e9107e3f4226ff395bb9d3b8dbc57f8977957784281db9e5f71589"}}}, {"ruleId": "SEC085", "level": "none", "message": {"text": "[SEC085] JS: child_process.exec with non-literal (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 154807, "scanner": "repobility-threat-engine", "fingerprint": "4434170c810fa43bf20566276ceaa9e55e65938a7f2140721f4fd2599ad87936", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|4434170c810fa43bf20566276ceaa9e55e65938a7f2140721f4fd2599ad87936"}}}, {"ruleId": "SEC083", "level": "none", "message": {"text": "[SEC083] JS: new RegExp() with non-literal (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 154803, "scanner": "repobility-threat-engine", "fingerprint": "3e06ab91c217e2b042a5efde55b1e2c606feaa12d6ec47130f9773fbf696d7b3", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|3e06ab91c217e2b042a5efde55b1e2c606feaa12d6ec47130f9773fbf696d7b3"}}}, {"ruleId": "SEC045", "level": "none", "message": {"text": "[SEC045] eval()/exec() on stored or user-supplied data (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 154799, "scanner": "repobility-threat-engine", "fingerprint": "b031acad30223651838c72762fbf67002aa9bccea5e8d28f9a1dee5134b8d8a4", "category": "injection", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 2 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC045", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|b031acad30223651838c72762fbf67002aa9bccea5e8d28f9a1dee5134b8d8a4"}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 154795, "scanner": "repobility-threat-engine", "fingerprint": "c9d72070d1526f8b6538d9aea14953c3bb047b4369891d9f3af14bb1b52f8387", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|c9d72070d1526f8b6538d9aea14953c3bb047b4369891d9f3af14bb1b52f8387", "aggregated_count": 6}}}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 154794, "scanner": "repobility-threat-engine", "fingerprint": "1a643c97831d44b69ea5efda331d50a6e0922549732090193cc6c7bac8e9a6cc", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|1a643c97831d44b69ea5efda331d50a6e0922549732090193cc6c7bac8e9a6cc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Media/src/Remotion/Tools/Render.ts"}, "region": {"startLine": 298}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 154793, "scanner": "repobility-threat-engine", "fingerprint": "b0ff6c1356587abd870f61b383eaa1bbfe263066031b2a8bfffe4ac41dd698ff", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b0ff6c1356587abd870f61b383eaa1bbfe263066031b2a8bfffe4ac41dd698ff"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Tools/SuiteManager.ts"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED054", "level": "none", "message": {"text": "[MINED054] Ts As Any: Casting to any (as any) bypasses type checking entirely."}, "properties": {"repobilityId": 154792, "scanner": "repobility-threat-engine", "fingerprint": "6cfe647bd5f2da465d4a72d2590de266d03d878f10705aeaf8253c37588aa02c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-as-any", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348028+00:00", "triaged_in_corpus": 12, "observations_count": 341218, "ai_coder_pattern_id": 98}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6cfe647bd5f2da465d4a72d2590de266d03d878f10705aeaf8253c37588aa02c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/AudioEditor/src/Tools/Polish.ts"}, "region": {"startLine": 109}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 154791, "scanner": "repobility-threat-engine", "fingerprint": "8ef4fc4a1d1afa020d5157bc26f8e97b25b84982c476e0fc9fc2b462b5f52536", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 6 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|8ef4fc4a1d1afa020d5157bc26f8e97b25b84982c476e0fc9fc2b462b5f52536", "aggregated_count": 6}}}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 154790, "scanner": "repobility-threat-engine", "fingerprint": "477cfbe7b61cbdbb5a60cd4cb19f6ef7be1b15d1601eceec1379659b9322e61b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|477cfbe7b61cbdbb5a60cd4cb19f6ef7be1b15d1601eceec1379659b9322e61b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Prompting/src/Templates/Tools/ValidateTemplate.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 154789, "scanner": "repobility-threat-engine", "fingerprint": "0c83f7660837592c5f6e38c48961f74d1b25cb970d911d25f04be15af0d5da6c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|0c83f7660837592c5f6e38c48961f74d1b25cb970d911d25f04be15af0d5da6c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Graders/CodeBased/StateCheck.ts"}, "region": {"startLine": 146}}}]}, {"ruleId": "MINED045", "level": "none", "message": {"text": "[MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError if wrong."}, "properties": {"repobilityId": 154788, "scanner": "repobility-threat-engine", "fingerprint": "3809db23b5fac0909936d4307030433a06230a4d453e42e24263aea098aed941", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-non-null-assertion", "owasp": null, "cwe_ids": ["CWE-476"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348005+00:00", "triaged_in_corpus": 12, "observations_count": 1810954, "ai_coder_pattern_id": 105}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3809db23b5fac0909936d4307030433a06230a4d453e42e24263aea098aed941"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Art/src/Tools/FillFrame.ts"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 154787, "scanner": "repobility-threat-engine", "fingerprint": "2dbc83d54d7c26536309768fea7244b28f63eb48dd7b78fd5d1771cbe65580c9", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 4 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|2dbc83d54d7c26536309768fea7244b28f63eb48dd7b78fd5d1771cbe65580c9", "aggregated_count": 4}}}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 154786, "scanner": "repobility-threat-engine", "fingerprint": "24aee6649d6e0565f07adf5c6a973eaf776a5ef84f359c1cfbcc999904819612", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|24aee6649d6e0565f07adf5c6a973eaf776a5ef84f359c1cfbcc999904819612"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Scraping/src/Apify/examples/comparison-test.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 154785, "scanner": "repobility-threat-engine", "fingerprint": "3160d16ed49e2961ccb57451849c715e8b8ffefea97c3beed5f0ce5d6bcebca2", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|3160d16ed49e2961ccb57451849c715e8b8ffefea97c3beed5f0ce5d6bcebca2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/skills/get-user-tweets.ts"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 154784, "scanner": "repobility-threat-engine", "fingerprint": "eeb849eaacd211bc0e413b10d9f456381b3bb3ff9947f061bc4f106fc6764c2c", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "print-pii", "owasp": "A09:2021", "cwe_ids": ["CWE-532"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348015+00:00", "triaged_in_corpus": 12, "observations_count": 676566, "ai_coder_pattern_id": 26}, "scanner": "repobility-threat-engine", "correlation_key": "fp|eeb849eaacd211bc0e413b10d9f456381b3bb3ff9947f061bc4f106fc6764c2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/examples/comparison-test.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 12 more): Same pattern found in 12 additional files. Review if needed."}, "properties": {"repobilityId": 154783, "scanner": "repobility-threat-engine", "fingerprint": "2d84c1fa3f1809d4801d0089e312602767abb0ae8515fefce419706fac4cac74", "category": "credential_exposure", "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": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|2d84c1fa3f1809d4801d0089e312602767abb0ae8515fefce419706fac4cac74"}}}, {"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": 154782, "scanner": "repobility-threat-engine", "fingerprint": "dc8d42eb85cf48c65766cb0372a8a10fb4cd67792a2f81bbdefb27eb760c9956", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.error(\"  --polish      Apply Cleanvoice cloud polish after editing (requires CLEANVOICE_API_", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|2|console.error --polish apply cleanvoice cloud polish after editing requires cleanvoice_api_"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/AudioEditor/src/Tools/Pipeline.ts"}, "region": {"startLine": 30}}}]}, {"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": 154781, "scanner": "repobility-threat-engine", "fingerprint": "e762450e5e78878bc8343c7f78ec93967e01b6c2a960f945615571e25addc311", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.log('5. Token efficiency:')", "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|10|console.log 5. token efficiency:"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/skills/get-user-tweets.ts"}, "region": {"startLine": 101}}}]}, {"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": 154780, "scanner": "repobility-threat-engine", "fingerprint": "0b83bbe70791b0e3446a8eab9a4b5475597f96c97d4e4892d304a849f9ade84b", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "console.log('  \u2192 Tool definitions loaded: ~5,000 tokens')", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|2|console.log tool definitions loaded: 5 000 tokens"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/examples/comparison-test.ts"}, "region": {"startLine": 25}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed (and 29 more): Same pattern found in 29 additional files. Review if needed."}, "properties": {"repobilityId": 154779, "scanner": "repobility-threat-engine", "fingerprint": "3808f6a38755825e7766258ff75e3bea14540b118dcfb7ac1f49a9562464335b", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 29 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|3808f6a38755825e7766258ff75e3bea14540b118dcfb7ac1f49a9562464335b", "aggregated_count": 29}}}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 154778, "scanner": "repobility-threat-engine", "fingerprint": "fe7f569850625d3a1cb6b9913dbb2c8a63513b0a424d74b2f74df2d49a9ffccc", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fe7f569850625d3a1cb6b9913dbb2c8a63513b0a424d74b2f74df2d49a9ffccc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/actors/social-media/facebook.ts"}, "region": {"startLine": 132}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 154777, "scanner": "repobility-threat-engine", "fingerprint": "ab3645eae141dd4f6d2e966278880f75241229175eba13d53ea28a79338a6978", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|ab3645eae141dd4f6d2e966278880f75241229175eba13d53ea28a79338a6978"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/actors/ecommerce/amazon.ts"}, "region": {"startLine": 162}}}]}, {"ruleId": "MINED052", "level": "none", "message": {"text": "[MINED052] Ts Any Typed: : any used as type annotation. Defeats TypeScript type safety."}, "properties": {"repobilityId": 154776, "scanner": "repobility-threat-engine", "fingerprint": "2f7ed81a3df5ce5efe079022f268a9924abf3174bb00bbae3968e38ea5704787", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ts-any-typed", "owasp": null, "cwe_ids": ["CWE-704"], "languages": ["typescript", "tsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348022+00:00", "triaged_in_corpus": 12, "observations_count": 496002, "ai_coder_pattern_id": 97}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2f7ed81a3df5ce5efe079022f268a9924abf3174bb00bbae3968e38ea5704787"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/actors/business/google-maps.ts"}, "region": {"startLine": 333}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 79 more): Same pattern found in 79 additional files. Review if needed."}, "properties": {"repobilityId": 154775, "scanner": "repobility-threat-engine", "fingerprint": "9badea7fe33b488ef199af23745bf3df7834c2c9eaf2dfef7251c6b2fc545ae0", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 79 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|9badea7fe33b488ef199af23745bf3df7834c2c9eaf2dfef7251c6b2fc545ae0", "aggregated_count": 79}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 154774, "scanner": "repobility-threat-engine", "fingerprint": "b0e912b67a08052eaf0bc5413090f59d64c61bb6062b56d5b55e63dc8d129831", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b0e912b67a08052eaf0bc5413090f59d64c61bb6062b56d5b55e63dc8d129831"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Apify/src/examples/comparison-test.ts"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 154773, "scanner": "repobility-threat-engine", "fingerprint": "b86c416572535310635666092b593aec3596e5b3e3082320c910f3b6d48e5b43", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|b86c416572535310635666092b593aec3596e5b3e3082320c910f3b6d48e5b43"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Agents/src/Tools/SpawnAgentWithProfile.ts"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger or removed."}, "properties": {"repobilityId": 154772, "scanner": "repobility-threat-engine", "fingerprint": "84506a61ba735b384c93009e2b34fa9fcccd9c4075677e90823a23d091d5397b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "js-console-log-prod", "owasp": null, "cwe_ids": ["CWE-532"], "languages": ["javascript", "typescript", "tsx", "jsx"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348003+00:00", "triaged_in_corpus": 10, "observations_count": 1940833, "ai_coder_pattern_id": 102}, "scanner": "repobility-threat-engine", "correlation_key": "fp|84506a61ba735b384c93009e2b34fa9fcccd9c4075677e90823a23d091d5397b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Agents/src/Tools/LoadAgentContext.ts"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `anthropics/claude-code-action` pinned to mutable ref `@v1`: `uses: anthropics/claude-code-action@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 154938, "scanner": "repobility-supply-chain", "fingerprint": "b3d2567d1c21836011fc2c2766f4d8faf3fcc2b6157245c9ed2e50a48f6d6f1b", "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|b3d2567d1c21836011fc2c2766f4d8faf3fcc2b6157245c9ed2e50a48f6d6f1b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude.yml"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 154937, "scanner": "repobility-supply-chain", "fingerprint": "c5b6b9b036afefa3a17af7eb6ca0693f62879b870de5b57a3e231cfc3c817b06", "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|c5b6b9b036afefa3a17af7eb6ca0693f62879b870de5b57a3e231cfc3c817b06"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude.yml"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `anthropics/claude-code-action` pinned to mutable ref `@v1`: `uses: anthropics/claude-code-action@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 154935, "scanner": "repobility-supply-chain", "fingerprint": "bbdbcc33b366ba5b8231d99ffad2f04e230b6276873ac74f183d9b273f129c71", "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|bbdbcc33b366ba5b8231d99ffad2f04e230b6276873ac74f183d9b273f129c71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude-code-review.yml"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 154934, "scanner": "repobility-supply-chain", "fingerprint": "1555811cde5aa901650edfdfae75485088ad34a27fceae0c9c1627e5626ae158", "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|1555811cde5aa901650edfdfae75485088ad34a27fceae0c9c1627e5626ae158"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude-code-review.yml"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_entry_height_adequate` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154924, "scanner": "repobility-ast-engine", "fingerprint": "5767d3bce3146240b669e31cd47f7253cdb6c787e448d587a2c2fac38adad17d", "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|5767d3bce3146240b669e31cd47f7253cdb6c787e448d587a2c2fac38adad17d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_entry_height_adequate` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154923, "scanner": "repobility-ast-engine", "fingerprint": "1ce2fd1c552817c0469cc56619f36e9f8d4b27d97272b8189e9f65f64ed92947", "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|1ce2fd1c552817c0469cc56619f36e9f8d4b27d97272b8189e9f65f64ed92947"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertFalse` used but never assigned in __init__: Method `test_entry_height_too_small` of class `TestGetBoundingBoxMessages` reads `self.assertFalse`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154922, "scanner": "repobility-ast-engine", "fingerprint": "b24d257721a73487b69ea3e0d2f793bb6cca73eca8dfc2b5f8de2b3b76387428", "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|b24d257721a73487b69ea3e0d2f793bb6cca73eca8dfc2b5f8de2b3b76387428"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_entry_height_too_small` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154921, "scanner": "repobility-ast-engine", "fingerprint": "fc3dddef1f8c3a940786f6d50eda859677d76dec82977d58ff273b28e921fa9d", "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|fc3dddef1f8c3a940786f6d50eda859677d76dec82977d58ff273b28e921fa9d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 122}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_entry_height_too_small` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154920, "scanner": "repobility-ast-engine", "fingerprint": "efb15d15d5ff7b08bf911e1a862868732b32a51b8ce6f6ba11ed64ea0ea77729", "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|efb15d15d5ff7b08bf911e1a862868732b32a51b8ce6f6ba11ed64ea0ea77729"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 120}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertFalse` used but never assigned in __init__: Method `test_different_pages_no_intersection` of class `TestGetBoundingBoxMessages` reads `self.assertFalse`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154919, "scanner": "repobility-ast-engine", "fingerprint": "5e17a4304909ff9fd2cdad2dee4a885788aafcf7bd4d76fb54a513e56dd34572", "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|5e17a4304909ff9fd2cdad2dee4a885788aafcf7bd4d76fb54a513e56dd34572"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 102}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_different_pages_no_intersection` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154918, "scanner": "repobility-ast-engine", "fingerprint": "6f7fc350f470788b41d4a09d5213f16ea3047000f23dcc9a5a174c7572572d0c", "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|6f7fc350f470788b41d4a09d5213f16ea3047000f23dcc9a5a174c7572572d0c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 101}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_different_pages_no_intersection` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154917, "scanner": "repobility-ast-engine", "fingerprint": "1d1aae5a41193bbd8699a969b4ee5fb88c87e30d441931074d90c0fc8c4d1971", "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|1d1aae5a41193bbd8699a969b4ee5fb88c87e30d441931074d90c0fc8c4d1971"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 99}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertFalse` used but never assigned in __init__: Method `test_intersection_between_different_fields` of class `TestGetBoundingBoxMessages` reads `self.assertFalse`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154916, "scanner": "repobility-ast-engine", "fingerprint": "1cc1c5158de7bc32a42efff2fd46aeb1a9480b9d19246e4f496f5cc38e1bcffb", "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|1cc1c5158de7bc32a42efff2fd46aeb1a9480b9d19246e4f496f5cc38e1bcffb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_intersection_between_different_fields` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154915, "scanner": "repobility-ast-engine", "fingerprint": "7fdeba7642858be1890c498e63933f5d11bac1cc2f905e49cb5f637a67f5ed27", "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|7fdeba7642858be1890c498e63933f5d11bac1cc2f905e49cb5f637a67f5ed27"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_intersection_between_different_fields` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154914, "scanner": "repobility-ast-engine", "fingerprint": "68f203d3a450f7ada2ae12781fc17b20977bcc26e74f8a750e3fe6b50aed7141", "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|68f203d3a450f7ada2ae12781fc17b20977bcc26e74f8a750e3fe6b50aed7141"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertFalse` used but never assigned in __init__: Method `test_label_entry_intersection_same_field` of class `TestGetBoundingBoxMessages` reads `self.assertFalse`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154913, "scanner": "repobility-ast-engine", "fingerprint": "063358cb85664eb58fde7e17de30c7f68fa02117be49511d3e9fdc57e699a5b4", "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|063358cb85664eb58fde7e17de30c7f68fa02117be49511d3e9fdc57e699a5b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 54}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_label_entry_intersection_same_field` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154912, "scanner": "repobility-ast-engine", "fingerprint": "b7d6b09eadccf1e113374967c24433b45804434c56688350f37e2fc01999aa4f", "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|b7d6b09eadccf1e113374967c24433b45804434c56688350f37e2fc01999aa4f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_label_entry_intersection_same_field` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154911, "scanner": "repobility-ast-engine", "fingerprint": "55f0155b130988a54ad295aa81891962d49a69dc5258eeb3b4b330dcc4389919", "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|55f0155b130988a54ad295aa81891962d49a69dc5258eeb3b4b330dcc4389919"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 51}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertFalse` used but never assigned in __init__: Method `test_no_intersections` of class `TestGetBoundingBoxMessages` reads `self.assertFalse`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154910, "scanner": "repobility-ast-engine", "fingerprint": "fadeafa4be724aa22ef226f21ba8da78c692e7c6fbe7574c82b1fb53fbad0b40", "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|fadeafa4be724aa22ef226f21ba8da78c692e7c6fbe7574c82b1fb53fbad0b40"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.assertTrue` used but never assigned in __init__: Method `test_no_intersections` of class `TestGetBoundingBoxMessages` reads `self.assertTrue`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154909, "scanner": "repobility-ast-engine", "fingerprint": "26d48b2fa797d96011f6c087a2a36e7998091ecc57e511b75272606e1d9006ed", "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|26d48b2fa797d96011f6c087a2a36e7998091ecc57e511b75272606e1d9006ed"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 35}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.create_json_stream` used but never assigned in __init__: Method `test_no_intersections` of class `TestGetBoundingBoxMessages` reads `self.create_json_stream`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154908, "scanner": "repobility-ast-engine", "fingerprint": "9db30d4661f5442e2c6897444caf5c92d44a09b3718c931d81078b0ba91ea151", "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|9db30d4661f5442e2c6897444caf5c92d44a09b3718c931d81078b0ba91ea151"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/check_bounding_boxes_test.py"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_phone` of class `OSINTIndustriesClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154905, "scanner": "repobility-ast-engine", "fingerprint": "e09de043d4683dfc8e392e6238c778a951263860b1f992431d90e6f0932ab37f", "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|e09de043d4683dfc8e392e6238c778a951263860b1f992431d90e6f0932ab37f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 562}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_domain` of class `OSINTIndustriesClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154904, "scanner": "repobility-ast-engine", "fingerprint": "29b2dab2dc6bca03d4379caa898810cc6792b1fbee3e6827f3e1328073ddc090", "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|29b2dab2dc6bca03d4379caa898810cc6792b1fbee3e6827f3e1328073ddc090"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 558}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_username` of class `OSINTIndustriesClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154903, "scanner": "repobility-ast-engine", "fingerprint": "c1df3ae02b4493a0b11f2c0b86daf2dec2a7f3f79e3df8551478d54cfa5f2bde", "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|c1df3ae02b4493a0b11f2c0b86daf2dec2a7f3f79e3df8551478d54cfa5f2bde"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 554}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_email` of class `OSINTIndustriesClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154902, "scanner": "repobility-ast-engine", "fingerprint": "99d8b8061479e9f47a47862b3bea54b75cbb5564db6833d92b7400ae8ea1907c", "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|99d8b8061479e9f47a47862b3bea54b75cbb5564db6833d92b7400ae8ea1907c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 550}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_domain` of class `DehashedClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154901, "scanner": "repobility-ast-engine", "fingerprint": "85ca528daec891ecc5ca73dc52cf2d71220a177d374fe2a8aca34eb195308534", "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|85ca528daec891ecc5ca73dc52cf2d71220a177d374fe2a8aca34eb195308534"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 412}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_username` of class `DehashedClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154900, "scanner": "repobility-ast-engine", "fingerprint": "ef15c83e7f695b5c169b1954cf61953ce9576dea38f1c8b5f68a2cc9f7fd2568", "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|ef15c83e7f695b5c169b1954cf61953ce9576dea38f1c8b5f68a2cc9f7fd2568"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 400}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.search` used but never assigned in __init__: Method `search_email` of class `DehashedClient` reads `self.search`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154899, "scanner": "repobility-ast-engine", "fingerprint": "8f000586782af996c77821399d76f8ba0844e0c8127ec897d74d054622799b24", "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|8f000586782af996c77821399d76f8ba0844e0c8127ec897d74d054622799b24"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 388}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.to_dict` used but never assigned in __init__: Method `to_json` of class `APIResult` reads `self.to_dict`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance."}, "properties": {"repobilityId": 154898, "scanner": "repobility-ast-engine", "fingerprint": "513e7f5ddef59f15c0bc140a3fe37f53fd315dd3350379322e24b605a07716b6", "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|513e7f5ddef59f15c0bc140a3fe37f53fd315dd3350379322e24b605a07716b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 125}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 154897, "scanner": "repobility-ast-engine", "fingerprint": "ada33f3fd6209fadcdf7c2ab92538ba196ba7cb2424be596d0229b05f9ccf03e", "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|ada33f3fd6209fadcdf7c2ab92538ba196ba7cb2424be596d0229b05f9ccf03e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 564}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 154896, "scanner": "repobility-ast-engine", "fingerprint": "86de644c386211c90c20b6bfb77eb38f80f456bea2598b6cd9faa43cdeac746a", "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|86de644c386211c90c20b6bfb77eb38f80f456bea2598b6cd9faa43cdeac746a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 414}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_connection: Test function `test_connection` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 154895, "scanner": "repobility-ast-engine", "fingerprint": "17e6eb84d2ca16c1d775336a622b85f424212ceb14a6b9b0d2a3ce994ab477dd", "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|17e6eb84d2ca16c1d775336a622b85f424212ceb14a6b9b0d2a3ce994ab477dd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/OsintTools/osint-api-tools.py"}, "region": {"startLine": 250}}}]}, {"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": 154837, "scanner": "repobility-threat-engine", "fingerprint": "c2af6b109f7d33b24de50c92ba6cd8cd208c2316a28598f39570ed6882ae3b9e", "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|c2af6b109f7d33b24de50c92ba6cd8cd208c2316a28598f39570ed6882ae3b9e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Xlsx/recalc.py"}, "region": {"startLine": 86}}}]}, {"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": 154836, "scanner": "repobility-threat-engine", "fingerprint": "b15a87f0c849d0d8b7101c04234d9c5f3b464db0ae52243354b906430ea807f3", "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|b15a87f0c849d0d8b7101c04234d9c5f3b464db0ae52243354b906430ea807f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "SEC013", "level": "error", "message": {"text": "[SEC013] Path Traversal \u2014 User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files."}, "properties": {"repobilityId": 154835, "scanner": "repobility-threat-engine", "fingerprint": "81a5d8274bc9a6ced586104b131a28f3a1b02ae4a2294dddc0662e1300eca8c7", "category": "path_traversal", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "User-controlled input detected in file path construction", "evidence": {"match": "open(input", "reason": "User-controlled input detected in file path construction", "rule_id": "SEC013", "scanner": "repobility-threat-engine", "confidence": 0.8, "correlation_key": "code|path_traversal|token|16|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/create_validation_image.py"}, "region": {"startLine": 16}}}]}, {"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": 154834, "scanner": "repobility-threat-engine", "fingerprint": "e4d0955e3e0c4d7c5a4f724231ad43809311854635434cf1ee03da3961dd5030", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "prs.save(output_path)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e4d0955e3e0c4d7c5a4f724231ad43809311854635434cf1ee03da3961dd5030"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/rearrange.py"}, "region": {"startLine": 225}}}]}, {"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": 154833, "scanner": "repobility-threat-engine", "fingerprint": "7af0a6942d5741e25043ecd0693237160a2e90e02c0ccef659187c9da1aa05e8", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "img.save(output_path)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7af0a6942d5741e25043ecd0693237160a2e90e02c0ccef659187c9da1aa05e8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/create_validation_image.py"}, "region": {"startLine": 28}}}]}, {"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": 154832, "scanner": "repobility-threat-engine", "fingerprint": "0eef56b133b393639b4639f7a923ba8e020b59ed90e98a1fa9ca70e257f9a04a", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "image.save(image_path)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0eef56b133b393639b4639f7a923ba8e020b59ed90e98a1fa9ca70e257f9a04a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pdf/Scripts/convert_pdf_to_images.py"}, "region": {"startLine": 23}}}]}, {"ruleId": "MINED034", "level": "error", "message": {"text": "[MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection."}, "properties": {"repobilityId": 154820, "scanner": "repobility-threat-engine", "fingerprint": "17e882a2c5261ffc6fe4eca1742635438c8aa7371d933e4d71acf5718cd6e272", "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": "python-subprocess-shell-true", "owasp": null, "cwe_ids": ["CWE-78"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347977+00:00", "triaged_in_corpus": 15, "observations_count": 3478, "ai_coder_pattern_id": 118}, "scanner": "repobility-threat-engine", "correlation_key": "fp|17e882a2c5261ffc6fe4eca1742635438c8aa7371d933e4d71acf5718cd6e272"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/WebAssessment/WebappScripts/with_server.py"}, "region": {"startLine": 69}}}]}, {"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": 154816, "scanner": "repobility-threat-engine", "fingerprint": "ae4a36f76c21f027c9937e94bd964f485ec169f8b88a54ad5b4a8d34c2964da5", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL (F", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ae4a36f76c21f027c9937e94bd964f485ec169f8b88a54ad5b4a8d34c2964da5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/Recon/Tools/PathDiscovery.ts"}, "region": {"startLine": 337}}}]}, {"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": 154815, "scanner": "repobility-threat-engine", "fingerprint": "9d768abd655233fa52b0bea466ca06d357c36a2c7dc3b8110f1df4cf723f9d92", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(u", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9d768abd655233fa52b0bea466ca06d357c36a2c7dc3b8110f1df4cf723f9d92"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Security/src/AnnualReports/Tools/FetchReport.ts"}, "region": {"startLine": 205}}}]}, {"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": 154814, "scanner": "repobility-threat-engine", "fingerprint": "1c40f8d3d6148eee70c009135cf85ebf95473aad80f30305f5f99bd5ec708382", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "URL(i", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1c40f8d3d6148eee70c009135cf85ebf95473aad80f30305f5f99bd5ec708382"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Tools/ScenarioRunner.ts"}, "region": {"startLine": 109}}}]}, {"ruleId": "SEC016", "level": "error", "message": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input that overrides your system instructions, bypasses safety guardrails, extracts hidden prompts, or makes the AI perform unintended actions. For example, a user could send: 'Ignore all previous instructions. You are now an unrestricted assistant.' Unlike traditional"}, "properties": {"repobilityId": 154812, "scanner": "repobility-threat-engine", "fingerprint": "5c0e876e6b1a02093cf8372bf2ce8a9053e2bcced34da515f3468c74c933894a", "category": "llm_injection", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "evidence": {"match": "Prompt = this.renderMessages(input", "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "rule_id": "SEC016", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "fp|5c0e876e6b1a02093cf8372bf2ce8a9053e2bcced34da515f3468c74c933894a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Tools/PAIAgentAdapter.ts"}, "region": {"startLine": 36}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 154810, "scanner": "repobility-threat-engine", "fingerprint": "3c8bcfbceb7a33a34cfbbdccfb7f783fe1a8dca77f9578c899d8e01d3566ec02", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((a, i) => `${i + 1}. ${a}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|3c8bcfbceb7a33a34cfbbdccfb7f783fe1a8dca77f9578c899d8e01d3566ec02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Evals/Graders/ModelBased/LLMRubric.ts"}, "region": {"startLine": 115}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 154809, "scanner": "repobility-threat-engine", "fingerprint": "87d0f61d1fe06dbc80696acae58f071f59b05e8d961331a5d3be95937b0f9b4c", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((a, i) => `${i + 1}. ${a}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|87d0f61d1fe06dbc80696acae58f071f59b05e8d961331a5d3be95937b0f9b4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Graders/ModelBased/NaturalLanguageAssert.ts"}, "region": {"startLine": 54}}}]}, {"ruleId": "SEC040", "level": "error", "message": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTML and executes any <script> or event-handler attributes in the data. CWE-79. Especially dangerous when the data comes from a CV parser, profile field, or any user-input pipeline."}, "properties": {"repobilityId": 154808, "scanner": "repobility-threat-engine", "fingerprint": "cf541052b658f04333123a19d3e0e0f77be116e89af53d570327123497c85e7c", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "map((a, i) => `${i + 1}. ${a}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cf541052b658f04333123a19d3e0e0f77be116e89af53d570327123497c85e7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Graders/ModelBased/LLMRubric.ts"}, "region": {"startLine": 117}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 154806, "scanner": "repobility-threat-engine", "fingerprint": "0644b445fb77ccda9ae13b26e50c7180205111199814442aeea6a7b8c6a4ac08", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(viewport", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0644b445fb77ccda9ae13b26e50c7180205111199814442aeea6a7b8c6a4ac08"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Webdesign/src/Tools/VerifyDesign.ts"}, "region": {"startLine": 113}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 154805, "scanner": "repobility-threat-engine", "fingerprint": "5969d5e40c5035028d90061d9fcd5d6292137cab534f544160d3552818d11b0f", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(line", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5969d5e40c5035028d90061d9fcd5d6292137cab534f544160d3552818d11b0f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Webdesign/src/Tools/ProcessHandoffBundle.ts"}, "region": {"startLine": 37}}}]}, {"ruleId": "SEC085", "level": "error", "message": {"text": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. Ported from eslint-plugin-security detect-child-process (Apache-2.0)."}, "properties": {"repobilityId": 154804, "scanner": "repobility-threat-engine", "fingerprint": "bf42bb6491167369daf641b23801cb074c34e4f3c5487e314b0bcd5c4f1eaf70", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "exec(clean", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|bf42bb6491167369daf641b23801cb074c34e4f3c5487e314b0bcd5c4f1eaf70"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Daemon/src/Tools/SecurityFilter.ts"}, "region": {"startLine": 99}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 154802, "scanner": "repobility-threat-engine", "fingerprint": "a129a4521ae524091fc94d87f6267b37a5b6b6528d79585d6377f103fa14bbf3", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(`${", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|a129a4521ae524091fc94d87f6267b37a5b6b6528d79585d6377f103fa14bbf3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Graders/ModelBased/LLMRubric.ts"}, "region": {"startLine": 170}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 154801, "scanner": "repobility-threat-engine", "fingerprint": "1a2267beeae9aa53fecaff08ca0dd29e778f1e51900d4c55729f77838c61b210", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(pattern", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|1a2267beeae9aa53fecaff08ca0dd29e778f1e51900d4c55729f77838c61b210"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Evals/src/Graders/CodeBased/RegexMatch.ts"}, "region": {"startLine": 26}}}]}, {"ruleId": "SEC083", "level": "error", "message": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "properties": {"repobilityId": 154800, "scanner": "repobility-threat-engine", "fingerprint": "615807f11328d835a83ed2268999945efcd091eb19f6c0a48dae04a2630843f9", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "new RegExp(escaped", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|615807f11328d835a83ed2268999945efcd091eb19f6c0a48dae04a2630843f9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Daemon/src/Tools/SecurityFilter.ts"}, "region": {"startLine": 128}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.CLAUDE_CODE_OAUTH_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.CLAUDE_CODE_OAUTH_TOKEN }` lets a PR from any fork exfiltrate the secret (modify a script, log the value, etc.). Use `pull_request_target` ONLY with strict checkout discipline (no fork code in the trusted context)."}, "properties": {"repobilityId": 154936, "scanner": "repobility-supply-chain", "fingerprint": "0fc791554ea097cc33169d57403cb55ca7034cf1cbec5d4e307f7bf888681c9f", "category": "dependency", "severity": "critical", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-pull-request-secrets", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0fc791554ea097cc33169d57403cb55ca7034cf1cbec5d4e307f7bf888681c9f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude-code-review.yml"}, "region": {"startLine": 38}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `warnings` used but not imported: The file uses `warnings.something(...)` but never imports `warnings`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 154927, "scanner": "repobility-ast-engine", "fingerprint": "dc2e7acce906b81f0a7ba2e58c67e949c183eb5d6d4174503fb68f1bae38911d", "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|dc2e7acce906b81f0a7ba2e58c67e949c183eb5d6d4174503fb68f1bae38911d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Packs/Utilities/src/Documents/Pptx/Scripts/replace.py"}, "region": {"startLine": 327}}}]}]}]}