{"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": "MINED109", "name": "[MINED109] Mutable default argument in `get_random_option` (list): `def get_random_option(... = []/{}/set())` \u2014 Python's", "shortDescription": {"text": "[MINED109] Mutable default argument in `get_random_option` (list): `def get_random_option(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call muta"}, "fullDescription": {"text": "Use None as the default and create the collection inside the function: `def get_random_option(x=None): x = x or []`"}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "WEB003", "name": "Public web service has no security.txt", "shortDescription": {"text": "Public web service has no security.txt"}, "fullDescription": {"text": "Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.78, "cwe": "", "owasp": ""}}, {"id": "WEB015", "name": "Public web app has no Content Security Policy", "shortDescription": {"text": "Public web app has no Content Security Policy"}, "fullDescription": {"text": "Add a Content-Security-Policy header through the web framework or hosting config. For static apps, add a CSP meta tag that restricts default-src, script-src, connect-src, img-src, and frame-ancestors."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "medium", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "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: ANY /i1"}, "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": "AUC004", "name": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence ", "shortDescription": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /documents/."}, "fullDescription": {"text": "Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.66, "cwe": "", "owasp": ""}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 3.3% of discovered routes show nearby authenticatio", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 3.3% 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": "DKC015", "name": "Database service has no healthcheck", "shortDescription": {"text": "Database service has no healthcheck"}, "fullDescription": {"text": "Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.88, "cwe": "", "owasp": ""}}, {"id": "DKR014", "name": "Dockerfile copies broad context with incomplete .dockerignore", "shortDescription": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "fullDescription": {"text": "Tighten .dockerignore or replace COPY . with explicit COPY statements."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.76, "cwe": "", "owasp": ""}}, {"id": "SEC046", "name": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supp", "shortDescription": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromis"}, "fullDescription": {"text": "Validate the URL is same-origin or on an explicit allowlist before assignment:\n  const u = new URL(serverUrl, location.href);\n  if (u.origin !== location.origin && !ALLOWED.includes(u.host)) return;\n  location.assign(u);\nEven better: have the server return a path (/checkout/done) instead of a full URL, and only allow same-origin navigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "ERR002", "name": "[ERR002] Empty Catch Block: Empty catch blocks hide errors.", "shortDescription": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "fullDescription": {"text": "Log the error or rethrow it. Use console.error() at minimum."}, "properties": {"scanner": "repobility-threat-engine", "category": "error_handling", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "SEC031", "name": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternati", "shortDescription": {"text": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternation with overlapping branches. On adversarial input these patterns exhibit exponential backtracking, freezing the process"}, "fullDescription": {"text": "Three options, pick one:\n  1. Rewrite the pattern to avoid nested quantifiers. E.g. `(a+)+` is      functionally equivalent to `a+` for matching purposes.\n  2. Use Google's re2 (`pip install google-re2`): linear-time, drop-in      replacement for `re` for most use cases.\n  3. Set a hard timeout: `signal.alarm(1)` before regex eval.\nTest patterns against `safe-regex` or `redos-detector` before shipping."}, "properties": {"scanner": "repobility-threat-engine", "category": "redos", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC041", "name": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noref", "shortDescription": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and"}, "fullDescription": {"text": "Add rel=\"noopener noreferrer\" to every <a target=\"_blank\">:\n  <a href=\"...\" target=\"_blank\" rel=\"noopener noreferrer\">link</a>\nFor dynamically generated links from JS, set rel on the element before appending. Even safe-looking subdomains should harden \u2014 costs nothing."}, "properties": {"scanner": "repobility-threat-engine", "category": "security", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC028", "name": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protectio", "shortDescription": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on beha"}, "fullDescription": {"text": "Either:\n  (a) Replace @csrf_exempt with @csrf_protect (or just remove the exemption).\n  (b) If this is a public API endpoint, use SessionAuthentication +       Token/JWT auth from DRF instead. Token-bearer requests aren't       vulnerable to CSRF.\n  (c) If you must skip CSRF (e.g. for a third-party callback), validate       the request via HMAC signature with the partner's shared secret,       and add a `# csrf_exempt is safe here` comment to silence the       finding."}, "properties": {"scanner": "repobility-threat-engine", "category": "csrf", "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": "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": "COMP001", "name": "[COMP001] High cognitive complexity: Function `resolve` has cognitive complexity 19 (SonarSource scale). Cognitive compl", "shortDescription": {"text": "[COMP001] High cognitive complexity: Function `resolve` has cognitive complexity 19 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all w"}, "fullDescription": {"text": "Extract nested branches into named helper functions; flatten early-return / guard clauses; replace long if/elif chains with dispatch dicts or polymorphism. SonarQube's threshold for 'should refactor' is 15 \u2014 yours is 19."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "medium", "confidence": 0.95, "cwe": "", "owasp": ""}}, {"id": "CORE_LARGE_FILES", "name": "Average file size is 501 lines (recommend <300)", "shortDescription": {"text": "Average file size is 501 lines (recommend <300)"}, "fullDescription": {"text": "Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle \u2014 each module should have one clear purpose."}, "properties": {"scanner": "repobility-core", "category": "quality", "severity": "medium", "confidence": null, "cwe": "", "owasp": ""}}, {"id": "WEB011", "name": "Public web app has no humans.txt", "shortDescription": {"text": "Public web app has no humans.txt"}, "fullDescription": {"text": "Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.5, "cwe": "", "owasp": ""}}, {"id": "WEB008", "name": "Public docs site has no llms.txt", "shortDescription": {"text": "Public docs site has no llms.txt"}, "fullDescription": {"text": "Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.64, "cwe": "", "owasp": ""}}, {"id": "WEB001", "name": "Public web app has no robots.txt", "shortDescription": {"text": "Public web app has no robots.txt"}, "fullDescription": {"text": "Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths."}, "properties": {"scanner": "repobility-web-presence", "category": "quality", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKC016", "name": "App service does not wait for database health", "shortDescription": {"text": "App service does not wait for database health"}, "fullDescription": {"text": "Give the database a healthcheck and change the dependency to `depends_on: { db: { condition: service_healthy } }`."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKR008", "name": ".dockerignore misses sensitive defaults", "shortDescription": {"text": ".dockerignore misses sensitive defaults"}, "fullDescription": {"text": "Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR011", "name": "Dockerfile installs recommended OS packages", "shortDescription": {"text": "Dockerfile installs recommended OS packages"}, "fullDescription": {"text": "Add `--no-install-recommends` and explicitly list only packages the image needs."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR010", "name": "Dockerfile leaves apt package indexes in the image layer", "shortDescription": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "fullDescription": {"text": "End the apt install layer with `rm -rf /var/lib/apt/lists/*`."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "DKR012", "name": "Dockerfile keeps pip download cache", "shortDescription": {"text": "Dockerfile keeps pip download cache"}, "fullDescription": {"text": "Use `pip install --no-cache-dir ...` in container builds."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Extract the shared behavior into one function/module or delete the inactive duplicate after proving which path is used."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.86, "cwe": "", "owasp": ""}}, {"id": "SEC132", "name": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the la", "shortDescription": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on it"}, "fullDescription": {"text": "Python: `f\"prefix {var} suffix\"`. JS/TS: `` `prefix ${var} suffix` ``. Add a lint rule (pyupgrade UP032, eslint prefer-template) so future PRs catch this automatically."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "low", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC006", "name": "[SEC006] XSS Risk: Direct HTML injection without sanitization.", "shortDescription": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "fullDescription": {"text": "Use textContent instead of innerHTML. Sanitize with DOMPurify."}, "properties": {"scanner": "repobility-threat-engine", "category": "injection", "severity": "low", "confidence": 0.4, "cwe": "", "owasp": ""}}, {"id": "MINED067", "name": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever.", "shortDescription": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-400 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED049", "name": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout.", "shortDescription": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-532 / A09:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC020", "name": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequen", "shortDescription": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "fullDescription": {"text": "Log only redacted, hashed, or last-four-style metadata. Rotate any secret that may have reached logs."}, "properties": {"scanner": "repobility-threat-engine", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "cwe": "", "owasp": ""}}, {"id": "MINED079", "name": "[MINED079] Off By One Slice: range(len(x)+1), arr[i+1:i+n+1], or while i<=len(arr) \u2014 off-by-one risk.", "shortDescription": {"text": "[MINED079] Off By One Slice: range(len(x)+1), arr[i+1:i+n+1], or while i<=len(arr) \u2014 off-by-one risk."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-193 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED098", "name": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios ", "shortDescription": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "fullDescription": {"text": "Import the library where you need it instead of attaching to window. For legitimate global registries, use a namespaced object (e.g., `window.__myApp.axios`)."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED058", "name": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or neve", "shortDescription": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-79 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED064", "name": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services.", "shortDescription": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED001", "name": "[MINED001] Bare Except Pass (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED001] Bare Except Pass (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-755 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED019", "name": "[MINED019] Ssti Jinja From String (and 3 more): Same pattern found in 3 additional files. Review if needed.", "shortDescription": {"text": "[MINED019] Ssti Jinja From String (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-94 / A03:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC128", "name": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 45 more): Same pattern found in 45 add", "shortDescription": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 45 more): Same pattern found in 45 additional files. Review if needed."}, "fullDescription": {"text": "Add `await` before each async call, or chain with `.then`. If you intentionally want fire-and-forget, prefix with `void` (TS) or assign to `_` (Python with `asyncio.create_task`) to make the intent explicit and survive lint."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED057", "name": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolve", "shortDescription": {"text": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "fullDescription": {"text": "Review and fix per the pattern semantics."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED072", "name": "[MINED072] Python Pass Only Class (and 5 more): Same pattern found in 5 additional files. Review if needed.", "shortDescription": {"text": "[MINED072] Python Pass Only Class (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED050", "name": "[MINED050] Stub Only Function (and 21 more): Same pattern found in 21 additional files. Review if needed.", "shortDescription": {"text": "[MINED050] Stub Only Function (and 21 more): Same pattern found in 21 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-1188 /  for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED043", "name": "[MINED043] Http Not Https (and 4 more): Same pattern found in 4 additional files. Review if needed.", "shortDescription": {"text": "[MINED043] Http Not Https (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-319 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 29 more): Same pattern found in 29 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 29 more): Same pattern found in 29 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": "SEC111", "name": "[SEC111] Django mark_safe / |safe filter on user data (and 2 more): Same pattern found in 2 additional files. Review if ", "shortDescription": {"text": "[SEC111] Django mark_safe / |safe filter on user data (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Use `django.utils.html.format_html(\"<p>{}</p>\", user_input)` \u2014 Django will escape the placeholder. Or escape explicitly with `django.utils.html.escape()`. Only use `mark_safe` on string literals."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "MINED044", "name": "[MINED044] Js Console Log Prod (and 20 more): Same pattern found in 20 additional files. Review if needed.", "shortDescription": {"text": "[MINED044] Js Console Log Prod (and 20 more): Same pattern found in 20 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 `aws-actions/configure-aws-credentials` pinned to mutable ref `@v1`: `uses: aws-actions/configure-aws-", "shortDescription": {"text": "[MINED115] Action `aws-actions/configure-aws-credentials` pinned to mutable ref `@v1`: `uses: aws-actions/configure-aws-credentials@v1` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-"}, "fullDescription": {"text": "Replace with: `uses: aws-actions/configure-aws-credentials@<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": "MINED126", "name": "[MINED126] Workflow container/services image `postgres:15` unpinned: `container/services image: postgres:15` without `@s", "shortDescription": {"text": "[MINED126] Workflow container/services image `postgres:15` unpinned: `container/services image: postgres:15` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain disc"}, "fullDescription": {"text": "Replace with `postgres:15@sha256:<digest>`. Re-pin via Dependabot Docker scope."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED121", "name": "[MINED121] requirements.txt installs from `wagtail-localize-git @ git+https://github.com/robd...` (git/URL): Pip require", "shortDescription": {"text": "[MINED121] requirements.txt installs from `wagtail-localize-git @ git+https://github.com/robd...` (git/URL): Pip requirement points to a VCS URL or direct download. Bypasses PyPI's integrity check + scanning. If the host or branch tip chang"}, "fullDescription": {"text": "Publish to PyPI (private if needed) and reference by version. If that's not feasible, lock to a commit SHA via `package @ git+https://...@<sha>` and verify in CI."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED118", "name": "[MINED118] Dockerfile FROM `python:3.11-slim-bookworm` not pinned by digest: `FROM python:3.11-slim-bookworm` resolves t", "shortDescription": {"text": "[MINED118] Dockerfile FROM `python:3.11-slim-bookworm` not pinned by digest: `FROM python:3.11-slim-bookworm` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially differe"}, "fullDescription": {"text": "Replace with: `FROM python:3.11-slim-bookworm@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot)."}, "properties": {"scanner": "repobility-supply-chain", "category": "dependency", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "MINED112", "name": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.ensure_related_posts has ", "shortDescription": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.ensure_related_posts has no auth: Handler `test_clean_calls_ensure_related_posts` is registered with router/app.patch(...) but no Depends/Securit"}, "fullDescription": {"text": "Add Depends(get_current_user) or Security(...) to the handler signature. If the route is truly public, document it with a code comment so the rule knows it's intentional."}, "properties": {"scanner": "repobility-route-auth", "category": "quality", "severity": "high", "confidence": 0.8, "cwe": "", "owasp": ""}}, {"id": "MINED106", "name": "[MINED106] Phantom test coverage: test_serve_shows_children_titles: Test function `test_serve_shows_children_titles` run", "shortDescription": {"text": "[MINED106] Phantom test coverage: test_serve_shows_children_titles: Test function `test_serve_shows_children_titles` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without ver"}, "fullDescription": {"text": "Add an explicit assertion that captures the test's intent, or remove the test."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED108", "name": "[MINED108] `self.animated_webp_ready` used but never assigned in __init__: Method `get_rendition` of class `FoundationCu", "shortDescription": {"text": "[MINED108] `self.animated_webp_ready` used but never assigned in __init__: Method `get_rendition` of class `FoundationCustomImage` reads `self.animated_webp_ready`, but no assignment to it exists in __init__ (and no class-level fallback). T"}, "fullDescription": {"text": "Initialize `self.animated_webp_ready = <default>` in __init__, or add a class-level default."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AUC003", "name": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby a", "shortDescription": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /^(?P<pk>[0-9]+)/."}, "fullDescription": {"text": "Add ownership, tenant, relationship, or policy checks before reading or mutating the target object."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "high", "confidence": 0.7, "cwe": "", "owasp": ""}}, {"id": "DKC011", "name": "Database service publishes a host port", "shortDescription": {"text": "Database service publishes a host port"}, "fullDescription": {"text": "Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "high", "confidence": 0.84, "cwe": "", "owasp": ""}}, {"id": "SEC030", "name": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without vali", "shortDescription": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but"}, "fullDescription": {"text": "Validate the redirect URL against an allowlist of safe destinations:\n  # Django:\n  from django.utils.http import url_has_allowed_host_and_scheme\n  if not url_has_allowed_host_and_scheme(url, allowed_hosts={request.get_host()}):\n      url = '/'  # safe default\nOr restrict to relative paths only: `if not url.startswith('/'): abort(400)`. Never accept external schemes without verification."}, "properties": {"scanner": "repobility-threat-engine", "category": "open_redirect", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC078", "name": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsiv", "shortDescription": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a re"}, "fullDescription": {"text": "Add `timeout=10` (or appropriate value) to every requests call."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC083", "name": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported fr", "shortDescription": {"text": "[SEC083] JS: new RegExp() with non-literal: new RegExp(<variable>) \u2014 variable input can craft a ReDoS pattern. Ported from eslint-plugin-security detect-non-literal-regexp (Apache-2.0)."}, "fullDescription": {"text": "Use a literal RegExp or whitelist-validate user input before constructing patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED004", "name": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums).", "shortDescription": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "fullDescription": {"text": "Review and fix per the pattern semantics. See CWE-327 / A02:2021 for context."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC040", "name": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that int", "shortDescription": {"text": "[SEC040] innerHTML XSS \u2014 template literal with server-supplied data: Setting .innerHTML with a template literal that interpolates server-supplied or user-supplied data is the canonical stored/reflected XSS vector. The browser parses the HTM"}, "fullDescription": {"text": "For plain text: use el.textContent = data.value (auto-escapes).\nFor HTML you need to render: el.innerHTML = DOMPurify.sanitize(html).\nFor React/Vue/Svelte: stop using innerHTML; use the framework's binding.\nWhen data comes from CV/PDF parsers, sanitize at the parser boundary too."}, "properties": {"scanner": "repobility-threat-engine", "category": "xss", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "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": "SEC085", "name": "[SEC085] JS: child_process.exec with non-literal: child_process.exec with user-derived input enables command injection. ", "shortDescription": {"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)."}, "fullDescription": {"text": "Use execFile / spawn with separate args array; never pass shell strings."}, "properties": {"scanner": "repobility-threat-engine", "category": "quality", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "MINED116", "name": "[MINED116] Workflow uses `secrets.COVERALLS_REPO_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_req", "shortDescription": {"text": "[MINED116] Workflow uses `secrets.COVERALLS_REPO_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.COVERALLS_REPO_TOKEN }` lets a PR from any fork exfiltr"}, "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: `locale` used but not imported: The file uses `locale.something(...)` but never imports `loca", "shortDescription": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "fullDescription": {"text": "Add `import locale` at the top of the file."}, "properties": {"scanner": "repobility-ast-engine", "category": "quality", "severity": "critical", "confidence": 1.0, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/1244"}, "properties": {"repository": "MozillaFoundation/foundation.mozilla.org", "repoUrl": "https://github.com/MozillaFoundation/foundation.mozilla.org", "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": 125564, "scanner": "repobility-ast-engine", "fingerprint": "fb70c94179aa27aa162073b41336a65a607175d2e1a970bbf9b833b7b21f59d1", "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|fb70c94179aa27aa162073b41336a65a607175d2e1a970bbf9b833b7b21f59d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/webp/utils.py"}, "region": {"startLine": 21}}}]}, {"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": 125563, "scanner": "repobility-ast-engine", "fingerprint": "89009c65981949b23d97605293919efd9dc5d052d99f37f78d74445c91226bea", "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|89009c65981949b23d97605293919efd9dc5d052d99f37f78d74445c91226bea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/management/commands/update_multilingual_index.py"}, "region": {"startLine": 59}}}]}, {"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": 125559, "scanner": "repobility-ast-engine", "fingerprint": "c49a0799e459a00a4c715a643e75d88a67e7dc9af60049043f4240b81fffaf74", "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|c49a0799e459a00a4c715a643e75d88a67e7dc9af60049043f4240b81fffaf74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/products.py"}, "region": {"startLine": 686}}}]}, {"ruleId": "MINED109", "level": "warning", "message": {"text": "[MINED109] Mutable default argument in `get_random_option` (list): `def get_random_option(... = []/{}/set())` \u2014 Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too."}, "properties": {"repobilityId": 125547, "scanner": "repobility-ast-engine", "fingerprint": "efb8b4364e6420b58d4f2a14d062370292ad6289739d326850af3049a79b2e2c", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "mutable-default-arg", "owasp": null, "cwe_ids": ["CWE-1023"], "languages": ["python"], "observations_count": 64867}, "scanner": "repobility-ast-engine", "correlation_key": "fp|efb8b4364e6420b58d4f2a14d062370292ad6289739d326850af3049a79b2e2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/factory/buyersguide.py"}, "region": {"startLine": 27}}}]}, {"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": 125527, "scanner": "repobility-ast-engine", "fingerprint": "9d4f3f40b1eb95afbd7f1fa2becb212871be4357aad429bc6fc6ed8135fcedf2", "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|9d4f3f40b1eb95afbd7f1fa2becb212871be4357aad429bc6fc6ed8135fcedf2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/templatetags/breadcrumb_nav.py"}, "region": {"startLine": 14}}}]}, {"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": 125526, "scanner": "repobility-ast-engine", "fingerprint": "8b283d33071d393b448be6d848023216c513b9b73f86258fa8633f715df7f962", "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|8b283d33071d393b448be6d848023216c513b9b73f86258fa8633f715df7f962"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/search/signals.py"}, "region": {"startLine": 13}}}]}, {"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": 125500, "scanner": "repobility-ast-engine", "fingerprint": "c92e297d9ee034ed9923292b63617e6c8c8c2884f1bfc9dea330c697da6813fa", "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|c92e297d9ee034ed9923292b63617e6c8c8c2884f1bfc9dea330c697da6813fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tasks.py"}, "region": {"startLine": 702}}}]}, {"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": 125499, "scanner": "repobility-ast-engine", "fingerprint": "6e81437a01569963e750d8068587b698d3376a2daef047b0327dfad56c675ca1", "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|6e81437a01569963e750d8068587b698d3376a2daef047b0327dfad56c675ca1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tasks.py"}, "region": {"startLine": 693}}}]}, {"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": 125498, "scanner": "repobility-ast-engine", "fingerprint": "c59f334fe8004509e2bcb490f8316acdcd7ea6419e9316783d2132b1aff4bf18", "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|c59f334fe8004509e2bcb490f8316acdcd7ea6419e9316783d2132b1aff4bf18"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tasks.py"}, "region": {"startLine": 781}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 125495, "scanner": "repobility-web-presence", "fingerprint": "5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd", "category": "quality", "severity": "medium", "confidence": 0.78, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app/API but no security.txt file or route was discovered.", "evidence": {"rule_id": "WEB003", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9116", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|5cd26606c5a53c9f403ff7a92a6917c19cf440a23ce03e2b90e8c493312ef8cd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".well-known/security.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB015", "level": "warning", "message": {"text": "Public web app has no Content Security Policy"}, "properties": {"repobilityId": 125494, "scanner": "repobility-web-presence", "fingerprint": "7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63", "category": "quality", "severity": "medium", "confidence": 0.7, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no CSP header, framework header config, Helmet policy, or CSP meta tag was discovered.", "evidence": {"rule_id": "WEB015", "scanner": "repobility-web-presence", "references": ["https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|7eb70cae3ff63d8ed7c31706185d32b37655333b40b58ca826d740b08fb1ad63"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "index.html"}, "region": {"startLine": 1}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 125490, "scanner": "repobility-journey-contract", "fingerprint": "2bbd3ada33a447692bac07daf48378505f598f0aa0c30d74ae4b6fc2f627865d", "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/buyersguide/vote", "correlation_key": "fp|2bbd3ada33a447692bac07daf48378505f598f0aa0c30d74ae4b6fc2f627865d", "backend_endpoint_count": 30}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx"}, "region": {"startLine": 97}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 125489, "scanner": "repobility-journey-contract", "fingerprint": "7b762a8b6446fc0797f4cf404bffe11a03f0a0af4c23aaae5a1d3a2621fad94d", "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/csrf", "correlation_key": "fp|7b762a8b6446fc0797f4cf404bffe11a03f0a0af4c23aaae5a1d3a2621fad94d", "backend_endpoint_count": 30}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx"}, "region": {"startLine": 65}}}]}, {"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: ANY /i18n/setlang/."}, "properties": {"repobilityId": 125488, "scanner": "repobility-access-control", "fingerprint": "835e8eee4b03e54220ccd9446854d17954b5bd7c8cc25622fd867d640d8b616f", "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": "/i18n/setlang/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|foundation_cms/urls.py|125|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/urls.py"}, "region": {"startLine": 125}}}]}, {"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: ANY /sentry-debug."}, "properties": {"repobilityId": 125487, "scanner": "repobility-access-control", "fingerprint": "67dccdff1338c367c5bed59094b543a2744178415caab044ce9ae62c102e9fc9", "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": "/sentry-debug", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|foundation_cms/urls.py|123|auc009", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/urls.py"}, "region": {"startLine": 123}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /documents/."}, "properties": {"repobilityId": 125486, "scanner": "repobility-access-control", "fingerprint": "7c736e21a796a8c13e7c217e4180691bc286fed50686231dff98d622ef331f37", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/documents/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|foundation_cms/urls.py|114|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/urls.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /^en/cms/."}, "properties": {"repobilityId": 125485, "scanner": "repobility-access-control", "fingerprint": "90e7de0482c4cfb9e487feb2f22ae55bbd8a5f63363e373087fa1b71ca317cbd", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/^en/cms/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|foundation_cms/urls.py|113|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/urls.py"}, "region": {"startLine": 113}}}]}, {"ruleId": "AUC004", "level": "warning", "message": {"text": "[AUC004] Admin route does not show super_admin separation: An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /cms/."}, "properties": {"repobilityId": 125484, "scanner": "repobility-access-control", "fingerprint": "a7bda40f3c062b77fced008a99475832114f5b792f740169e11745bdee57141e", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/cms/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|foundation_cms/urls.py|112|auc004", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/urls.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 3.3% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 125482, "scanner": "repobility-access-control", "fingerprint": "bba23a09a6e32b5bcf2ea750cfbcbb326edfb6f9d7d632f03dc3fb8aee8bcb38", "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": 30, "correlation_key": "fp|bba23a09a6e32b5bcf2ea750cfbcbb326edfb6f9d7d632f03dc3fb8aee8bcb38", "auth_visible_percent": 3.3}}}, {"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": 125481, "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": ["Django"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKC015", "level": "warning", "message": {"text": "Database service has no healthcheck"}, "properties": {"repobilityId": 125480, "scanner": "repobility-docker", "fingerprint": "880b0d1f6e045cabfbbfb93e3d53e375cb8980c51261c4f7478ce36c74c0d43c", "category": "docker", "severity": "medium", "confidence": 0.88, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Database-like service has no Compose healthcheck.", "evidence": {"rule_id": "DKC015", "scanner": "repobility-docker", "service": "postgres", "references": ["https://docs.docker.com/compose/how-tos/startup-order/"], "correlation_key": "fp|880b0d1f6e045cabfbbfb93e3d53e375cb8980c51261c4f7478ce36c74c0d43c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 66}}}]}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 125473, "scanner": "repobility-docker", "fingerprint": "0f170174551441afabfcbc81cc7f29849165ca83d64d75c2e2aa557fad6aa0e7", "category": "docker", "severity": "medium", "confidence": 0.76, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Broad context copy found and .dockerignore misses sensitive defaults.", "evidence": {"rule_id": "DKR014", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|0f170174551441afabfcbc81cc7f29849165ca83d64d75c2e2aa557fad6aa0e7", "missing_patterns": [".env", "id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 107}}}]}, {"ruleId": "SEC046", "level": "warning", "message": {"text": "[SEC046] Client-side open redirect \u2014 window.location = server-supplied URL: Assigning window.location from a server-supplied URL trusts the server endpoint to never return a hostile destination. If that endpoint is ever subverted (compromised admin, JSON injection, MITM on a webhook), users get redirected to a phishing site they trust because the original page is yours. CWE-601 (server-side OR client-side). Complement to server-side SEC030."}, "properties": {"repobilityId": 125452, "scanner": "repobility-threat-engine", "fingerprint": "9df7e0f836bf38b8a67d3ab3cfd4784a85cc79d37987617ea4a06534d8edf21e", "category": "open_redirect", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.location.assign(result.", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC046", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9df7e0f836bf38b8a67d3ab3cfd4784a85cc79d37987617ea4a06534d8edf21e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/static/js/components/newsletter_unsubscribe.js"}, "region": {"startLine": 121}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 125451, "scanner": "repobility-threat-engine", "fingerprint": "c4757a29c61d9faa4fac2c4c3a0a8b90507824e850da51f36e815bb3e08e44b4", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".catch(() => {})", "reason": "Pattern matched with no mitigating context found", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|c4757a29c61d9faa4fac2c4c3a0a8b90507824e850da51f36e815bb3e08e44b4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/static/js/components/gallery_hub/slideshow.js"}, "region": {"startLine": 37}}}]}, {"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": 125449, "scanner": "repobility-threat-engine", "fingerprint": "d5d208ad942f742fa233e0bdc91ac7ed93ea29db33a3ee43c42e6ca3ec6966d4", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "try:\n        return page.locale.language_code\n    except Exception:\n        return None", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC136", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d5d208ad942f742fa233e0bdc91ac7ed93ea29db33a3ee43c42e6ca3ec6966d4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/search/signals.py"}, "region": {"startLine": 11}}}]}, {"ruleId": "SEC031", "level": "warning", "message": {"text": "[SEC031] Catastrophic Backtracking Regex (ReDoS): Regex contains nested quantifiers like `(a+)+` or quantified alternation with overlapping branches. On adversarial input these patterns exhibit exponential backtracking, freezing the process. CWE-1333. Real CVEs: CVE-2017-16129 (minimatch), CVE-2021-3807 (ansi-regex), and dozens more."}, "properties": {"repobilityId": 125436, "scanner": "repobility-threat-engine", "fingerprint": "352f938b2ce55fc24aaf628556a48ab1e8506c6b010bab9eb459c4c60114044b", "category": "redos", "severity": "medium", "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": "SEC031", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|352f938b2ce55fc24aaf628556a48ab1e8506c6b010bab9eb459c4c60114044b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/newsletter-signup/organisms/with-submission-logic.jsx"}, "region": {"startLine": 33}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 125432, "scanner": "repobility-threat-engine", "fingerprint": "f7c26a7106567d56a5df75b4017629b13770ce2891c09b1b81fdcb0cbc2bf350", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "window.open(href, \"_blank\", \"noopener,noreferrer\")", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|14|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/static/js/blocks/pillar_card_set.js"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC041", "level": "warning", "message": {"text": "[SEC041] Tabnabbing \u2014 target=\"_blank\" without rel=\"noopener noreferrer\": <a target=\"_blank\"> without rel=\"noopener noreferrer\" leaks window.opener to the opened page. The opened page can then run window.opener.location = 'phishing-site' and the parent tab quietly navigates to attacker-controlled content (reverse tabnabbing). OWASP-classic; modern browsers default rel='noopener' for new windows but explicit attribute is still required for compatibility."}, "properties": {"repobilityId": 125431, "scanner": "repobility-threat-engine", "fingerprint": "cc9220cfba8af2f83f920830e0342c8204205e3564762f6583e8920a385165dc", "category": "security", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "<a\n      target=\"_blank\"\n      className={`tw-btn tw-btn-secondary btn-share after:tw-hidden ${class", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC041", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|security|token|77|sec041"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/components/social-share/social-share.jsx"}, "region": {"startLine": 77}}}]}, {"ruleId": "SEC028", "level": "warning", "message": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on behalf of an authenticated user. Verify there's a compensating mechanism: API token auth, signed request, or explicit Same-Site cookie + Origin check."}, "properties": {"repobilityId": 125430, "scanner": "repobility-threat-engine", "fingerprint": "e5c648570e6362a1ead1263a8bf9714a3c0cea98d5551c74b729da6455df2ffa", "category": "csrf", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@csrf_exempt", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC028", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e5c648570e6362a1ead1263a8bf9714a3c0cea98d5551c74b729da6455df2ffa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/views.py"}, "region": {"startLine": 82}}}]}, {"ruleId": "SEC028", "level": "warning", "message": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on behalf of an authenticated user. Verify there's a compensating mechanism: API token auth, signed request, or explicit Same-Site cookie + Origin check."}, "properties": {"repobilityId": 125429, "scanner": "repobility-threat-engine", "fingerprint": "f37fa4c25c049f8e2c397e23e2ed164f565aeb7901fa598d52bfa88b5e55c0f1", "category": "csrf", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@csrf_exempt", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC028", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|f37fa4c25c049f8e2c397e23e2ed164f565aeb7901fa598d52bfa88b5e55c0f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/events/views.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "SEC028", "level": "warning", "message": {"text": "[SEC028] CSRF Protection Removed \u2014 @csrf_exempt on state-changing endpoint: @csrf_exempt removes Django's CSRF protection from a view. On a state-changing endpoint (POST/PUT/DELETE) this allows cross-site requests to perform actions on behalf of an authenticated user. Verify there's a compensating mechanism: API token auth, signed request, or explicit Same-Site cookie + Origin check."}, "properties": {"repobilityId": 125428, "scanner": "repobility-threat-engine", "fingerprint": "cc07c422844e1f81f81268f853b6df0beccc90e38da97f7b330ec8d860c3fae9", "category": "csrf", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "@csrf_exempt", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC028", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|cc07c422844e1f81f81268f853b6df0beccc90e38da97f7b330ec8d860c3fae9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/campaign/views.py"}, "region": {"startLine": 29}}}]}, {"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": 125425, "scanner": "repobility-threat-engine", "fingerprint": "3ba0a9adde6f26cabbc3f52c315a99b8efdd511dca4906399d2887b7c4ae288c", "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|3ba0a9adde6f26cabbc3f52c315a99b8efdd511dca4906399d2887b7c4ae288c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/search/utils.py"}, "region": {"startLine": 22}}}]}, {"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": 125424, "scanner": "repobility-threat-engine", "fingerprint": "0c6d0ea0154ab6cdd5a9de4ecc12731c1441968e02fd7954939e7e390d3befdc", "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|0c6d0ea0154ab6cdd5a9de4ecc12731c1441968e02fd7954939e7e390d3befdc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 85}}}]}, {"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": 125414, "scanner": "repobility-threat-engine", "fingerprint": "5dab9e0389b449ccf3521c2a9f378f17d68e66a869e2babdb52991c0a1e2ed57", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url=\"https://example.com", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|5dab9e0389b449ccf3521c2a9f378f17d68e66a869e2babdb52991c0a1e2ed57"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/nothing_personal/management/commands/load_np_fake_articles.py"}, "region": {"startLine": 167}}}]}, {"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": 125413, "scanner": "repobility-threat-engine", "fingerprint": "841f5a9e0f4c2cfa1fe0c1699ceb7634e975a846863f416987bd05773895fbae", "category": "quality", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url=\"https://example.com", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC134", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|841f5a9e0f4c2cfa1fe0c1699ceb7634e975a846863f416987bd05773895fbae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/factories/homepage_data.py"}, "region": {"startLine": 149}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `resolve` has cognitive complexity 19 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: elif=2, else=2, for=1, if=5, nested_bonus=5, recursion=4."}, "properties": {"repobilityId": 125380, "scanner": "repobility-threat-engine", "fingerprint": "55b1c49f34588175590f0c9fe0a53005fdd8aa48ed1605ab5e9c7a9e009701cb", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 19 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "resolve", "breakdown": {"if": 5, "for": 1, "elif": 2, "else": 2, "recursion": 4, "nested_bonus": 5}, "complexity": 19, "correlation_key": "fp|55b1c49f34588175590f0c9fe0a53005fdd8aa48ed1605ab5e9c7a9e009701cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/utils/helpers.py"}, "region": {"startLine": 88}}}]}, {"ruleId": "COMP001", "level": "warning", "message": {"text": "[COMP001] High cognitive complexity: Function `inject_images_into_data` has cognitive complexity 20 (SonarSource scale). Cognitive complexity measures how hard the function is for a human to understand \u2014 nested branches, boolean chains, and recursion all weigh in. Breakdown: elif=2, else=2, for=1, if=3, nested_bonus=9, recursion=3."}, "properties": {"repobilityId": 125379, "scanner": "repobility-threat-engine", "fingerprint": "278c9f5671efad80307fbc96b561a6dd57dbf27ba45454e64bd65dfa91cae321", "category": "quality", "severity": "medium", "confidence": 0.95, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "AST-derived cognitive complexity score = 20 (severity threshold for medium: 15+).", "evidence": {"scanner": "repobility-threat-engine", "function": "inject_images_into_data", "breakdown": {"if": 3, "for": 1, "elif": 2, "else": 2, "recursion": 3, "nested_bonus": 9}, "complexity": 20, "correlation_key": "fp|278c9f5671efad80307fbc96b561a6dd57dbf27ba45454e64bd65dfa91cae321"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/utils/helpers.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "CORE_LARGE_FILES", "level": "warning", "message": {"text": "Average file size is 501 lines (recommend <300)"}, "properties": {"repobilityId": 125368, "scanner": "repobility-core", "fingerprint": "d4653de080bda40bf299f0da8869e6542abfcbaae4fe99562bda5fa2e54f5856", "category": "quality", "severity": "medium", "confidence": null, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"rule_id": "CORE_LARGE_FILES", "scanner": "repobility-core", "correlation_key": "fp|d4653de080bda40bf299f0da8869e6542abfcbaae4fe99562bda5fa2e54f5856"}}}, {"ruleId": "WEB011", "level": "note", "message": {"text": "Public web app has no humans.txt"}, "properties": {"repobilityId": 125493, "scanner": "repobility-web-presence", "fingerprint": "bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1", "category": "quality", "severity": "low", "confidence": 0.5, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks like a public web app but no humans.txt file or route was discovered.", "evidence": {"rule_id": "WEB011", "scanner": "repobility-web-presence", "references": ["https://github.com/Lissy93/web-check"], "correlation_key": "fp|bdd551fbe1ab6405480e0d5755632562c2096cb9e9a6a071ef60e4c27a6873f1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "humans.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB008", "level": "note", "message": {"text": "Public docs site has no llms.txt"}, "properties": {"repobilityId": 125492, "scanner": "repobility-web-presence", "fingerprint": "cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76", "category": "quality", "severity": "low", "confidence": 0.64, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Repository looks public and documentation-heavy but no llms.txt file or route was discovered.", "evidence": {"rule_id": "WEB008", "scanner": "repobility-web-presence", "references": ["https://llmstxt.org/"], "correlation_key": "fp|cdce8ed8706710d39c3e7272dad572dd639cff74fd3d2ac62d8f6f522b891d76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "llms.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "WEB001", "level": "note", "message": {"text": "Public web app has no robots.txt"}, "properties": {"repobilityId": 125491, "scanner": "repobility-web-presence", "fingerprint": "cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4", "category": "quality", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository looks like a public web app but no robots.txt file or route was discovered.", "evidence": {"rule_id": "WEB001", "scanner": "repobility-web-presence", "references": ["https://www.rfc-editor.org/rfc/rfc9309", "https://github.com/Lissy93/web-check"], "correlation_key": "fp|cae3f2223945958e14d8eb90f7965fa26b47011cc5be29c2855a4054937e29c4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "robots.txt"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC016", "level": "note", "message": {"text": "App service does not wait for database health"}, "properties": {"repobilityId": 125478, "scanner": "repobility-docker", "fingerprint": "4925127554a8453c65663fe25615c9c341b293556340a2a0ae4f026ce8bd672c", "category": "docker", "severity": "low", "confidence": 0.68, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "App depends on a database-like service without a health-gated dependency.", "evidence": {"rule_id": "DKC016", "scanner": "repobility-docker", "service": "backend", "dependency": "postgres", "references": ["https://docs.docker.com/compose/how-tos/startup-order/"], "correlation_key": "fp|4925127554a8453c65663fe25615c9c341b293556340a2a0ae4f026ce8bd672c", "dependency_has_healthcheck": false}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 125477, "scanner": "repobility-docker", "fingerprint": "49a734132a17ba8b6533a048b485a56c4be0178dae5527cdd48a6ea9abc84b15", "category": "docker", "severity": "low", "confidence": 0.62, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "App-like service has no security_opt no-new-privileges setting.", "evidence": {"rule_id": "DKC010", "scanner": "repobility-docker", "service": "backend", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|49a734132a17ba8b6533a048b485a56c4be0178dae5527cdd48a6ea9abc84b15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 125476, "scanner": "repobility-docker", "fingerprint": "aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "A Docker build context should exclude secrets and repository metadata.", "evidence": {"rule_id": "DKR008", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|aea2ad92c68c4ee1f8432bb1ec25e7d45ac12c9e1790ac2d3fffe638b1acce12", "missing_patterns": [".env", "id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 125475, "scanner": "repobility-docker", "fingerprint": "2d1f2d77cefcb018e95b22a12846bff743ff62b65ba8e8eb426e77030323f4f3", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt install appears without --no-install-recommends.", "evidence": {"rule_id": "DKR011", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|2d1f2d77cefcb018e95b22a12846bff743ff62b65ba8e8eb426e77030323f4f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 152}}}]}, {"ruleId": "DKR010", "level": "note", "message": {"text": "Dockerfile leaves apt package indexes in the image layer"}, "properties": {"repobilityId": 125474, "scanner": "repobility-docker", "fingerprint": "9dfd9c64873152416fadbff87b60305b9add57925332142ec9c7f508417c0af8", "category": "docker", "severity": "low", "confidence": 0.74, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "apt update/install layer does not remove /var/lib/apt/lists.", "evidence": {"rule_id": "DKR010", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|9dfd9c64873152416fadbff87b60305b9add57925332142ec9c7f508417c0af8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 138}}}]}, {"ruleId": "DKR012", "level": "note", "message": {"text": "Dockerfile keeps pip download cache"}, "properties": {"repobilityId": 125472, "scanner": "repobility-docker", "fingerprint": "d774efc69d83a71cb45581d5f55aa79d0f199e419bd1406f26c4941df296d4a3", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "pip install appears without --no-cache-dir.", "evidence": {"rule_id": "DKR012", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "correlation_key": "fp|d774efc69d83a71cb45581d5f55aa79d0f199e419bd1406f26c4941df296d4a3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 96}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125471, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8fdced20f8c36c1e342dd5664eaedab1b1315b7a4989589e4ae881af7919b6e2", "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": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/latest_profile_list.py", "duplicate_line": 53, "correlation_key": "fp|8fdced20f8c36c1e342dd5664eaedab1b1315b7a4989589e4ae881af7919b6e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/profile_directory.py"}, "region": {"startLine": 124}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125470, "scanner": "repobility-ai-code-hygiene", "fingerprint": "cc123fd4322cca620c3d1215e886042acd14770f27a0334a20f1c0320c07cc4a", "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": "foundation_cms/blocks/link_block.py", "duplicate_line": 10, "correlation_key": "fp|cc123fd4322cca620c3d1215e886042acd14770f27a0334a20f1c0320c07cc4a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/link_block.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125469, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2342267bf45c3c652de6511022f6b111fd086ba34c9adebb94f2cbebc2d7fdbf", "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": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/current_events_slider_block.py", "duplicate_line": 21, "correlation_key": "fp|2342267bf45c3c652de6511022f6b111fd086ba34c9adebb94f2cbebc2d7fdbf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/foundation_slider_block.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125468, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d0c16e119c2f327df709260296876dd93683b0fba2670c674c5332f72dc38ba7", "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": "foundation_cms/blocks/common/link_block/link_blocks.py", "duplicate_line": 3, "correlation_key": "fp|d0c16e119c2f327df709260296876dd93683b0fba2670c674c5332f72dc38ba7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/common/link_blocks.py"}, "region": {"startLine": 3}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125467, "scanner": "repobility-ai-code-hygiene", "fingerprint": "2bb43a2a1201e60f877f30ee6f0406535359520cf1cde3d13f075feccf6745c3", "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": "foundation_cms/blocks/common/link_block/base_link_block.py", "duplicate_line": 2, "correlation_key": "fp|2bb43a2a1201e60f877f30ee6f0406535359520cf1cde3d13f075feccf6745c3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/common/base_link_block.py"}, "region": {"startLine": 2}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125466, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dd72936b06a767e58afa7d570631a092a92c3d65a8accac582115305b9cb07fe", "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": "foundation_cms/legacy_apps/mozfest/models.py", "duplicate_line": 108, "correlation_key": "fp|dd72936b06a767e58afa7d570631a092a92c3d65a8accac582115305b9cb07fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/customblocks/base_fields.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125465, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9e8b6ea323f650084433755922116d44377d05d5fcc704ea89e1a05ffb849165", "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": "foundation_cms/campaigns/models/petition.py", "duplicate_line": 18, "correlation_key": "fp|9e8b6ea323f650084433755922116d44377d05d5fcc704ea89e1a05ffb849165"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/campaigns.py"}, "region": {"startLine": 173}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125464, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c868854ea099daa13231acc9a2952d258b1c81e5367daa77c12a2954fe345fb6", "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": "foundation_cms/legacy_apps/wagtailpages/pagemodels/blog/blog.py", "duplicate_line": 43, "correlation_key": "fp|c868854ea099daa13231acc9a2952d258b1c81e5367daa77c12a2954fe345fb6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/campaign_page.py"}, "region": {"startLine": 57}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125463, "scanner": "repobility-ai-code-hygiene", "fingerprint": "94cd3b6d1a17127d93dd12ef126143c688e3d69439b32b16a88bfbc474b2ea74", "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": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/article_page.py", "duplicate_line": 40, "correlation_key": "fp|94cd3b6d1a17127d93dd12ef126143c688e3d69439b32b16a88bfbc474b2ea74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/campaign_page.py"}, "region": {"startLine": 53}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125462, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8734ab9742e8a7894c93e4d95887597ffb2175993ba85c063bc30ac111cd14e6", "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": "foundation_cms/legacy_apps/wagtailpages/pagemodels/blog/blog.py", "duplicate_line": 43, "correlation_key": "fp|8734ab9742e8a7894c93e4d95887597ffb2175993ba85c063bc30ac111cd14e6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/article_page.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125461, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e15eccd6e480c66dfde7c0144da8420532c97a082af034af0911bb1ede41e123", "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": "foundation_cms/legacy_apps/donate_banner/models.py", "duplicate_line": 40, "correlation_key": "fp|e15eccd6e480c66dfde7c0144da8420532c97a082af034af0911bb1ede41e123"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/donation_modal.py"}, "region": {"startLine": 56}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125460, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f9001d21f2001d91da9ea944676126fcc74267a0d4a7a1714327fc643d757ad6", "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": "foundation_cms/legacy_apps/static/js/foundation/template-js-handler/blog-hero-video-handler.js", "duplicate_line": 12, "correlation_key": "fp|f9001d21f2001d91da9ea944676126fcc74267a0d4a7a1714327fc643d757ad6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/foundation/template-js-handler/looping-video-handler.js"}, "region": {"startLine": 15}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125459, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b8dc4662e9df72efa6c8c62051710080ef18479659c45117636c68e1240cd75b", "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": "foundation_cms/legacy_apps/static/js/foundation/pages/mozfest/template-js-handler/home-banner.js", "duplicate_line": 45, "correlation_key": "fp|b8dc4662e9df72efa6c8c62051710080ef18479659c45117636c68e1240cd75b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/foundation/template-js-handler/looping-video-handler.js"}, "region": {"startLine": 14}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125458, "scanner": "repobility-ai-code-hygiene", "fingerprint": "169fc369ef0e5a78c18436a025f3acbccae9e31360397b66338e560bdc98c88b", "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": "foundation_cms/legacy_apps/static/js/foundation/pages/mozfest/template-js-handler/home-banner.js", "duplicate_line": 43, "correlation_key": "fp|169fc369ef0e5a78c18436a025f3acbccae9e31360397b66338e560bdc98c88b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/foundation/template-js-handler/blog-hero-video-handler.js"}, "region": {"startLine": 9}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125457, "scanner": "repobility-ai-code-hygiene", "fingerprint": "ad6882caf10909ebce0535df0a8490eb7f60674fc2bf44071c2f4a3cd82bcb7d", "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": "foundation_cms/legacy_apps/static/js/components/petition/locales.js", "duplicate_line": 2, "correlation_key": "fp|ad6882caf10909ebce0535df0a8490eb7f60674fc2bf44071c2f4a3cd82bcb7d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/tabbed-profile-directory/locales.js"}, "region": {"startLine": 2}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125456, "scanner": "repobility-ai-code-hygiene", "fingerprint": "80aa6bd47755d88f83f50e34663a9d06e3ceaf70d0971415f9707c91b8726743", "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": "foundation_cms/legacy_apps/static/js/components/carousel/carousel.js", "duplicate_line": 1, "correlation_key": "fp|80aa6bd47755d88f83f50e34663a9d06e3ceaf70d0971415f9707c91b8726743"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/foundation-carousel/foundation-carousel.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125455, "scanner": "repobility-ai-code-hygiene", "fingerprint": "999c4234894773901f232fa7769ca4eb9301786a808783aa996e0605ede2213c", "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": "foundation_cms/legacy_apps/static/js/buyers-guide/search/pni-toggle.js", "duplicate_line": 14, "correlation_key": "fp|999c4234894773901f232fa7769ca4eb9301786a808783aa996e0605ede2213c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/search/search-filter.js"}, "region": {"startLine": 202}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125454, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d8b1de30e5289ca8e72517218bf2cac231cf5cebac778846de6430b3f8a3ded4", "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": "foundation_cms/core/models/sitewide_donate_banner_page.py", "duplicate_line": 10, "correlation_key": "fp|d8b1de30e5289ca8e72517218bf2cac231cf5cebac778846de6430b3f8a3ded4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate_banner/models.py"}, "region": {"startLine": 161}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 125453, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bf4cc64224949f0c1281d905e7bdedec33dba8f8627a313bcb576e9c5cc75da7", "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": "foundation_cms/blocks/common/choices.py", "duplicate_line": 2, "correlation_key": "fp|bf4cc64224949f0c1281d905e7bdedec33dba8f8627a313bcb576e9c5cc75da7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/text_image_block.py"}, "region": {"startLine": 32}}}]}, {"ruleId": "SEC132", "level": "note", "message": {"text": "[SEC132] String concat where the language has interpolation (AI style drift): String built by concatenation where the language has cleaner interpolation (Python f-strings since 3.6, JS template literals since ES6). Not a vulnerability on its own, but a style signature of cross-language AI rewrites \u2014 the model wrote idiomatic Java/C# and then translated mechanically. When this style appears in only *some* files of a repo, it's a strong indicator of an AI-driven rewrite that needs a human review p"}, "properties": {"repobilityId": 125450, "scanner": "repobility-threat-engine", "fingerprint": "7e7470a5cef3f1498e594d480b14ed29678df83d445b5a8bd896f2964e62afec", "category": "quality", "severity": "low", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "\"https://player.vimeo.com/video/\" + videoId + \"?autoplay=1&muted=1\"", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC132", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|7e7470a5cef3f1498e594d480b14ed29678df83d445b5a8bd896f2964e62afec"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/static/js/blocks/hero_accordion.js"}, "region": {"startLine": 236}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 125384, "scanner": "repobility-threat-engine", "fingerprint": "cb78ed89089e06ba283f56d8d4544aff7adcbd317907b384cad9ecd10fc72f9b", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = h", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|69|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx"}, "region": {"startLine": 69}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 125383, "scanner": "repobility-threat-engine", "fingerprint": "c8258e659d414d92630ffda481e8864884b99687c2d0924f5fe611bafa51e720", "category": "injection", "severity": "low", "confidence": 0.4, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "evidence": {"match": ".innerHTML = `", "reason": "No user-input source (request/query/fetch/URL) found \u2014 may be static content", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.4, "correlation_key": "code|injection|token|44|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/static/wagtailadmin/js/topic-select-widget.js"}, "region": {"startLine": 44}}}]}, {"ruleId": "COMP001", "level": "note", "message": {"text": "[COMP001] High cognitive complexity: Function `safe_handle_image_block` 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=1, if=3, nested_bonus=4, ternary=1."}, "properties": {"repobilityId": 125378, "scanner": "repobility-threat-engine", "fingerprint": "c7587c2a0b0c3dc7774ddd975d28f7bf6e532295cacdbad2a8ef2d93aec3eff6", "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": "safe_handle_image_block", "breakdown": {"if": 3, "for": 1, "except": 1, "ternary": 1, "nested_bonus": 4}, "complexity": 10, "correlation_key": "fp|c7587c2a0b0c3dc7774ddd975d28f7bf6e532295cacdbad2a8ef2d93aec3eff6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/patches/wagtail_localize_image_block.py"}, "region": {"startLine": 5}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 125447, "scanner": "repobility-threat-engine", "fingerprint": "a02c7d65c358440ccd79484ddfbd7221c79731af4f70b7695d1b5b65f0ab3542", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|a02c7d65c358440ccd79484ddfbd7221c79731af4f70b7695d1b5b65f0ab3542"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/views.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 125446, "scanner": "repobility-threat-engine", "fingerprint": "6e0936d03df02c9251324555577ada71d7fa4148f91169cb738e09aaefa036d2", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|6e0936d03df02c9251324555577ada71d7fa4148f91169cb738e09aaefa036d2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/review_app_setup.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "MINED067", "level": "none", "message": {"text": "[MINED067] Python Requests No Timeout: requests.get/post/etc. without timeout= can hang forever."}, "properties": {"repobilityId": 125445, "scanner": "repobility-threat-engine", "fingerprint": "61c6441e022f0f22cbab4a4fee3373f15d660290ab9a5e0008d0f3e074c6e8ae", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-requests-no-timeout", "owasp": null, "cwe_ids": ["CWE-400"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348058+00:00", "triaged_in_corpus": 12, "observations_count": 45429, "ai_coder_pattern_id": 122}, "scanner": "repobility-threat-engine", "correlation_key": "fp|61c6441e022f0f22cbab4a4fee3373f15d660290ab9a5e0008d0f3e074c6e8ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/review_app_admin.py"}, "region": {"startLine": 43}}}]}, {"ruleId": "MINED049", "level": "none", "message": {"text": "[MINED049] Print Pii: Logging password/token/email/ssn directly to stdout."}, "properties": {"repobilityId": 125441, "scanner": "repobility-threat-engine", "fingerprint": "8a38f6fbe3d0c3e9ca305291fb1353f27ffc63f6c7c00beb222b362478e05a4d", "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|8a38f6fbe3d0c3e9ca305291fb1353f27ffc63f6c7c00beb222b362478e05a4d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/create_admin.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs: Debug or diagnostic code appears to print a credential-bearing value. This is a frequent AI-assisted coding failure: the helper exposes the exact value needed for troubleshooting."}, "properties": {"repobilityId": 125440, "scanner": "repobility-threat-engine", "fingerprint": "3b05c4286d71d80d04428471f973c06379635bc09a26890efc440426d8adc9d9", "category": "credential_exposure", "severity": "info", "confidence": 0.15, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "evidence": {"match": "print(\"\\nCreated superuser `admin` with password `admin`.\")", "reason": "Log message mentions credential-related metadata but does not print a credential-bearing value", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.15, "correlation_key": "secret|token|1|print ncreated superuser admin with password admin ."}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/create_admin.py"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED079", "level": "none", "message": {"text": "[MINED079] Off By One Slice: range(len(x)+1), arr[i+1:i+n+1], or while i<=len(arr) \u2014 off-by-one risk."}, "properties": {"repobilityId": 125439, "scanner": "repobility-threat-engine", "fingerprint": "697e27c53ae26c35acb192c334fd4a20304d47fcdc84b31de263c8093ea9ff44", "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": "off-by-one-slice", "owasp": null, "cwe_ids": ["CWE-193"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348121+00:00", "triaged_in_corpus": 12, "observations_count": 6443, "ai_coder_pattern_id": 19}, "scanner": "repobility-threat-engine", "correlation_key": "fp|697e27c53ae26c35acb192c334fd4a20304d47fcdc84b31de263c8093ea9ff44"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/faker/helpers.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED098", "level": "none", "message": {"text": "[MINED098] Global Scope Pollution: Attaching libraries/objects directly to the global window scope (e.g., `window.axios = axios;`) makes the code harder to test and increases the risk of naming collisions."}, "properties": {"repobilityId": 125438, "scanner": "repobility-threat-engine", "fingerprint": "da1c8b891501e6e9189e0f2f7c090b76edc2f490e8e9e099c7004a7f37dfeb5d", "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": "global-scope-pollution", "owasp": null, "cwe_ids": [], "languages": ["javascript"], "precision": 1.0, "promoted_at": "2026-05-18T15:01:13.611213+00:00", "triaged_in_corpus": 12, "observations_count": 173528, "ai_coder_pattern_id": 55}, "scanner": "repobility-threat-engine", "correlation_key": "fp|da1c8b891501e6e9189e0f2f7c090b76edc2f490e8e9e099c7004a7f37dfeb5d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/foundation/template-js-handler/publication-summary-bar.js"}, "region": {"startLine": 113}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 125435, "scanner": "repobility-threat-engine", "fingerprint": "4ad6d05680294900f8abdfb246dd5600b2804a0ae883056fe274f56d9c43a5f0", "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-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|4ad6d05680294900f8abdfb246dd5600b2804a0ae883056fe274f56d9c43a5f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/petition/donation-modal.jsx"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 125434, "scanner": "repobility-threat-engine", "fingerprint": "8602038c695940de8409cc2a444297bf78ac3ee93a3c3b168793e417a587ec66", "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-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8602038c695940de8409cc2a444297bf78ac3ee93a3c3b168793e417a587ec66"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/privacy-notice.jsx"}, "region": {"startLine": 14}}}]}, {"ruleId": "MINED058", "level": "none", "message": {"text": "[MINED058] React Dangerously Set Html: dangerouslySetInnerHTML bypasses Reacts JSX escaping. Pair with DOMPurify or never use with user data."}, "properties": {"repobilityId": 125433, "scanner": "repobility-threat-engine", "fingerprint": "fc47ae4b91e7134825c3ffabca6f5f6ad13021250ced7b301c8632a66825e4f6", "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-dangerously-set-html", "owasp": "A03:2021", "cwe_ids": ["CWE-79"], "languages": ["javascript", "typescript"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348037+00:00", "triaged_in_corpus": 12, "observations_count": 255650, "ai_coder_pattern_id": 49}, "scanner": "repobility-threat-engine", "correlation_key": "fp|fc47ae4b91e7134825c3ffabca6f5f6ad13021250ced7b301c8632a66825e4f6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/newsletter-signup/atoms/description.jsx"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 125427, "scanner": "repobility-threat-engine", "fingerprint": "2bd2a847e0e762c110975b3db9bbc2016cc9295dbab488452aa8d2dda2ca68ca", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|2bd2a847e0e762c110975b3db9bbc2016cc9295dbab488452aa8d2dda2ca68ca"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/move_page.py"}, "region": {"startLine": 19}}}]}, {"ruleId": "MINED064", "level": "none", "message": {"text": "[MINED064] Python Input Call: input() blocks for stdin. Inappropriate in services."}, "properties": {"repobilityId": 125426, "scanner": "repobility-threat-engine", "fingerprint": "120deae35009db0bb61e4b96b69e681a5dd7abb6735c6cca4b6fe2b39b7a3016", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-input-call", "owasp": null, "cwe_ids": [], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348050+00:00", "triaged_in_corpus": 12, "observations_count": 66378, "ai_coder_pattern_id": 124}, "scanner": "repobility-threat-engine", "correlation_key": "fp|120deae35009db0bb61e4b96b69e681a5dd7abb6735c6cca4b6fe2b39b7a3016"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/webp/utils.py"}, "region": {"startLine": 104}}}]}, {"ruleId": "MINED001", "level": "none", "message": {"text": "[MINED001] Bare Except Pass (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 125422, "scanner": "repobility-threat-engine", "fingerprint": "bd632c4ade7e75e1a901d5e2da5e3e85b36e57e91ccdfbe5098de1738a5edc96", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "bare-except-pass", "owasp": null, "cwe_ids": ["CWE-755"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347744+00:00", "triaged_in_corpus": 15, "observations_count": 1550824, "ai_coder_pattern_id": 6}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|bd632c4ade7e75e1a901d5e2da5e3e85b36e57e91ccdfbe5098de1738a5edc96", "aggregated_count": 3}}}, {"ruleId": "MINED019", "level": "none", "message": {"text": "[MINED019] Ssti Jinja From String (and 3 more): Same pattern found in 3 additional files. Review if needed."}, "properties": {"repobilityId": 125418, "scanner": "repobility-threat-engine", "fingerprint": "dddba5a0a3c85383be29c6c449cb964bb12d8a6fab196adf619d0c2ba8a3b8ce", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 3 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|dddba5a0a3c85383be29c6c449cb964bb12d8a6fab196adf619d0c2ba8a3b8ce", "aggregated_count": 3}}}, {"ruleId": "SEC128", "level": "none", "message": {"text": "[SEC128] Async function without await \u2014 fire-and-forget Promise (AI mistake) (and 45 more): Same pattern found in 45 additional files. Review if needed."}, "properties": {"repobilityId": 125412, "scanner": "repobility-threat-engine", "fingerprint": "471ffa7174a62d8dcbef143a79ba7fa07735ce567436d6eda29ce943de962131", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 45 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 45 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|471ffa7174a62d8dcbef143a79ba7fa07735ce567436d6eda29ce943de962131"}}}, {"ruleId": "MINED057", "level": "none", "message": {"text": "[MINED057] Todo Bomb: Code path with a TODO/FIXME/HACK comment that gates correctness \u2014 left for later but never resolved."}, "properties": {"repobilityId": 125408, "scanner": "repobility-threat-engine", "fingerprint": "30b234ee8e26105532712d6b9a56f3022dcd9f41043570dc77ebe4de0221bf96", "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": "todo-bomb", "owasp": null, "cwe_ids": [], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348035+00:00", "triaged_in_corpus": 10, "observations_count": 255662, "ai_coder_pattern_id": 4}, "scanner": "repobility-threat-engine", "correlation_key": "fp|30b234ee8e26105532712d6b9a56f3022dcd9f41043570dc77ebe4de0221bf96"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blog/models.py"}, "region": {"startLine": 10}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class (and 5 more): Same pattern found in 5 additional files. Review if needed."}, "properties": {"repobilityId": 125407, "scanner": "repobility-threat-engine", "fingerprint": "60d7a967589ada85a8f90bdffdc921455ffd03cd63344433da4c765149b88c10", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 5 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|60d7a967589ada85a8f90bdffdc921455ffd03cd63344433da4c765149b88c10", "aggregated_count": 5}}}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 125406, "scanner": "repobility-threat-engine", "fingerprint": "9d0266ef715d954801a781d97751cbec5e4b8bfa72ffa26f2535fa0e6a32b8ea", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|9d0266ef715d954801a781d97751cbec5e4b8bfa72ffa26f2535fa0e6a32b8ea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/article_page.py"}, "region": {"startLine": 189}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 125405, "scanner": "repobility-threat-engine", "fingerprint": "73024f1f4e501fd046ba9913a514967f46a23830aae07cef23996b0fcc0c667d", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|73024f1f4e501fd046ba9913a514967f46a23830aae07cef23996b0fcc0c667d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/blog/blog.py"}, "region": {"startLine": 85}}}]}, {"ruleId": "MINED072", "level": "none", "message": {"text": "[MINED072] Python Pass Only Class: class Foo: pass \u2014 stub waiting to be filled in."}, "properties": {"repobilityId": 125404, "scanner": "repobility-threat-engine", "fingerprint": "beaa8be72962efd21da80f7790b4b43008e4e6dcfa298529aba9804f5b01622b", "category": "quality", "severity": "info", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "python-pass-only-class", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348069+00:00", "triaged_in_corpus": 10, "observations_count": 14245, "ai_coder_pattern_id": 143}, "scanner": "repobility-threat-engine", "correlation_key": "fp|beaa8be72962efd21da80f7790b4b43008e4e6dcfa298529aba9804f5b01622b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/common/link_block/link_blocks.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED050", "level": "none", "message": {"text": "[MINED050] Stub Only Function (and 21 more): Same pattern found in 21 additional files. Review if needed."}, "properties": {"repobilityId": 125403, "scanner": "repobility-threat-engine", "fingerprint": "4892c4c75ca2a80d57af21598378172e3bfb9e1f7e24cdd7f4c773abcdde2ffa", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 21 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "stub-only-function", "owasp": null, "cwe_ids": ["CWE-1188"], "languages": ["python"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.348017+00:00", "triaged_in_corpus": 12, "observations_count": 633513, "ai_coder_pattern_id": 2}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|4892c4c75ca2a80d57af21598378172e3bfb9e1f7e24cdd7f4c773abcdde2ffa", "aggregated_count": 21}}}, {"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": 125402, "scanner": "repobility-threat-engine", "fingerprint": "f7348062b216fe5a3c38c677bd1ae99eb13ec72b0f5f248a44e2495c5d1aea15", "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|f7348062b216fe5a3c38c677bd1ae99eb13ec72b0f5f248a44e2495c5d1aea15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/fix_redirects.py"}, "region": {"startLine": 74}}}]}, {"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": 125401, "scanner": "repobility-threat-engine", "fingerprint": "a746756121703ac532975a78507c2da68de029de3d42fc0d7643bd05e86a2f7c", "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|a746756121703ac532975a78507c2da68de029de3d42fc0d7643bd05e86a2f7c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 86}}}]}, {"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": 125400, "scanner": "repobility-threat-engine", "fingerprint": "8048de2985ce02641ac611d407a5c5b6bf79036cdf19cad1aadad2dd99b5fc55", "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|8048de2985ce02641ac611d407a5c5b6bf79036cdf19cad1aadad2dd99b5fc55"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/common/link_block/link_blocks.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https (and 4 more): Same pattern found in 4 additional files. Review if needed."}, "properties": {"repobilityId": 125399, "scanner": "repobility-threat-engine", "fingerprint": "133d0321df668823d68fda7a262cc53d13053f2174d79a753e1fabffb7f20eec", "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": "http-not-https", "owasp": "A02:2021", "cwe_ids": ["CWE-319"], "precision": 0.917, "promoted_at": "2026-05-18T14:01:32.347999+00:00", "triaged_in_corpus": 12, "observations_count": 4113831, "ai_coder_pattern_id": 15}, "scanner": "repobility-threat-engine", "aggregated": true, "correlation_key": "fp|133d0321df668823d68fda7a262cc53d13053f2174d79a753e1fabffb7f20eec", "aggregated_count": 4}}}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 125398, "scanner": "repobility-threat-engine", "fingerprint": "ce14face8bfa109640852f626076131e4e21d722d84125133cf2ff9f1c186732", "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|ce14face8bfa109640852f626076131e4e21d722d84125133cf2ff9f1c186732"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate_banner/models.py"}, "region": {"startLine": 49}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 125397, "scanner": "repobility-threat-engine", "fingerprint": "4d373c7c2ecdd60ddc3825076f67f652d3cae1944285f74c58e028de9f66e0e5", "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|4d373c7c2ecdd60ddc3825076f67f652d3cae1944285f74c58e028de9f66e0e5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/gallery_hub/models/project_page.py"}, "region": {"startLine": 152}}}]}, {"ruleId": "MINED043", "level": "none", "message": {"text": "[MINED043] Http Not Https: Hardcoded http:// (not localhost) for endpoints that handle credentials or data."}, "properties": {"repobilityId": 125396, "scanner": "repobility-threat-engine", "fingerprint": "33617e87933d26c1689375dc81bd5aa038051e364beec51cf6e1778d57e0b184", "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|33617e87933d26c1689375dc81bd5aa038051e364beec51cf6e1778d57e0b184"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/common/link_block/base_link_block.py"}, "region": {"startLine": 77}}}]}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 29 more): Same pattern found in 29 additional files. Review if needed."}, "properties": {"repobilityId": 125395, "scanner": "repobility-threat-engine", "fingerprint": "063abbc1a988e6c8b43781a2091a8af2089bfaa08444dfc3e5781c1eafa01559", "category": "ssrf", "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": {"reason": "Deduplicated summary only: 29 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|063abbc1a988e6c8b43781a2091a8af2089bfaa08444dfc3e5781c1eafa01559"}}}, {"ruleId": "SEC111", "level": "none", "message": {"text": "[SEC111] Django mark_safe / |safe filter on user data (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 125391, "scanner": "repobility-threat-engine", "fingerprint": "34bbb9667561df045db3764dc4b9c4b8a3be88e6788b946ff2161d42198cb499", "category": "xss", "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": "SEC111", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|34bbb9667561df045db3764dc4b9c4b8a3be88e6788b946ff2161d42198cb499"}}}, {"ruleId": "SEC006", "level": "none", "message": {"text": "[SEC006] XSS Risk (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 125385, "scanner": "repobility-threat-engine", "fingerprint": "0b64731a0bb5e20f30de0a1dfe2e49fd944d3f8dfdb7ade4b5ab034f93f3f633", "category": "injection", "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": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|0b64731a0bb5e20f30de0a1dfe2e49fd944d3f8dfdb7ade4b5ab034f93f3f633"}}}, {"ruleId": "COMP001", "level": "none", "message": {"text": "[COMP001] High cognitive complexity (and 34 more): Same pattern found in 34 additional files. Review if needed."}, "properties": {"repobilityId": 125381, "scanner": "repobility-threat-engine", "fingerprint": "f32658a5bd3d365389dc9d8dcea6e6d2e8635eb72198c95a3e3592aeed9da33b", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 34 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"scanner": "repobility-threat-engine", "function": "safe_handle_image_block", "breakdown": {"if": 3, "for": 1, "except": 1, "ternary": 1, "nested_bonus": 4}, "aggregated": true, "complexity": 10, "correlation_key": "fp|f32658a5bd3d365389dc9d8dcea6e6d2e8635eb72198c95a3e3592aeed9da33b", "aggregated_count": 34}}}, {"ruleId": "MINED044", "level": "none", "message": {"text": "[MINED044] Js Console Log Prod (and 20 more): Same pattern found in 20 additional files. Review if needed."}, "properties": {"repobilityId": 125374, "scanner": "repobility-threat-engine", "fingerprint": "fb9fb002bf587f4fed1decfa21432ba221db6d030b7a6ee9ca0c881453dc1abd", "category": "quality", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 20 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"mined": true, "mining": {"slug": "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|fb9fb002bf587f4fed1decfa21432ba221db6d030b7a6ee9ca0c881453dc1abd", "aggregated_count": 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": 125373, "scanner": "repobility-threat-engine", "fingerprint": "95249732be5715befa283ec113911c30f38080d122d47b6d2d1c3b99d4ef2ac5", "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|95249732be5715befa283ec113911c30f38080d122d47b6d2d1c3b99d4ef2ac5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/components/creep-vote/creep-vote.jsx"}, "region": {"startLine": 125}}}]}, {"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": 125372, "scanner": "repobility-threat-engine", "fingerprint": "589c52ae260114eec5d7d95b84f099284bff3c89776638a97f12927f6afbfb6f", "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|589c52ae260114eec5d7d95b84f099284bff3c89776638a97f12927f6afbfb6f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/analytics-events.js"}, "region": {"startLine": 129}}}]}, {"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": 125371, "scanner": "repobility-threat-engine", "fingerprint": "3f6f3ddf3c752b056dd2c87d6055b3654b7264437278d46d711c4550e7f80dfc", "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|3f6f3ddf3c752b056dd2c87d6055b3654b7264437278d46d711c4550e7f80dfc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "copy-db.js"}, "region": {"startLine": 11}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `aws-actions/configure-aws-credentials` pinned to mutable ref `@v1`: `uses: aws-actions/configure-aws-credentials@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": 125600, "scanner": "repobility-supply-chain", "fingerprint": "5de408f05fb5b7e56705dbbbc85ab5ef905c7cb7135939441bbd8c6ee696b13f", "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|5de408f05fb5b7e56705dbbbc85ab5ef905c7cb7135939441bbd8c6ee696b13f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/maintenance-page.yml"}, "region": {"startLine": 17}}}]}, {"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": 125599, "scanner": "repobility-supply-chain", "fingerprint": "41037f435f898312b4655f849136d6f67ec4ee2406d007e7be7be9ae886e3f09", "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|41037f435f898312b4655f849136d6f67ec4ee2406d007e7be7be9ae886e3f09"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/maintenance-page.yml"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:15` unpinned: `container/services image: postgres:15` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 125598, "scanner": "repobility-supply-chain", "fingerprint": "f81019986349403827c1f094fe485e37801214ffc9baa6f1820577c3a32bc23b", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|f81019986349403827c1f094fe485e37801214ffc9baa6f1820577c3a32bc23b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 130}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:15` unpinned: `container/services image: postgres:15` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 125597, "scanner": "repobility-supply-chain", "fingerprint": "2890cf13ed0b71d4dda12db64908e68f3d3a5862ccd0ce26f299d9f4a27d4207", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|2890cf13ed0b71d4dda12db64908e68f3d3a5862ccd0ce26f299d9f4a27d4207"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 65}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@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": 125595, "scanner": "repobility-supply-chain", "fingerprint": "94ffd0b96f49a820e861d0887c75298d973e1994b7d5a779aa9a8cddc956a7f3", "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|94ffd0b96f49a820e861d0887c75298d973e1994b7d5a779aa9a8cddc956a7f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 175}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v4`: `uses: actions/setup-python@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": 125594, "scanner": "repobility-supply-chain", "fingerprint": "e0f187c7d8c75bf021b4f22990254374335bd857c340db98ece736e07a116719", "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|e0f187c7d8c75bf021b4f22990254374335bd857c340db98ece736e07a116719"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 170}}}]}, {"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": 125593, "scanner": "repobility-supply-chain", "fingerprint": "3d9fcb96d94cb3f694f7ecb2743cf0af5d638f88efa11aea43a3d84ae853244f", "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|3d9fcb96d94cb3f694f7ecb2743cf0af5d638f88efa11aea43a3d84ae853244f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 169}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@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": 125592, "scanner": "repobility-supply-chain", "fingerprint": "683094382247a15f130de2f673b2a64294f5b151e5eaca8e00a42f1d3fa57932", "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|683094382247a15f130de2f673b2a64294f5b151e5eaca8e00a42f1d3fa57932"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 102}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v4`: `uses: actions/setup-python@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": 125591, "scanner": "repobility-supply-chain", "fingerprint": "1ad3c39a867841f410e65259e00a8cddf490e5177accd93cd0d86647a39a6ec8", "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|1ad3c39a867841f410e65259e00a8cddf490e5177accd93cd0d86647a39a6ec8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 98}}}]}, {"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": 125590, "scanner": "repobility-supply-chain", "fingerprint": "5056fef146269b22f25732c3c2e364af6e180f6d16bd2dcc81a971fbdf544397", "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|5056fef146269b22f25732c3c2e364af6e180f6d16bd2dcc81a971fbdf544397"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 97}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v4`: `uses: actions/setup-python@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": 125589, "scanner": "repobility-supply-chain", "fingerprint": "8acd0b45585c89bbcd05138e5cfcd612868f3cd9fc3bf7815792093cfc2c92a0", "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|8acd0b45585c89bbcd05138e5cfcd612868f3cd9fc3bf7815792093cfc2c92a0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 40}}}]}, {"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": 125588, "scanner": "repobility-supply-chain", "fingerprint": "e5f1e5f63ff9386643a5d5d9116ee362f285676fb0894b72c8a7a9830d3e86f0", "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|e5f1e5f63ff9386643a5d5d9116ee362f285676fb0894b72c8a7a9830d3e86f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@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": 125587, "scanner": "repobility-supply-chain", "fingerprint": "af0a332204f7b4192fdd8185a3cd04120b32ac5043838cee0f0aac6cfc88a452", "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|af0a332204f7b4192fdd8185a3cd04120b32ac5043838cee0f0aac6cfc88a452"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 22}}}]}, {"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": 125586, "scanner": "repobility-supply-chain", "fingerprint": "3879b0d2280ea59c9898ec3c36ea0de0d7ff7355b1ae8958f2613001cee4b27b", "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|3879b0d2280ea59c9898ec3c36ea0de0d7ff7355b1ae8958f2613001cee4b27b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:13.2` unpinned: `container/services image: postgres:13.2` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 125585, "scanner": "repobility-supply-chain", "fingerprint": "0c3c2ae840d7272271788ec68525b73df9a771d556291ad90ae495ead2b82c2f", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|0c3c2ae840d7272271788ec68525b73df9a771d556291ad90ae495ead2b82c2f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@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": 125583, "scanner": "repobility-supply-chain", "fingerprint": "6448f066f66d1a004bc21683ae4fe919afe8af7b9c632744349fe1ff25f521fb", "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|6448f066f66d1a004bc21683ae4fe919afe8af7b9c632744349fe1ff25f521fb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 123}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v4`: `uses: actions/setup-python@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": 125582, "scanner": "repobility-supply-chain", "fingerprint": "98f5fd56c6da2c53500c61d94fb46d91357d8dbbc1058a2f1bc827c5e5ef4f34", "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|98f5fd56c6da2c53500c61d94fb46d91357d8dbbc1058a2f1bc827c5e5ef4f34"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 119}}}]}, {"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": 125581, "scanner": "repobility-supply-chain", "fingerprint": "2e731dec6e1f5ddfcdcb9116d55ef9bcc88b9cb079ac230aeac083e392c3dabe", "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|2e731dec6e1f5ddfcdcb9116d55ef9bcc88b9cb079ac230aeac083e392c3dabe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 116}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v7`: `uses: actions/github-script@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 125580, "scanner": "repobility-supply-chain", "fingerprint": "4b12d284d80d0566fc1b2f6f43ee39913b7001a969dfd5c1ca1ab7396901b9db", "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|4b12d284d80d0566fc1b2f6f43ee39913b7001a969dfd5c1ca1ab7396901b9db"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED126", "level": "error", "message": {"text": "[MINED126] Workflow container/services image `postgres:13.2` unpinned: `container/services image: postgres:13.2` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines."}, "properties": {"repobilityId": 125579, "scanner": "repobility-supply-chain", "fingerprint": "a40d69d4739a0933f541742564f89e86548d17bf334b6d8277dbc46fb9467df2", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "gha-container-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["yaml"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|a40d69d4739a0933f541742564f89e86548d17bf334b6d8277dbc46fb9467df2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 57}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-node` pinned to mutable ref `@v4`: `uses: actions/setup-node@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": 125577, "scanner": "repobility-supply-chain", "fingerprint": "0879c9b81f5d5f4a9a2e2831b9fad88c79bc470b738bc288859c98700a1f4120", "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|0879c9b81f5d5f4a9a2e2831b9fad88c79bc470b738bc288859c98700a1f4120"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 105}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/setup-python` pinned to mutable ref `@v4`: `uses: actions/setup-python@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": 125576, "scanner": "repobility-supply-chain", "fingerprint": "cdf21f79b363d6746103b30e2061fea51b8d49448e67ba2f94d715b28823e915", "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|cdf21f79b363d6746103b30e2061fea51b8d49448e67ba2f94d715b28823e915"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 101}}}]}, {"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": 125575, "scanner": "repobility-supply-chain", "fingerprint": "39239e1f0d634739b450409fbb746684a89844326825dcad6ca01726af349f5e", "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|39239e1f0d634739b450409fbb746684a89844326825dcad6ca01726af349f5e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 98}}}]}, {"ruleId": "MINED115", "level": "error", "message": {"text": "[MINED115] Action `actions/github-script` pinned to mutable ref `@v7`: `uses: actions/github-script@v7` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lock with Dependabot or renovate."}, "properties": {"repobilityId": 125574, "scanner": "repobility-supply-chain", "fingerprint": "3e690b6b647846645385948068072cc334ca8f20725194a05823438b6598c23c", "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|3e690b6b647846645385948068072cc334ca8f20725194a05823438b6598c23c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 27}}}]}, {"ruleId": "MINED121", "level": "error", "message": {"text": "[MINED121] requirements.txt installs from `wagtail-localize-git @ git+https://github.com/robd...` (git/URL): Pip requirement points to a VCS URL or direct download. Bypasses PyPI's integrity check + scanning. If the host or branch tip changes, the next `pip install` pulls a different package \u2014 no diff visible to reviewers."}, "properties": {"repobilityId": 125573, "scanner": "repobility-supply-chain", "fingerprint": "fb521f4fbb7f46e21929d358e8e2b2a22881971150370f61ad4933b84c48b61a", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "pip-install-git-or-url", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["python"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|fb521f4fbb7f46e21929d358e8e2b2a22881971150370f61ad4933b84c48b61a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "requirements.txt"}, "region": {"startLine": 296}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `python:3.11-slim-bookworm` not pinned by digest: `FROM python:3.11-slim-bookworm` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 125572, "scanner": "repobility-supply-chain", "fingerprint": "d03c80d9a6fe84e3087a5c642e34c588855f64b79398e70a33ab9f74219e9c31", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|d03c80d9a6fe84e3087a5c642e34c588855f64b79398e70a33ab9f74219e9c31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 33}}}]}, {"ruleId": "MINED118", "level": "error", "message": {"text": "[MINED118] Dockerfile FROM `node:20-bookworm-slim` not pinned by digest: `FROM node:20-bookworm-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity."}, "properties": {"repobilityId": 125571, "scanner": "repobility-supply-chain", "fingerprint": "dadd355941f02b2808d2c145e3a5cf4c9817881b55e23a7404f25d9ef8aa467e", "category": "dependency", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "docker-from-unpinned", "owasp": "A08:2021", "cwe_ids": ["CWE-829"], "languages": ["dockerfile"], "observations_count": 0}, "scanner": "repobility-supply-chain", "correlation_key": "fp|dadd355941f02b2808d2c145e3a5cf4c9817881b55e23a7404f25d9ef8aa467e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 2}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.ensure_related_posts has no auth: Handler `test_clean_calls_ensure_related_posts` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 125570, "scanner": "repobility-route-auth", "fingerprint": "71cb2f1d48b5d9ccde5ac34f684c57afd491cb2992924a3efcba923a9504c521", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|71cb2f1d48b5d9ccde5ac34f684c57afd491cb2992924a3efcba923a9504c521"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/blog/test_blog.py"}, "region": {"startLine": 189}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.get_missing_related_posts has no auth: Handler `test_ensure_related_posts_calls_get_missing_related_posts` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 125569, "scanner": "repobility-route-auth", "fingerprint": "91708419bd1c5e6eb4e3e57b7bf69d17fa046398801d0ee96ffbb547cbcc0c4c", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|91708419bd1c5e6eb4e3e57b7bf69d17fa046398801d0ee96ffbb547cbcc0c4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/blog/test_blog.py"}, "region": {"startLine": 165}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.get_missing_related_posts has no auth: Handler `test_get_context_with_no_related_posts_no_tag_related_posts_when_preview` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 125568, "scanner": "repobility-route-auth", "fingerprint": "028689670a8d0a19326881eda20fd9036f2a42111770c0c6cd278f894b476692", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|028689670a8d0a19326881eda20fd9036f2a42111770c0c6cd278f894b476692"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/blog/test_blog.py"}, "region": {"startLine": 68}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.wagtailpages.pagemodels.blog.blog.BlogPage.get_missing_related_posts has no auth: Handler `test_get_context_with_no_related_posts_no_tag_related_posts_not_preview` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 125567, "scanner": "repobility-route-auth", "fingerprint": "45f053589657357ecac142ea0398384fb7765f9cbb55b27000aabf662f8dc222", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|45f053589657357ecac142ea0398384fb7765f9cbb55b27000aabf662f8dc222"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/blog/test_blog.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED112", "level": "error", "message": {"text": "[MINED112] FastAPI PATCH foundation_cms.legacy_apps.events.views.basket has no auth: Handler `test_calls_basket_api` is registered with router/app.patch(...) but no Depends/Security parameter is declared and no auth marker appears in the function body."}, "properties": {"repobilityId": 125566, "scanner": "repobility-route-auth", "fingerprint": "3d3bc6b28e5f44d944c9171cce0bf9198a274104ff47786ee49b6c19dbff35f0", "category": "quality", "severity": "high", "confidence": 0.8, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"mined": true, "mining": {"slug": "fastapi-destructive-unauth", "owasp": "A01:2021", "cwe_ids": ["CWE-306", "CWE-862"], "languages": ["python", "javascript"], "observations_count": 10455}, "scanner": "repobility-route-auth", "correlation_key": "fp|3d3bc6b28e5f44d944c9171cce0bf9198a274104ff47786ee49b6c19dbff35f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/events/tests.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_serve_shows_children_titles: Test function `test_serve_shows_children_titles` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125558, "scanner": "repobility-ast-engine", "fingerprint": "65caada799e96f1649015a8129c1c0928289f30f0f4554f6ceb5681e2af1c6b6", "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|65caada799e96f1649015a8129c1c0928289f30f0f4554f6ceb5681e2af1c6b6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py"}, "region": {"startLine": 129}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_templates_used: Test function `test_templates_used` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125557, "scanner": "repobility-ast-engine", "fingerprint": "bffc865d68a8fd7f89565f4130ffa36054f6e430ee1fed9ec6234b6169a54dbf", "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|bffc865d68a8fd7f89565f4130ffa36054f6e430ee1fed9ec6234b6169a54dbf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py"}, "region": {"startLine": 112}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_children: Test function `test_children` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125556, "scanner": "repobility-ast-engine", "fingerprint": "e9146984c7a92dcd27c0b475844147b24cec52ba1f2b65aed0e4a0b966e3d940", "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|e9146984c7a92dcd27c0b475844147b24cec52ba1f2b65aed0e4a0b966e3d940"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parents: Test function `test_parents` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125555, "scanner": "repobility-ast-engine", "fingerprint": "c2667bd36acb0b64b8a04b841055d7a7d058dbd55e10162209e944d93795c5fa", "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|c2667bd36acb0b64b8a04b841055d7a7d058dbd55e10162209e944d93795c5fa"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_factory: Test function `test_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125554, "scanner": "repobility-ast-engine", "fingerprint": "8ecd518e791915c622a5477feaea4c3ed32ae3210eeee32f08dcc4351f63d902", "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|8ecd518e791915c622a5477feaea4c3ed32ae3210eeee32f08dcc4351f63d902"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_editorial_content_index.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_template: Test function `test_template` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125553, "scanner": "repobility-ast-engine", "fingerprint": "a9b16130cb7a98148a3813620ff90f9dea6cea2492cc715220a4d088e084c002", "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|a9b16130cb7a98148a3813620ff90f9dea6cea2492cc715220a4d088e084c002"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_consumer_creepometer_page.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_children: Test function `test_children` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125552, "scanner": "repobility-ast-engine", "fingerprint": "fe6db070b0cc75518f10fe04d86302ae88968edad6c0dd02a803a4e5994e2059", "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|fe6db070b0cc75518f10fe04d86302ae88968edad6c0dd02a803a4e5994e2059"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_consumer_creepometer_page.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parents: Test function `test_parents` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125551, "scanner": "repobility-ast-engine", "fingerprint": "12c0aee521c7ccc97e8c8b98c4a0f673ffb44cbc6f55355c2721c5404e8047a2", "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|12c0aee521c7ccc97e8c8b98c4a0f673ffb44cbc6f55355c2721c5404e8047a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_consumer_creepometer_page.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_factory: Test function `test_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125550, "scanner": "repobility-ast-engine", "fingerprint": "8579e252c8113214773523db7f00efec14bc00795eeb657b806c4f7354339e71", "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|8579e252c8113214773523db7f00efec14bc00795eeb657b806c4f7354339e71"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_consumer_creepometer_page.py"}, "region": {"startLine": 9}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_factory: Test function `test_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125549, "scanner": "repobility-ast-engine", "fingerprint": "6e44d1e0a31bec8fb0b0c336b2c398b0819d1e705785e21974f254df4e9a1fe4", "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|6e44d1e0a31bec8fb0b0c336b2c398b0819d1e705785e21974f254df4e9a1fe4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/buyersguide/test_taxonomies.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_valid_notice_without_image_and_alt_text: Test function `test_valid_notice_without_image_and_alt_text` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125544, "scanner": "repobility-ast-engine", "fingerprint": "b92a1039db69529e18756432ab3d8c87c861f6f968fc2c07d914221a1e3a8138", "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|b92a1039db69529e18756432ab3d8c87c861f6f968fc2c07d914221a1e3a8138"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/snippets/test_help_page_notice.py"}, "region": {"startLine": 59}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_valid_help_page_notice: Test function `test_valid_help_page_notice` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125543, "scanner": "repobility-ast-engine", "fingerprint": "d20f56855d7c3f40535e522b9ebcf52a0eaaef16df1207b77a6d571fbfc9212f", "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|d20f56855d7c3f40535e522b9ebcf52a0eaaef16df1207b77a6d571fbfc9212f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/snippets/test_help_page_notice.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_help_page_notice_factory: Test function `test_help_page_notice_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125542, "scanner": "repobility-ast-engine", "fingerprint": "32ed18ca2e581cf3c9c1cd8516ab71f160f177c52932e78b47ecc183bdb20b4a", "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|32ed18ca2e581cf3c9c1cd8516ab71f160f177c52932e78b47ecc183bdb20b4a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/snippets/test_help_page_notice.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_page_displays_help_page_notice: Test function `test_page_displays_help_page_notice` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125541, "scanner": "repobility-ast-engine", "fingerprint": "0b5fc5045228ba792cfdaff3164f39463548aedba588e64c476d49583d247a94", "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|0b5fc5045228ba792cfdaff3164f39463548aedba588e64c476d49583d247a94"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_help_page.py"}, "region": {"startLine": 94}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_template: Test function `test_template` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125540, "scanner": "repobility-ast-engine", "fingerprint": "4d7a3195c8b72fab27926b43c945022538e09138832ab76407bff5baa8fa7947", "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|4d7a3195c8b72fab27926b43c945022538e09138832ab76407bff5baa8fa7947"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_help_page.py"}, "region": {"startLine": 58}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_subpage_types: Test function `test_subpage_types` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125539, "scanner": "repobility-ast-engine", "fingerprint": "ceec3075e5da90cb309ea377a5a12a739a2a66a1a61fe4de73e823b73ce2ce02", "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|ceec3075e5da90cb309ea377a5a12a739a2a66a1a61fe4de73e823b73ce2ce02"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_help_page.py"}, "region": {"startLine": 39}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parent_page_types: Test function `test_parent_page_types` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125538, "scanner": "repobility-ast-engine", "fingerprint": "260f6b08893342b6b440042df79e4e91684c49dda9b8bb604a646bde9b7f3f2f", "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|260f6b08893342b6b440042df79e4e91684c49dda9b8bb604a646bde9b7f3f2f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_help_page.py"}, "region": {"startLine": 30}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_page_factory: Test function `test_page_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125537, "scanner": "repobility-ast-engine", "fingerprint": "643ae7fad2ef3750df7a2c1d5c796d12477bcdfaed85e8d4da7b763e4d40ae76", "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|643ae7fad2ef3750df7a2c1d5c796d12477bcdfaed85e8d4da7b763e4d40ae76"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_help_page.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_template: Test function `test_template` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125536, "scanner": "repobility-ast-engine", "fingerprint": "824e44152a11b0671e897b46b866e7c2523f76817e9de0c73b8d374756b2d9f4", "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|824e44152a11b0671e897b46b866e7c2523f76817e9de0c73b8d374756b2d9f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_landing_page.py"}, "region": {"startLine": 55}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_subpage_types: Test function `test_subpage_types` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125535, "scanner": "repobility-ast-engine", "fingerprint": "f901ff68f864ed01a9565602a0f56e1d6794a07a96e76d34ec4f4ee556d2f16a", "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|f901ff68f864ed01a9565602a0f56e1d6794a07a96e76d34ec4f4ee556d2f16a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_landing_page.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_parent_page_types: Test function `test_parent_page_types` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125534, "scanner": "repobility-ast-engine", "fingerprint": "1681fc4ab917a3ce48826a6f2a431c46aeb93b3ebcfad47bbf5c4382fa7fb4af", "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|1681fc4ab917a3ce48826a6f2a431c46aeb93b3ebcfad47bbf5c4382fa7fb4af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_landing_page.py"}, "region": {"startLine": 27}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_page_factory: Test function `test_page_factory` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125533, "scanner": "repobility-ast-engine", "fingerprint": "844d014665e470e4d07af948aeda88941cd11ecf8406ed2b7288bf2e26097332", "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|844d014665e470e4d07af948aeda88941cd11ecf8406ed2b7288bf2e26097332"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate/tests/test_landing_page.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_highlight_creation: Test function `test_highlight_creation` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125532, "scanner": "repobility-ast-engine", "fingerprint": "b7fbec13c61e4fd569f9a5eacae11a6e2fae2fcf7d7b4762eaf022d460071231", "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|b7fbec13c61e4fd569f9a5eacae11a6e2fae2fcf7d7b4762eaf022d460071231"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/highlights/tests/tests_factory.py"}, "region": {"startLine": 13}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_no_migrations_missing: Test function `test_no_migrations_missing` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125531, "scanner": "repobility-ast-engine", "fingerprint": "d4a6b1b46e56922f5d6df64a242ad1478eedf92da4aaa5f17e005acc5bf104e3", "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|d4a6b1b46e56922f5d6df64a242ad1478eedf92da4aaa5f17e005acc5bf104e3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/tests/test_migrations.py"}, "region": {"startLine": 8}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.animated_webp_ready` used but never assigned in __init__: Method `get_rendition` of class `FoundationCustomImage` reads `self.animated_webp_ready`, 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": 125525, "scanner": "repobility-ast-engine", "fingerprint": "51d5544f6bdad9e420befea6eaa29dc8a9dfc3afc61fd661728794b145aea0a1", "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|51d5544f6bdad9e420befea6eaa29dc8a9dfc3afc61fd661728794b145aea0a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 114}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125524, "scanner": "repobility-ast-engine", "fingerprint": "9345b28e84f07841a14e111d3dd8e56ddc2651d30680c37dd2483b92cef93279", "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|9345b28e84f07841a14e111d3dd8e56ddc2651d30680c37dd2483b92cef93279"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 79}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125523, "scanner": "repobility-ast-engine", "fingerprint": "5c283e973235db68433c17601dcbb3ec8a090c9ba999b4a2344282318c71b3a2", "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|5c283e973235db68433c17601dcbb3ec8a090c9ba999b4a2344282318c71b3a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 84}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125522, "scanner": "repobility-ast-engine", "fingerprint": "399715c8afc52885e8f451aaedbd58a928b6329e59cb622904f2f114090ff5cb", "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|399715c8afc52885e8f451aaedbd58a928b6329e59cb622904f2f114090ff5cb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 76}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125521, "scanner": "repobility-ast-engine", "fingerprint": "6a53df51ec8cd66837b5db2067b5014e22e62382b817c952a0b805bc168cbe5b", "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|6a53df51ec8cd66837b5db2067b5014e22e62382b817c952a0b805bc168cbe5b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 75}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125520, "scanner": "repobility-ast-engine", "fingerprint": "c018f6e35d7b6b381fb66a12efc349731dba67050a142d8a2ffede87ad9896ac", "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|c018f6e35d7b6b381fb66a12efc349731dba67050a142d8a2ffede87ad9896ac"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 74}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125519, "scanner": "repobility-ast-engine", "fingerprint": "92885a971b26f1ba37ef2a6c4dee37d04bd0a36797ae928ef98704c2fdeb299a", "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|92885a971b26f1ba37ef2a6c4dee37d04bd0a36797ae928ef98704c2fdeb299a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 91}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125518, "scanner": "repobility-ast-engine", "fingerprint": "d68e59d49d677e76c82cbc1ca61e68bbf4ab07621b33bd1ec83cf55d70504d97", "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|d68e59d49d677e76c82cbc1ca61e68bbf4ab07621b33bd1ec83cf55d70504d97"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 66}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125517, "scanner": "repobility-ast-engine", "fingerprint": "65f853efd1a7e89698c362ddaa6378f18659a5e941620c621b047a7e48c387a9", "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|65f853efd1a7e89698c362ddaa6378f18659a5e941620c621b047a7e48c387a9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 67}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125516, "scanner": "repobility-ast-engine", "fingerprint": "e57944f293ca9b834321111ce6f723067723408fc26826c9f1013014de0c64bd", "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|e57944f293ca9b834321111ce6f723067723408fc26826c9f1013014de0c64bd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 63}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `save` of class `FoundationCustomImage` reads `self.file`, 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": 125515, "scanner": "repobility-ast-engine", "fingerprint": "fae892b7e66e211d78c9745d3e3900288c9a31ad220394790159b2e0c6121599", "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|fae892b7e66e211d78c9745d3e3900288c9a31ad220394790159b2e0c6121599"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 62}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `animated_webp_ready` of class `FoundationCustomImage` reads `self.file`, 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": 125514, "scanner": "repobility-ast-engine", "fingerprint": "582fd177b34c6feac5e139b4d97c011032926a38fbfd45fceffde5edb9128686", "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|582fd177b34c6feac5e139b4d97c011032926a38fbfd45fceffde5edb9128686"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `animated_webp_ready` of class `FoundationCustomImage` reads `self.file`, 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": 125513, "scanner": "repobility-ast-engine", "fingerprint": "d99db5226057629ef4eb2df9b8f18eb5b95c5dba3a74aab1f4a55233aae139ca", "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|d99db5226057629ef4eb2df9b8f18eb5b95c5dba3a74aab1f4a55233aae139ca"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 46}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.file` used but never assigned in __init__: Method `animated_webp_ready` of class `FoundationCustomImage` reads `self.file`, 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": 125512, "scanner": "repobility-ast-engine", "fingerprint": "2bee6cf32abd51ffa41cebea9d4242b9fa7ab4a925bfe4b9d168881aa80a9f01", "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|2bee6cf32abd51ffa41cebea9d4242b9fa7ab4a925bfe4b9d168881aa80a9f01"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 45}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.pk` used but never assigned in __init__: Method `animated_webp_ready` of class `FoundationCustomImage` reads `self.pk`, 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": 125511, "scanner": "repobility-ast-engine", "fingerprint": "9b63cea7362831d21bd039ccbe6d958d1f2dab52749f2dad6f5aa6f4a30e5b6b", "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|9b63cea7362831d21bd039ccbe6d958d1f2dab52749f2dad6f5aa6f4a30e5b6b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 42}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_platform_display` used but never assigned in __init__: Method `aria_label` of class `FooterSocialLink` reads `self.get_platform_display`, 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": 125510, "scanner": "repobility-ast-engine", "fingerprint": "f134b622cb60be762d923755cf49101bf97cd5abc0b61b02959cccf22e16cacb", "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|f134b622cb60be762d923755cf49101bf97cd5abc0b61b02959cccf22e16cacb"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/models.py"}, "region": {"startLine": 236}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_platform_display` used but never assigned in __init__: Method `__str__` of class `FooterSocialLink` reads `self.get_platform_display`, 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": 125509, "scanner": "repobility-ast-engine", "fingerprint": "7ef9b26d9efb3823758ec2a657b071fbb0102e9b40a9f655bb0545a1756bdfb7", "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|7ef9b26d9efb3823758ec2a657b071fbb0102e9b40a9f655bb0545a1756bdfb7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/models.py"}, "region": {"startLine": 226}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_preview_template` used but never assigned in __init__: Method `serve_preview` of class `SiteFooter` reads `self.get_preview_template`, 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": 125508, "scanner": "repobility-ast-engine", "fingerprint": "706be25716556c37614b0d8c05e8e13d3e99619f2d5c3e29ab0d86b00dd93e6e", "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|706be25716556c37614b0d8c05e8e13d3e99619f2d5c3e29ab0d86b00dd93e6e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/models.py"}, "region": {"startLine": 98}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_preview_context` used but never assigned in __init__: Method `serve_preview` of class `SiteFooter` reads `self.get_preview_context`, 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": 125507, "scanner": "repobility-ast-engine", "fingerprint": "269f97c0e07dd11771a4318937af87cb30df4003312f258cbc9743b3d31f96a4", "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|269f97c0e07dd11771a4318937af87cb30df4003312f258cbc9743b3d31f96a4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/models.py"}, "region": {"startLine": 97}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get` used but never assigned in __init__: Method `get_file_link` of class `LinkValue` reads `self.get`, 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": 125506, "scanner": "repobility-ast-engine", "fingerprint": "c737cb98fe334277e9fc3b71f43f7c7ebc550e50f39fb87b9c6ca48382851f17", "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|c737cb98fe334277e9fc3b71f43f7c7ebc550e50f39fb87b9c6ca48382851f17"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/link_block.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get` used but never assigned in __init__: Method `get_phone_link` of class `LinkValue` reads `self.get`, 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": 125505, "scanner": "repobility-ast-engine", "fingerprint": "68d47c4cc6beb62151cd7455d5095825f428ff921d11620f5eeffdf933195f05", "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|68d47c4cc6beb62151cd7455d5095825f428ff921d11620f5eeffdf933195f05"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/link_block.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get` used but never assigned in __init__: Method `get_anchor_link` of class `LinkValue` reads `self.get`, 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": 125504, "scanner": "repobility-ast-engine", "fingerprint": "9f8be8d16748ad6e0255146a84582ff4c4f131de97564f79b0bc3461bb83c1c9", "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|9f8be8d16748ad6e0255146a84582ff4c4f131de97564f79b0bc3461bb83c1c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/link_block.py"}, "region": {"startLine": 18}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get` used but never assigned in __init__: Method `get_email_link` of class `LinkValue` reads `self.get`, 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": 125503, "scanner": "repobility-ast-engine", "fingerprint": "f7cb09e8678dd30fb4d1f9a8ba63aeec493d2e740b26d03aa90c8e828ba95b33", "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|f7cb09e8678dd30fb4d1f9a8ba63aeec493d2e740b26d03aa90c8e828ba95b33"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/link_block.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get` used but never assigned in __init__: Method `icon_alt_text` of class `IconInfoGridItemValue` reads `self.get`, 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": 125502, "scanner": "repobility-ast-engine", "fingerprint": "26d1aa15c7e098ebda9af83e1697797348d0c310cb92afb6fbbf3fc71408773d", "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|26d1aa15c7e098ebda9af83e1697797348d0c310cb92afb6fbbf3fc71408773d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/icon_info_grid_block.py"}, "region": {"startLine": 21}}}]}, {"ruleId": "MINED108", "level": "error", "message": {"text": "[MINED108] `self.get_wagtail_site` used but never assigned in __init__: Method `items` of class `CustomSitemap` reads `self.get_wagtail_site`, 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": 125501, "scanner": "repobility-ast-engine", "fingerprint": "85136027afb770464ce3605d743d5f8143cb65fb0d50b95e80f019847ad653c9", "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|85136027afb770464ce3605d743d5f8143cb65fb0d50b95e80f019847ad653c9"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/sitemaps.py"}, "region": {"startLine": 12}}}]}, {"ruleId": "MINED106", "level": "error", "message": {"text": "[MINED106] Phantom test coverage: test_python: Test function `test_python` runs code but contains no assert / expect / should call \u2014 it passes regardless of behaviour. Adds line coverage without verifying anything."}, "properties": {"repobilityId": 125496, "scanner": "repobility-ast-engine", "fingerprint": "d6049f3f66be75ac0e8d2733eedb20a13952fa636509ce55e4ebf30e3f9e018e", "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|d6049f3f66be75ac0e8d2733eedb20a13952fa636509ce55e4ebf30e3f9e018e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tasks.py"}, "region": {"startLine": 400}}}]}, {"ruleId": "AUC003", "level": "error", "message": {"text": "[AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: ANY /^(?P<pk>[0-9]+)/."}, "properties": {"repobilityId": 125483, "scanner": "repobility-access-control", "fingerprint": "c1e9358348c3f0cbca4026c0c48391aef3930f5f1ee2080b5bbfb1d4fdedfbee", "category": "auth", "severity": "high", "confidence": 0.7, "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": "/^(?P<pk>[0-9]+)/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|7|auc003", "duplicate_count": 1, "identity_targets": ["unknown", "owner"], "duplicate_rule_ids": ["AUC003"], "duplicate_scanners": ["repobility-access-control"], "duplicate_fingerprints": ["8dc94ecc60472a43cd4f758f245a67b950f865aad6074a7ad8aed761060390f4", "c1e9358348c3f0cbca4026c0c48391aef3930f5f1ee2080b5bbfb1d4fdedfbee"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/news/urls.py"}, "region": {"startLine": 7}}}]}, {"ruleId": "DKC011", "level": "error", "message": {"text": "Database service publishes a host port"}, "properties": {"repobilityId": 125479, "scanner": "repobility-docker", "fingerprint": "c71b06431482a95728875ab55dace016bdaeb760f2ab4a2c9aee7dae10742736", "category": "docker", "severity": "high", "confidence": 0.84, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Database-like image publishes host ports without a loopback-only bind.", "evidence": {"ports": [{"raw": "5678:5432", "target": "5432", "host_ip": "", "published": "5678"}], "rule_id": "DKC011", "scanner": "repobility-docker", "service": "postgres", "references": ["https://docs.docker.com/compose/how-tos/environment-variables/best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "exposure_scope": "public", "correlation_key": "fp|c71b06431482a95728875ab55dace016bdaeb760f2ab4a2c9aee7dae10742736"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yml"}, "region": {"startLine": 66}}}]}, {"ruleId": "SEC030", "level": "error", "message": {"text": "[SEC030] Open Redirect \u2014 user-controlled redirect target: Redirect target is taken directly from user input without validating that the destination is local to the site. Attackers craft phishing URLs that appear to come from your domain but land on attacker-controlled pages \u2014 common in OAuth callback flows, post-login redirects, and `next=` parameters. CWE-601."}, "properties": {"repobilityId": 125448, "scanner": "repobility-threat-engine", "fingerprint": "43ecc05c6a612c4898793542410888a691455e13651c28e470489bef1e405a74", "category": "open_redirect", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "Redirect(redirect_url)", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC030", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|43ecc05c6a612c4898793542410888a691455e13651c28e470489bef1e405a74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/middleware.py"}, "region": {"startLine": 44}}}]}, {"ruleId": "SEC078", "level": "error", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 125444, "scanner": "repobility-threat-engine", "fingerprint": "0ecfa4e209cf96ced04cab9ea2c6b070b7a91714d749739e578d4b800002ef82", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.post(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0ecfa4e209cf96ced04cab9ea2c6b070b7a91714d749739e578d4b800002ef82"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/views.py"}, "region": {"startLine": 174}}}]}, {"ruleId": "SEC078", "level": "error", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 125443, "scanner": "repobility-threat-engine", "fingerprint": "980b868c3f3cf84b15b63fd7cfc054384f992764a2cc169f35a54111488dd7b1", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.post(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|980b868c3f3cf84b15b63fd7cfc054384f992764a2cc169f35a54111488dd7b1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/review_app_setup.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "SEC078", "level": "error", "message": {"text": "[SEC078] Python: requests without timeout: requests.get/post without a timeout will hang indefinitely on a non-responsive server, causing thread exhaustion and ReDoS. Ported from bandit B113 (Apache-2.0). NOTE: this regex is heuristic; a real AST check is preferred for accuracy."}, "properties": {"repobilityId": 125442, "scanner": "repobility-threat-engine", "fingerprint": "0222b6fd98330926030601197a0ac1a8d8a134ab83029edefcabecc144ca2e46", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "requests.get(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC078", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0222b6fd98330926030601197a0ac1a8d8a134ab83029edefcabecc144ca2e46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/review_app_admin.py"}, "region": {"startLine": 43}}}]}, {"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": 125437, "scanner": "repobility-threat-engine", "fingerprint": "be6b755fdf4bc1e1772f1eb1a6f2e917af603a1f78da2ba46684f38b91b72cb4", "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(element", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC083", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|be6b755fdf4bc1e1772f1eb1a6f2e917af603a1f78da2ba46684f38b91b72cb4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/foundation/pages/callpower.js"}, "region": {"startLine": 48}}}]}, {"ruleId": "MINED004", "level": "error", "message": {"text": "[MINED004] Weak Crypto: MD5/SHA1/DES/RC4 used for security context (not just checksums)."}, "properties": {"repobilityId": 125423, "scanner": "repobility-threat-engine", "fingerprint": "94e1bc735c6e97b04b6fbf98c4bfdeefce628650f3e1b92dfcff6324115b7edd", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "weak-crypto", "owasp": "A02:2021", "cwe_ids": ["CWE-327"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347906+00:00", "triaged_in_corpus": 15, "observations_count": 303181, "ai_coder_pattern_id": 13}, "scanner": "repobility-threat-engine", "correlation_key": "fp|94e1bc735c6e97b04b6fbf98c4bfdeefce628650f3e1b92dfcff6324115b7edd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 147}}}]}, {"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": 125421, "scanner": "repobility-threat-engine", "fingerprint": "ee4355122985e3f23ad551bd2fb0d69a85835726416a3302e8f3918334f5d943", "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|ee4355122985e3f23ad551bd2fb0d69a85835726416a3302e8f3918334f5d943"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/review_app_admin.py"}, "region": {"startLine": 22}}}]}, {"ruleId": "MINED001", "level": "error", "message": {"text": "[MINED001] Bare Except Pass: except: pass or except Exception: pass \u2014 silently swallows everything including KeyboardInterrupt and bugs."}, "properties": {"repobilityId": 125420, "scanner": "repobility-threat-engine", "fingerprint": "9a912bb42c9f77592536040bf784b15ca7099b3dcda5faed367eae5535d65106", "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|9a912bb42c9f77592536040bf784b15ca7099b3dcda5faed367eae5535d65106"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/utility/management/commands/flush_models.py"}, "region": {"startLine": 40}}}]}, {"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": 125419, "scanner": "repobility-threat-engine", "fingerprint": "6ca1dec153c6d3d02492f80a9ba835a694dd5ccaa677fd0a59ec95b98dc36428", "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|6ca1dec153c6d3d02492f80a9ba835a694dd5ccaa677fd0a59ec95b98dc36428"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/models.py"}, "region": {"startLine": 85}}}]}, {"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": 125411, "scanner": "repobility-threat-engine", "fingerprint": "626f9d85f842a84f1ff3ec75cd9e90e067bfdbf70e4f2bb316fbb22cb34b7c8e", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "site.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|626f9d85f842a84f1ff3ec75cd9e90e067bfdbf70e4f2bb316fbb22cb34b7c8e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/management/commands/update_staging_site_hostnames.py"}, "region": {"startLine": 33}}}]}, {"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": 125410, "scanner": "repobility-threat-engine", "fingerprint": "ed9e741641678459efff5166f6f0b40436ed4a3e0196269fb3fe48f5f2647550", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "root.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ed9e741641678459efff5166f6f0b40436ed4a3e0196269fb3fe48f5f2647550"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/management/commands/load_redesign_data.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": 125409, "scanner": "repobility-threat-engine", "fingerprint": "9632638480f6db69bb821a479e7f3d7afd3de62893b5d5870a4e9e024fb2c393", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "parent.save()", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC128", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9632638480f6db69bb821a479e7f3d7afd3de62893b5d5870a4e9e024fb2c393"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/factories/homepage.py"}, "region": {"startLine": 79}}}]}, {"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": 125394, "scanner": "repobility-threat-engine", "fingerprint": "0e72221a9997bce3ca6b389a0dee70ae7b4e72f8c7e4761626a0e2d4470a5f49", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0e72221a9997bce3ca6b389a0dee70ae7b4e72f8c7e4761626a0e2d4470a5f49"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/donor_help_contact_us_form_block.py"}, "region": {"startLine": 24}}}]}, {"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": 125393, "scanner": "repobility-threat-engine", "fingerprint": "ba0a32437cbb8065025da52cb4c7e6ab8578a6bfc62f75aa1eec9893e01d4ce5", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(s", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|ba0a32437cbb8065025da52cb4c7e6ab8578a6bfc62f75aa1eec9893e01d4ce5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/common/link_block/link_blocks.py"}, "region": {"startLine": 11}}}]}, {"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": 125392, "scanner": "repobility-threat-engine", "fingerprint": "552ad187f2f4c547c51507cef5ed622df12f909d479fb7bd7011b7fd727624e2", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url(s", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|552ad187f2f4c547c51507cef5ed622df12f909d479fb7bd7011b7fd727624e2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/blocks/common/link_block/base_link_block.py"}, "region": {"startLine": 36}}}]}, {"ruleId": "SEC111", "level": "error", "message": {"text": "[SEC111] Django mark_safe / |safe filter on user data: Django's `mark_safe()` and `|safe` disable HTML autoescaping. Calling them on non-constant data is XSS."}, "properties": {"repobilityId": 125390, "scanner": "repobility-threat-engine", "fingerprint": "9b6a68f3016d8983b37b3a745539ffd10c99d00c2e708cbb206722c605d9e264", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "mark_safe(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC111", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|9b6a68f3016d8983b37b3a745539ffd10c99d00c2e708cbb206722c605d9e264"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/models/sitewide_footer_newsletter_signup_page.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "SEC111", "level": "error", "message": {"text": "[SEC111] Django mark_safe / |safe filter on user data: Django's `mark_safe()` and `|safe` disable HTML autoescaping. Calling them on non-constant data is XSS."}, "properties": {"repobilityId": 125389, "scanner": "repobility-threat-engine", "fingerprint": "856134dfc3fb7e7315638628c11c405d5c5c5a750b49375b500158e43d662805", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "mark_safe(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC111", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|856134dfc3fb7e7315638628c11c405d5c5c5a750b49375b500158e43d662805"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/models/sitewide_donate_banner_page.py"}, "region": {"startLine": 29}}}]}, {"ruleId": "SEC111", "level": "error", "message": {"text": "[SEC111] Django mark_safe / |safe filter on user data: Django's `mark_safe()` and `|safe` disable HTML autoescaping. Calling them on non-constant data is XSS."}, "properties": {"repobilityId": 125388, "scanner": "repobility-threat-engine", "fingerprint": "6b73ea37d33ab9806bb8d7565351ea6822b8e56608398a69777b235b5db82727", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "mark_safe(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC111", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|6b73ea37d33ab9806bb8d7565351ea6822b8e56608398a69777b235b5db82727"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/widgets.py"}, "region": {"startLine": 27}}}]}, {"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": 125387, "scanner": "repobility-threat-engine", "fingerprint": "4045b82f9ad70d413aaa5ad70d77802b281d8b796eecf5975c186d5ae4774060", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".innerHTML = `<div class=\"dropdown-nav\">${links.join(\"\")}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|4045b82f9ad70d413aaa5ad70d77802b281d8b796eecf5975c186d5ae4774060"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/multipage-nav.js"}, "region": {"startLine": 62}}}]}, {"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": 125386, "scanner": "repobility-threat-engine", "fingerprint": "b1a1de14852586cce8d07e71092e478fac900a5ceebb9fc65e1f95024a3514a1", "category": "xss", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".innerHTML = `${value}<button type=\"button\" aria-label=\"Remove ${value}", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC040", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|b1a1de14852586cce8d07e71092e478fac900a5ceebb9fc65e1f95024a3514a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/base/static/wagtailadmin/js/topic-select-widget.js"}, "region": {"startLine": 44}}}]}, {"ruleId": "SEC006", "level": "error", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 125382, "scanner": "repobility-threat-engine", "fingerprint": "b3874f19599cc5a1789ae6eeb4ae02082da3ae5d90a0a6917c9ff786ea48c522", "category": "injection", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": ".innerHTML = h", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|injection|token|184|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/buyers-guide/template-js-handler/homepage-c-slider.js"}, "region": {"startLine": 184}}}]}, {"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": 125377, "scanner": "repobility-threat-engine", "fingerprint": "880c41382ffc535c0ff4945815959b1b0d348b5bdb0f17c501c34a3f82178683", "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(`GET`, apiURLwithQuery", "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|62|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/static/js/components/pulse-project-list/pulse-project-list.jsx"}, "region": {"startLine": 62}}}]}, {"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": 125376, "scanner": "repobility-threat-engine", "fingerprint": "b1f4541de8a302949f7a95cacee69219251582cfbffad90a1340a3477dac237b", "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(\"rb\") as f, tempfile.NamedTemporaryFile(delete=False, suffix=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|77|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/images/webp/utils.py"}, "region": {"startLine": 77}}}]}, {"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": 125375, "scanner": "repobility-threat-engine", "fingerprint": "0107f5d292fc458aa3bd8c4d10255666dc70b922d0ce11e7706d4c0cc4c29f80", "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|28|sec013"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "copy_staging_db_to_review_app.py"}, "region": {"startLine": 28}}}]}, {"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": 125370, "scanner": "repobility-threat-engine", "fingerprint": "fb27576ec0dabdff82e8db46a6618f770b48f7c877699ed7cb5da353f155a548", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "execSync(sassCmd", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|fb27576ec0dabdff82e8db46a6618f770b48f7c877699ed7cb5da353f155a548"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "frontend/redesign/build-css.js"}, "region": {"startLine": 54}}}]}, {"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": 125369, "scanner": "repobility-threat-engine", "fingerprint": "d87c845e6b2114999b5bad6f0ea02665ab84a11964796264b0932b68e897bb39", "category": "quality", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "execSync(cmd", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC085", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|d87c845e6b2114999b5bad6f0ea02665ab84a11964796264b0932b68e897bb39"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "copy-db.js"}, "region": {"startLine": 36}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.COVERALLS_REPO_TOKEN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.COVERALLS_REPO_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": 125596, "scanner": "repobility-supply-chain", "fingerprint": "becd7d0bbb6cbb3afc120be581db03978f591a00f2f4bd051ae630783ecbd93c", "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|becd7d0bbb6cbb3afc120be581db03978f591a00f2f4bd051ae630783ecbd93c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/continous-integration.yml"}, "region": {"startLine": 78}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.PERCY_TOKEN_REDESIGN` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.PERCY_TOKEN_REDESIGN }` 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": 125584, "scanner": "repobility-supply-chain", "fingerprint": "fd3610e1805f01eaca41df0a2254d9765536f1e832b587d21c1f85461efb245e", "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|fd3610e1805f01eaca41df0a2254d9765536f1e832b587d21c1f85461efb245e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-redesign.yml"}, "region": {"startLine": 150}}}]}, {"ruleId": "MINED116", "level": "error", "message": {"text": "[MINED116] Workflow uses `secrets.PERCY_TOKEN_LEGACY` on a `pull_request` trigger: This workflow triggers on `pull_request`, which checks out the FORK's code. Referencing `${ secrets.PERCY_TOKEN_LEGACY }` 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": 125578, "scanner": "repobility-supply-chain", "fingerprint": "c69b38d97c6c95bea9f0e387579072f24fa1a242f13bccb600f5747203ec0b2e", "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|c69b38d97c6c95bea9f0e387579072f24fa1a242f13bccb600f5747203ec0b2e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/visual-regression-testing-legacy.yml"}, "region": {"startLine": 136}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125565, "scanner": "repobility-ast-engine", "fingerprint": "ca5c363d819ef1a8f0fe7ee0bc175e611a83e62b756545a7fc0c698a80e05b52", "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|ca5c363d819ef1a8f0fe7ee0bc175e611a83e62b756545a7fc0c698a80e05b52"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/templatetags/footer_tags.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125562, "scanner": "repobility-ast-engine", "fingerprint": "567968bcf863d06a873fb3406ef6fd345f96410a3b218c904d9aadb9ab9b52bc", "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|567968bcf863d06a873fb3406ef6fd345f96410a3b218c904d9aadb9ab9b52bc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/core/management/commands/update_multilingual_index.py"}, "region": {"startLine": 41}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125561, "scanner": "repobility-ast-engine", "fingerprint": "4cab92f62a4850dfe76b1fb259faf0204c98c982f9a54e9582f9c609fea34a5b", "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|4cab92f62a4850dfe76b1fb259faf0204c98c982f9a54e9582f9c609fea34a5b"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/navigation/templatetags/navigation_tags.py"}, "region": {"startLine": 20}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125560, "scanner": "repobility-ast-engine", "fingerprint": "f9fac26a7c90f1a607ef673900a766b82bfe619b2deb1570a103d4bc821ef256", "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|f9fac26a7c90f1a607ef673900a766b82bfe619b2deb1570a103d4bc821ef256"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/buyersguide/homepage.py"}, "region": {"startLine": 272}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125548, "scanner": "repobility-ast-engine", "fingerprint": "e826bb3ba35ca60f3bb2f5cf0293548b59995dd39ab95af615349dc5a50104f0", "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|e826bb3ba35ca60f3bb2f5cf0293548b59995dd39ab95af615349dc5a50104f0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/tests/base.py"}, "region": {"startLine": 47}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125546, "scanner": "repobility-ast-engine", "fingerprint": "800d039728c3337d16275bbcd1df1e3a71560116ae58caad404fda721b386a74", "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|800d039728c3337d16275bbcd1df1e3a71560116ae58caad404fda721b386a74"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/pagemodels/index.py"}, "region": {"startLine": 88}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125545, "scanner": "repobility-ast-engine", "fingerprint": "cd238f47b1b105252df843e7477238e095125bfa17250543dff823476e2a096d", "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|cd238f47b1b105252df843e7477238e095125bfa17250543dff823476e2a096d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/mozfest/tests/base.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125530, "scanner": "repobility-ast-engine", "fingerprint": "8e6bbcc6895d5e580c1e772d2d1e556052df8ee7a2c113b21a1dc942fbb64d07", "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|8e6bbcc6895d5e580c1e772d2d1e556052df8ee7a2c113b21a1dc942fbb64d07"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/mozfest/models.py"}, "region": {"startLine": 243}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125529, "scanner": "repobility-ast-engine", "fingerprint": "7fda9ad537229b6d0430299999400bb9eb032119b7d73dad5699675af5944859", "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|7fda9ad537229b6d0430299999400bb9eb032119b7d73dad5699675af5944859"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/override_utils.py"}, "region": {"startLine": 16}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `html` used but not imported: The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125528, "scanner": "repobility-ast-engine", "fingerprint": "4a503f8d2920652b85823c593ae6605ab95551a06dc2cbc3311775cc314d5bfd", "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|4a503f8d2920652b85823c593ae6605ab95551a06dc2cbc3311775cc314d5bfd"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/wagtailpages/views.py"}, "region": {"startLine": 40}}}]}, {"ruleId": "MINED107", "level": "error", "message": {"text": "[MINED107] Missing import: `locale` used but not imported: The file uses `locale.something(...)` but never imports `locale`. This raises NameError at runtime the first time the line executes."}, "properties": {"repobilityId": 125497, "scanner": "repobility-ast-engine", "fingerprint": "f4a57a06c6190db593581b1bd67c99ad4664825a7d37834d8aff838f5303ab17", "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|f4a57a06c6190db593581b1bd67c99ad4664825a7d37834d8aff838f5303ab17"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "tasks.py"}, "region": {"startLine": 689}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 125417, "scanner": "repobility-threat-engine", "fingerprint": "8e07265ba23ba00515e39884917675187fdb7c4ad2f1a92313fa1b3561c0d664", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|8e07265ba23ba00515e39884917675187fdb7c4ad2f1a92313fa1b3561c0d664"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/nav/models.py"}, "region": {"startLine": 145}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 125416, "scanner": "repobility-threat-engine", "fingerprint": "cf7138eb29863c06cabb1a2d6c6e99e7dc6165c56f82be6474d71df210670eae", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|cf7138eb29863c06cabb1a2d6c6e99e7dc6165c56f82be6474d71df210670eae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/legacy_apps/donate_banner/models.py"}, "region": {"startLine": 143}}}]}, {"ruleId": "MINED019", "level": "error", "message": {"text": "[MINED019] Ssti Jinja From String: jinja2.Environment().from_string(user_input) \u2014 full RCE via templates."}, "properties": {"repobilityId": 125415, "scanner": "repobility-threat-engine", "fingerprint": "d4fece1c2846f59257d63cb0f8f741725942ea4c48e8b44050ec37a4128702b7", "category": "quality", "severity": "critical", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"mined": true, "mining": {"slug": "ssti-jinja-from-string", "owasp": "A03:2021", "cwe_ids": ["CWE-94"], "precision": 1.0, "promoted_at": "2026-05-18T14:01:32.347943+00:00", "triaged_in_corpus": 20, "observations_count": 47984, "ai_coder_pattern_id": 34}, "scanner": "repobility-threat-engine", "correlation_key": "fp|d4fece1c2846f59257d63cb0f8f741725942ea4c48e8b44050ec37a4128702b7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "foundation_cms/footer/models.py"}, "region": {"startLine": 73}}}]}]}]}