{"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": "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": "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": "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": "AGT013", "name": "Agent auto-approve or skip-permissions mode is easy to enable", "shortDescription": {"text": "Agent auto-approve or skip-permissions mode is easy to enable"}, "fullDescription": {"text": "Require an explicit isolated profile for auto-approve modes. Keep safe defaults interactive, add visible warnings, and block these modes when the workspace contains secrets or production deploy credentials."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "AGT012", "name": "Agent control bridge may listen on a network interface without visible auth", "shortDescription": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "fullDescription": {"text": "Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model."}, "properties": {"scanner": "repobility-agent-runtime", "category": "quality", "severity": "medium", "confidence": 0.72, "cwe": "", "owasp": ""}}, {"id": "DKR001", "name": "Docker final stage has no non-root USER", "shortDescription": {"text": "Docker final stage has no non-root USER"}, "fullDescription": {"text": "Add a non-root USER in the final runtime stage after files and permissions are prepared."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.82, "cwe": "", "owasp": ""}}, {"id": "DKR017", "name": "Dockerfile installs dependencies after copying the full source tree", "shortDescription": {"text": "Dockerfile installs dependencies after copying the full source tree"}, "fullDescription": {"text": "Copy dependency manifests first, install dependencies in a cached layer, then copy the rest of the source tree."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "medium", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "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": "SEC007", "name": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code.", "shortDescription": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "fullDescription": {"text": "Use yaml.safe_load() instead of yaml.load(). Avoid pickle for untrusted data."}, "properties": {"scanner": "repobility-threat-engine", "category": "deserialization", "severity": "medium", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "AIC003", "name": "Duplicated implementation block across source files", "shortDescription": {"text": "Duplicated implementation block across source files"}, "fullDescription": {"text": "Duplicated blocks are a common artifact when generated code is pasted or recreated instead of reused. They increase maintenance cost because every future bug fix must be found in multiple locations."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "medium", "confidence": 0.86, "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": "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": "A frontend string references a same-origin API path that Repobility could not match to backend route inventory. This often causes live 404s in user journeys."}, "properties": {"scanner": "repobility-journey-contract", "category": "quality", "severity": "medium", "confidence": 0.74, "cwe": "", "owasp": ""}}, {"id": "AUC009", "name": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function", "shortDescription": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /or"}, "fullDescription": {"text": "A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /organizations/:slug/grants/route."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.68, "cwe": "CWE-285", "owasp": "API5:2023 Broken Function Level Authorization"}}, {"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 /admin/."}, "fullDescription": {"text": "An administrative route was detected without nearby evidence that platform super_admin access is separated from tenant/application admin access. Endpoint: ANY /admin/."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.66, "cwe": "CWE-285", "owasp": "API5:2023 Broken Function Level Authorization"}}, {"id": "AUC002", "name": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authenticatio", "shortDescription": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "fullDescription": {"text": "Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "medium", "confidence": 0.74, "cwe": "CWE-285", "owasp": "WSTG-AUTHZ"}}, {"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": "SEC017", "name": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.", "shortDescription": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely"}, "fullDescription": {"text": "1) Enforce a maximum input length BEFORE sending to the API: e.g. `if len(text) > 4000: return error`. 2) Use token counting (tiktoken for OpenAI, anthropic's token counter) to enforce token-level limits. 3) Set max_tokens on the API call to cap response cost. 4) Add rate limiting per user/IP to prevent automated abuse. 5) Monitor API spend with alerts for unusual usage patterns."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "low", "confidence": 0.3, "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": "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": "AIC009", "name": "Multiple AI-agent scaffold marker files are present", "shortDescription": {"text": "Multiple AI-agent scaffold marker files are present"}, "fullDescription": {"text": "Keep one current agent instruction file if it helps contributors, remove stale progress/completion markers, and make sure the README, tests, and CI describe the real supported behavior."}, "properties": {"scanner": "repobility-ai-code-hygiene", "category": "quality", "severity": "low", "confidence": 0.68, "cwe": "", "owasp": ""}}, {"id": "DKC010", "name": "Compose service lacks no-new-privileges hardening", "shortDescription": {"text": "Compose service lacks no-new-privileges hardening"}, "fullDescription": {"text": "Add `security_opt: [\"no-new-privileges:true\"]` unless the service has a documented need for privilege escalation."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.62, "cwe": "", "owasp": ""}}, {"id": "DKC006", "name": "Compose service does not declare a runtime user", "shortDescription": {"text": "Compose service does not declare a runtime user"}, "fullDescription": {"text": "Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "low", "confidence": 0.56, "cwe": "", "owasp": ""}}, {"id": "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": "SEC015", "name": "[SEC015] Insecure Randomness for Security (and 2 more): Same pattern found in 2 additional files. Review if needed.", "shortDescription": {"text": "[SEC015] Insecure Randomness for Security (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "fullDescription": {"text": "Use secrets module (Python) or crypto.getRandomValues() (JS) for security-sensitive randomness."}, "properties": {"scanner": "repobility-threat-engine", "category": "crypto", "severity": "info", "confidence": 0.2, "cwe": "", "owasp": ""}}, {"id": "SEC029", "name": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 25 more): Same pattern found in 25 addi", "shortDescription": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 25 more): Same pattern found in 25 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": "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.1, "cwe": "", "owasp": ""}}, {"id": "DKR002", "name": "Compose service `gitnexus-web` image is selected through a build variable", "shortDescription": {"text": "Compose service `gitnexus-web` image is selected through a build variable"}, "fullDescription": {"text": "Resolve the variable to a versioned tag or digest in production builds and document the allowed images."}, "properties": {"scanner": "repobility-docker", "category": "docker", "severity": "info", "confidence": 0.48, "cwe": "", "owasp": ""}}, {"id": "SEC033", "name": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without fil", "shortDescription": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting ever"}, "fullDescription": {"text": "Sanitize keys BEFORE merge:\n  function sanitize(obj) {\n    delete obj.__proto__;\n    delete obj.constructor;\n    delete obj.prototype;\n    return obj;\n  }\nOr use Object.create(null) for the target. Or use Map() for user-key-indexed data. Upgrade lodash >= 4.17.21 for partial mitigation."}, "properties": {"scanner": "repobility-threat-engine", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "cwe": "", "owasp": ""}}, {"id": "SEC016", "name": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prom", "shortDescription": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input tha"}, "fullDescription": {"text": "1) Separate user content from instructions: use the 'user' role for user text and 'system' role for your instructions \u2014 never concatenate them into one string. 2) Validate and constrain: limit input length, strip control characters, and reject known injection patterns. 3) Use structured output (JSON mode / function calling) so the model returns data, not freeform actions. 4) Apply output validation: check the AI's response before acting on it. 5) Consider a prompt injection detection layer (e.g. Anthropic's constitutional AI, prompt-guard models)."}, "properties": {"scanner": "repobility-threat-engine", "category": "llm_injection", "severity": "high", "confidence": 0.9, "cwe": "", "owasp": ""}}, {"id": "JRN004", "name": "Consent is collected in UI without visible backend audit persistence", "shortDescription": {"text": "Consent is collected in UI without visible backend audit persistence"}, "fullDescription": {"text": "A frontend journey appears to ask for consent to share identity/KYC/biometric data, but backend code does not show a consent audit model with scope, purpose, legal text version, timestamp, IP, or user-agent evidence."}, "properties": {"scanner": "repobility-journey-contract", "category": "auth", "severity": "high", "confidence": 0.78, "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: GET /organizations/:slug/grants/ro"}, "fullDescription": {"text": "A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /organizations/:slug/grants/route."}, "properties": {"scanner": "repobility-access-control", "category": "auth", "severity": "high", "confidence": 0.7, "cwe": "CWE-639", "owasp": "API1:2023 Broken Object Level Authorization"}}, {"id": "BINARY_RISK", "name": "[BINARY] scipy: compound risk score 2194 (CVEs: 0, binary findings: 550)", "shortDescription": {"text": "[BINARY] scipy: compound risk score 2194 (CVEs: 0, binary findings: 550)"}, "fullDescription": {"text": "Review binary security profile of scipy \u2014 consider alternatives with lower binary attack surface"}, "properties": {"scanner": "repobility-binary-intel", "category": "dependency", "severity": "high", "confidence": null, "cwe": "", "owasp": ""}}]}}, "automationDetails": {"id": "repobility/119"}, "properties": {"repository": "abhigyanpatwari/GitNexus", "repoUrl": "https://github.com/abhigyanpatwari/GitNexus.git", "branch": "main"}, "results": [{"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": 27932, "scanner": "repobility-threat-engine", "fingerprint": "28ff05b71e731cec44569afb01b6ef99a7454e4c173f4a61c9517a93c8c47d59", "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(\n        `\\\\b(${escapeRegex(prefix)}\\\\.[A-Z][A-Za-z0-9]*(?:\\\\.[A-Z][A-Za-z0-9]*)*", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC031", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|28ff05b71e731cec44569afb01b6ef99a7454e4c173f4a61c9517a93c8c47d59"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts"}, "region": {"startLine": 97}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 27929, "scanner": "repobility-threat-engine", "fingerprint": "ae6c8974d5fcf64e2325dfbb0c8f6b0c8552c89191df440904615a585a93f4a1", "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|ae6c8974d5fcf64e2325dfbb0c8f6b0c8552c89191df440904615a585a93f4a1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/scripts/install-duckdb-extension.mjs"}, "region": {"startLine": 39}}}]}, {"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": 27927, "scanner": "repobility-threat-engine", "fingerprint": "8d98ea50d0863737e025a1de99394321ebaccff3d64adb49bc64f1262781caae", "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|8d98ea50d0863737e025a1de99394321ebaccff3d64adb49bc64f1262781caae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/scripts/check-tree-sitter-upgrade-readiness.py"}, "region": {"startLine": 807}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 8459, "scanner": "repobility-threat-engine", "fingerprint": "a7b882d03893dbca9427e1d54a3f2012badc12e6dc45d0f181e81b9c36d6160d", "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|a7b882d03893dbca9427e1d54a3f2012badc12e6dc45d0f181e81b9c36d6160d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 389}}}]}, {"ruleId": "AGT013", "level": "warning", "message": {"text": "Agent auto-approve or skip-permissions mode is easy to enable"}, "properties": {"repobilityId": 4940, "scanner": "repobility-agent-runtime", "fingerprint": "82f55c52fa14160e108d3235092f9215a5c141b0a150ed1048bfb31b59e59b8f", "category": "quality", "severity": "medium", "confidence": 0.68, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File exposes or configures a broad agent auto-approval mode without enough local guard wording.", "evidence": {"rule_id": "AGT013", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|82f55c52fa14160e108d3235092f9215a5c141b0a150ed1048bfb31b59e59b8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/claude.yml"}, "region": {"startLine": 162}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4782, "scanner": "repobility-threat-engine", "fingerprint": "24fb729d4bc838ea14451a96a87bf45638100e950605ead6432ddd9229769e25", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|24fb729d4bc838ea14451a96a87bf45638100e950605ead6432ddd9229769e25"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 379}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 4781, "scanner": "repobility-agent-runtime", "fingerprint": "66cbccbe5923647892ccaf6d906c237064a82e03da5a61f613ff1947ab40d313", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|66cbccbe5923647892ccaf6d906c237064a82e03da5a61f613ff1947ab40d313"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/git-clone.ts"}, "region": {"startLine": 66}}}]}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 4654, "scanner": "repobility-docker", "fingerprint": "fc2e268a11f4cd7d6f02278cc75915b1d88230e7ff6f1c666a9eba0f9007b8af", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "node:22-bookworm-slim@sha256:9f6d5975c7dca860947d3915877f85607946403fc55349f39b4bc3688448bb6e", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|fc2e268a11f4cd7d6f02278cc75915b1d88230e7ff6f1c666a9eba0f9007b8af"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 6}}}]}, {"ruleId": "DKR017", "level": "warning", "message": {"text": "Dockerfile installs dependencies after copying the full source tree"}, "properties": {"repobilityId": 4653, "scanner": "repobility-docker", "fingerprint": "12bc064b901b7b240dbf6b2e43b3ab8ece53ba53d58d6197f035434eb6c5fd9a", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Broad context copy at line 13 appears before dependency installation.", "evidence": {"rule_id": "DKR017", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "broad_copy_line": 13, "correlation_key": "fp|12bc064b901b7b240dbf6b2e43b3ab8ece53ba53d58d6197f035434eb6c5fd9a", "dependency_install_line": 14}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 14}}}]}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 4652, "scanner": "repobility-docker", "fingerprint": "77b4bf556e4115eb5ce4fdf6c6e782d4dd38f36460806a4fd317ba5427105813", "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|77b4bf556e4115eb5ce4fdf6c6e782d4dd38f36460806a4fd317ba5427105813", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 13}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 4650, "scanner": "repobility-threat-engine", "fingerprint": "a5f829837bf635c14d8c21032b2d5c22e74f8c019d473f9c52753a68dabaa292", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|47|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/config-parser.ts"}, "region": {"startLine": 47}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4648, "scanner": "repobility-threat-engine", "fingerprint": "3dafea31945b308e261e4edfbb7aa0072e1ea3697d43bc280c5d07d555a25399", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|3dafea31945b308e261e4edfbb7aa0072e1ea3697d43bc280c5d07d555a25399"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 914}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 4484, "scanner": "repobility-threat-engine", "fingerprint": "66b6003bc06e6afe784a5bc501e52e74687bb0800c10a1c34e5bcc9094ba9f4f", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|29|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/config-parser.ts"}, "region": {"startLine": 29}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4478, "scanner": "repobility-threat-engine", "fingerprint": "f2820c82f59e99007762b869e68ea5d2f86217882ebea2fbdc8597764207e863", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|f2820c82f59e99007762b869e68ea5d2f86217882ebea2fbdc8597764207e863"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 345}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4477, "scanner": "repobility-threat-engine", "fingerprint": "3db20e63bd5992efe110c2acd530e6572da46547b16473d9a2f9e2eb6ea3ba8f", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|3db20e63bd5992efe110c2acd530e6572da46547b16473d9a2f9e2eb6ea3ba8f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 905}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 4476, "scanner": "repobility-agent-runtime", "fingerprint": "bc5e923c9b8981b9b1034ab7b2bec2ba838e1a8339aefce0ff5fce0aaa3d9e4e", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|bc5e923c9b8981b9b1034ab7b2bec2ba838e1a8339aefce0ff5fce0aaa3d9e4e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/git-clone.ts"}, "region": {"startLine": 68}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4474, "scanner": "repobility-ai-code-hygiene", "fingerprint": "02bef6bc0058f89eeb2ad1368a714423a0c14494bab2dc620c64823f306d8cc0", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/group/extractors/grpc-extractor.ts", "duplicate_line": 23, "correlation_key": "fp|02bef6bc0058f89eeb2ad1368a714423a0c14494bab2dc620c64823f306d8cc0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/thrift-extractor.ts"}, "region": {"startLine": 37}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4466, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6c72e7f2fcfb6c6e18fbad3b2de2eb7610ff19154a6f0a7cfe217c7a4ba17fbc", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/cli/analyze.ts", "duplicate_line": 224, "correlation_key": "fp|6c72e7f2fcfb6c6e18fbad3b2de2eb7610ff19154a6f0a7cfe217c7a4ba17fbc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 280}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 4152, "scanner": "repobility-threat-engine", "fingerprint": "b518007a0969a33292f02c934c7718a2ea6fae5fdef64053f3e8ce2e534f8ea2", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|28|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/config-parser.ts"}, "region": {"startLine": 28}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4151, "scanner": "repobility-threat-engine", "fingerprint": "b0f41fb96535e3d6fd30cab0b1aa685cb0076cdbe51c48b614de0960a88b4404", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|b0f41fb96535e3d6fd30cab0b1aa685cb0076cdbe51c48b614de0960a88b4404"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 289}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4150, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0b1a33da8ca963ecefd3b2482c7a0f266585612e641a118721624b316320c79a", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/java.ts", "duplicate_line": 30, "correlation_key": "fp|0b1a33da8ca963ecefd3b2482c7a0f266585612e641a118721624b316320c79a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/kotlin.ts"}, "region": {"startLine": 108}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4148, "scanner": "repobility-ai-code-hygiene", "fingerprint": "be762b451462ec73468c240c207f5ed86da2f4e3eb1808bdadcd70f8ad9e2856", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 75, "correlation_key": "fp|be762b451462ec73468c240c207f5ed86da2f4e3eb1808bdadcd70f8ad9e2856"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/go/captures.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 4064, "scanner": "repobility-threat-engine", "fingerprint": "1a02b6c9fd3391175e6cf59dc20e8b6909264f36d2d11d5e0d2fbc2a47b1089f", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|1a02b6c9fd3391175e6cf59dc20e8b6909264f36d2d11d5e0d2fbc2a47b1089f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 291}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4063, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8f359107860fe4ae0079cabdeed640dfecda5f2b52598e3c8862beab4f8523f4", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 75, "correlation_key": "fp|8f359107860fe4ae0079cabdeed640dfecda5f2b52598e3c8862beab4f8523f4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/typescript/captures.ts"}, "region": {"startLine": 113}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4062, "scanner": "repobility-ai-code-hygiene", "fingerprint": "051b23da2e1eb16a23e4d2e60ca05c16512c0d9e4776ac626d1a59eafed5e0a7", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 75, "correlation_key": "fp|051b23da2e1eb16a23e4d2e60ca05c16512c0d9e4776ac626d1a59eafed5e0a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/python/captures.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "AGT012", "level": "warning", "message": {"text": "Agent control bridge may listen on a network interface without visible auth"}, "properties": {"repobilityId": 3877, "scanner": "repobility-agent-runtime", "fingerprint": "73285d8917b1eca1e6dc5e3b8e2e7a7f330db8f56cf7e3a99f45d582d2db9650", "category": "quality", "severity": "medium", "confidence": 0.72, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "File combines agent-control wording with an HTTP/SSE/WebSocket listener on an all-interface host and no visible auth guard.", "evidence": {"rule_id": "AGT012", "scanner": "repobility-agent-runtime", "references": [], "correlation_key": "fp|73285d8917b1eca1e6dc5e3b8e2e7a7f330db8f56cf7e3a99f45d582d2db9650"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 11}}}]}, {"ruleId": "WEB003", "level": "warning", "message": {"text": "Public web service has no security.txt"}, "properties": {"repobilityId": 2957, "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": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2953, "scanner": "repobility-journey-contract", "fingerprint": "15c664a82c085193fe88fdc6b43729def341bde0b0d8bbba93a2a555423f6239", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/info", "correlation_key": "fp|15c664a82c085193fe88fdc6b43729def341bde0b0d8bbba93a2a555423f6239", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 683}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2951, "scanner": "repobility-journey-contract", "fingerprint": "65c57a6827d74abf070aca93d1e74bf0c5b566d3718cfc2ce6deb712b3078ae3", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/heartbeat", "correlation_key": "fp|65c57a6827d74abf070aca93d1e74bf0c5b566d3718cfc2ce6deb712b3078ae3", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 665}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2949, "scanner": "repobility-journey-contract", "fingerprint": "006953a8f061900dceb79621e06b34f5d2b5038bf0e4110eef1371736f161e5b", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/repos", "correlation_key": "fp|006953a8f061900dceb79621e06b34f5d2b5038bf0e4110eef1371736f161e5b", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 184}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2947, "scanner": "repobility-journey-contract", "fingerprint": "3b01ff5cc21ad3f3c408e8afa00643c7f4cd84321046142f104795f5fa5f0dd0", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/info", "correlation_key": "fp|3b01ff5cc21ad3f3c408e8afa00643c7f4cd84321046142f104795f5fa5f0dd0", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 183}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2945, "scanner": "repobility-journey-contract", "fingerprint": "ba71f5ba2058a39a7a8d7787ffe8e994e406980a1dacb60c9084016b9cea8ed9", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/grants", "correlation_key": "fp|ba71f5ba2058a39a7a8d7787ffe8e994e406980a1dacb60c9084016b9cea8ed9", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/mcp/tools.ts"}, "region": {"startLine": 473}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2943, "scanner": "repobility-journey-contract", "fingerprint": "b6c1a4dd3f0b6ed913d6dd2b8c8bf63deaf788cde0344c411833d41469b70ac6", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/grants", "correlation_key": "fp|b6c1a4dd3f0b6ed913d6dd2b8c8bf63deaf788cde0344c411833d41469b70ac6", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/mcp/tools.ts"}, "region": {"startLine": 451}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2941, "scanner": "repobility-journey-contract", "fingerprint": "bf77517cfea8d36e8c69bef403dfb7a2358c96adf75c3425f5fdfd4e2ecfec99", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/grants", "correlation_key": "fp|bf77517cfea8d36e8c69bef403dfb7a2358c96adf75c3425f5fdfd4e2ecfec99", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/mcp/tools.ts"}, "region": {"startLine": 412}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2939, "scanner": "repobility-journey-contract", "fingerprint": "574c06aad1b71d7d880c9c323d21835bee0c36e7ec953b058e989ecfb132bd5f", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/users", "correlation_key": "fp|574c06aad1b71d7d880c9c323d21835bee0c36e7ec953b058e989ecfb132bd5f", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/workers/parse-worker.ts"}, "region": {"startLine": 1658}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2938, "scanner": "repobility-journey-contract", "fingerprint": "94480de639f3f184540145240b7270eb8804e57aa82d5365b1fec2490ede141e", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/orders", "correlation_key": "fp|94480de639f3f184540145240b7270eb8804e57aa82d5365b1fec2490ede141e", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/manifest-extractor.ts"}, "region": {"startLine": 301}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2936, "scanner": "repobility-journey-contract", "fingerprint": "199d465eca117ed69b0330941dc2c6033e73668b4d858fbc1e204057bb87487b", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/orders", "correlation_key": "fp|199d465eca117ed69b0330941dc2c6033e73668b4d858fbc1e204057bb87487b", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/manifest-extractor.ts"}, "region": {"startLine": 197}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2934, "scanner": "repobility-journey-contract", "fingerprint": "babc6917c1da9f5128521becfba2fccb4acfca5d351dadd86c8caacec29cb98c", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/orders", "correlation_key": "fp|babc6917c1da9f5128521becfba2fccb4acfca5d351dadd86c8caacec29cb98c", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/manifest-extractor.ts"}, "region": {"startLine": 32}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2932, "scanner": "repobility-journey-contract", "fingerprint": "f027a2d936263693d8a84b9fd1eed963d2624b4b3a637f5811bf57b1336acbb8", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/orders", "correlation_key": "fp|f027a2d936263693d8a84b9fd1eed963d2624b4b3a637f5811bf57b1336acbb8", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/http-route-extractor.ts"}, "region": {"startLine": 375}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2930, "scanner": "repobility-journey-contract", "fingerprint": "b4dc165d904068ebde52eb45622f747c2ea4abae8601a4ebada83173ef71cb57", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/orders/42", "correlation_key": "fp|b4dc165d904068ebde52eb45622f747c2ea4abae8601a4ebada83173ef71cb57", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/http-route-extractor.ts"}, "region": {"startLine": 76}}}]}, {"ruleId": "JRN003", "level": "warning", "message": {"text": "Frontend API reference is not matched by discovered backend routes"}, "properties": {"repobilityId": 2928, "scanner": "repobility-journey-contract", "fingerprint": "65e0fa1652ed5cb84020ad6b0da1e96bf3875c0af4b384572aa7be1de08c646c", "category": "quality", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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/...", "correlation_key": "fp|65e0fa1652ed5cb84020ad6b0da1e96bf3875c0af4b384572aa7be1de08c646c", "backend_endpoint_count": 9}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/http-patterns/php.ts"}, "region": {"startLine": 114}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /organizations/:slug/grants/route."}, "properties": {"repobilityId": 2925, "scanner": "repobility-access-control", "fingerprint": "71db77d0c0107332d051e71bfee1b09d2c811fff0de4723da1abc73ec067cd0b", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/organizations/:slug/grants/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / slug /grants/route.ts|3|cwe-285", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/nextjs-route-mapping/app/api/organizations/[slug]/grants/route.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /users/route."}, "properties": {"repobilityId": 2923, "scanner": "repobility-access-control", "fingerprint": "a0fc25bd969a7acbada2ad6a9696afd66acb6faa03d2f463e0402e2126489543", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/users/route", "method": "POST", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|8|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/shape-check-integration/app/api/users/route.ts"}, "region": {"startLine": 8}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /search/route."}, "properties": {"repobilityId": 2921, "scanner": "repobility-access-control", "fingerprint": "23e2828a4984203872778acd25a7f1da806e1972e1cd2cb24c99bd31c477c021", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation. Collapsed 3 duplicate scanner signal(s) for the same underlying issue.", "evidence": {"path": "/search/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|3|cwe-285", "duplicate_count": 3, "identity_targets": ["unknown"], "duplicate_rule_ids": ["AUC009"], "duplicate_scanners": ["repobility-access-control"], "duplicate_fingerprints": ["142ddd01b8ca0b2dafd391b3c74ae77f89e4c29301fc37fdfbbcef620500d230", "23e2828a4984203872778acd25a7f1da806e1972e1cd2cb24c99bd31c477c021", "3484879231dcf1fbcd66f246b3003ef4a5c7ebbb1216a24246942e420efc52b2", "b3073dc0a7859896394df5313f771bb4c0f1fc0910efcd97b380ba222738fd61"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/shape-check-integration/app/api/search/route.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AUC009", "level": "warning", "message": {"text": "[AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /grants/route."}, "properties": {"repobilityId": 2919, "scanner": "repobility-access-control", "fingerprint": "91fb58f2d693d514ec940f09a249350b2a9482e6121ab6451d83cfda81bfa2f8", "category": "auth", "severity": "medium", "confidence": 0.68, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/grants/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token|4|cwe-285", "identity_targets": ["unknown"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/api-e2e-test/app/api/grants/route.ts"}, "region": {"startLine": 4}}}]}, {"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 /admin/."}, "properties": {"repobilityId": 2917, "scanner": "repobility-access-control", "fingerprint": "5e11f7d38ffdfad3bd0aaca5e6cd00b91d7330d8a76f7c5e0e23a7db1944017b", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/admin/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|21|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/python-django-app-imports/config/urls.py"}, "region": {"startLine": 21}}}]}, {"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 /blog/."}, "properties": {"repobilityId": 2915, "scanner": "repobility-access-control", "fingerprint": "a3389fce3b431148fca6efc6cc69dacbddc1dd2578abd80494048785c8821fe8", "category": "auth", "severity": "medium", "confidence": 0.66, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/blog/", "method": "ANY", "scanner": "repobility-access-control", "framework": "Django", "correlation_key": "code|auth|token|15|cwe-285", "identity_targets": ["unknown", "admin"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/python-django-app-imports/config/urls.py"}, "region": {"startLine": 15}}}]}, {"ruleId": "AUC002", "level": "warning", "message": {"text": "[AUC002] Low visible authorization coverage in route inventory: Only 0.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence."}, "properties": {"repobilityId": 2911, "scanner": "repobility-access-control", "fingerprint": "b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "category": "auth", "severity": "medium", "confidence": 0.74, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "endpoint_count": 9, "correlation_key": "fp|b2b220ffd00544f11577c95c6ebba1d9777fd8f8945f26d82bcf37e8c3177020", "auth_visible_percent": 0.0}}}, {"ruleId": "AUC001", "level": "warning", "message": {"text": "[AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation."}, "properties": {"repobilityId": 2909, "scanner": "repobility-access-control", "fingerprint": "f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10", "category": "auth", "severity": "medium", "confidence": 0.92, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"scanner": "repobility-access-control", "frameworks": ["Next.js"], "expected_files": [".repobility/access.yml", ".repobility/access.yaml", ".repobility/access.json", ".repobility/authorization.yml"], "correlation_key": "fp|f1305052c3ba1e6c1cdb5dccc19e58a8168cf78b176658f32b1fc823df3e9d10"}}}, {"ruleId": "DKR001", "level": "warning", "message": {"text": "Docker final stage has no non-root USER"}, "properties": {"repobilityId": 2894, "scanner": "repobility-docker", "fingerprint": "2ecabacdfc9009b7b7a3fbf47c1f13f4c611577ea7793d73489d18605178bee6", "category": "docker", "severity": "medium", "confidence": 0.82, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "No USER directive was found in the final runtime stage.", "evidence": {"rule_id": "DKR001", "scanner": "repobility-docker", "final_base": "node:20-bookworm", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html", "https://github.com/hadolint/hadolint"], "correlation_key": "fp|2ecabacdfc9009b7b7a3fbf47c1f13f4c611577ea7793d73489d18605178bee6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR017", "level": "warning", "message": {"text": "Dockerfile installs dependencies after copying the full source tree"}, "properties": {"repobilityId": 2892, "scanner": "repobility-docker", "fingerprint": "38d34c020d340723c08cd7598c7b544e31108778b0d08d8dfa8dcae8d1fff890", "category": "docker", "severity": "medium", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Broad context copy at line 4 appears before dependency installation.", "evidence": {"rule_id": "DKR017", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/"], "broad_copy_line": 4, "correlation_key": "fp|38d34c020d340723c08cd7598c7b544e31108778b0d08d8dfa8dcae8d1fff890", "dependency_install_line": 5}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 5}}}]}, {"ruleId": "DKR014", "level": "warning", "message": {"text": "Dockerfile copies broad context with incomplete .dockerignore"}, "properties": {"repobilityId": 2891, "scanner": "repobility-docker", "fingerprint": "51552526d69c8d18efbc1699cb06da8524ffff0abc2ef57eeaf20985595cd2cb", "category": "docker", "severity": "medium", "confidence": 0.76, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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|51552526d69c8d18efbc1699cb06da8524ffff0abc2ef57eeaf20985595cd2cb", "missing_patterns": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 4}}}]}, {"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": 2886, "scanner": "repobility-threat-engine", "fingerprint": "bde53a0de8f6effd3c6e38d0899f6350816254ea4ee4696cf09ab3edf8c25741", "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|bde53a0de8f6effd3c6e38d0899f6350816254ea4ee4696cf09ab3edf8c25741"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "eval/analysis/analyze_results.py"}, "region": {"startLine": 72}}}]}, {"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": 2885, "scanner": "repobility-threat-engine", "fingerprint": "45607aaa1e6cfecc0db7dec3435e337663d23cf01dede6dfcdc1d3b5afb7ab2c", "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|45607aaa1e6cfecc0db7dec3435e337663d23cf01dede6dfcdc1d3b5afb7ab2c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "eval/bridge/mcp_bridge.py"}, "region": {"startLine": 108}}}]}, {"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": 2883, "scanner": "repobility-threat-engine", "fingerprint": "c3342be01dcebbbdba7e9ddf206d751ae99621d6657d0874010e648a42fe9812", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|c3342be01dcebbbdba7e9ddf206d751ae99621d6657d0874010e648a42fe9812"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "eval/environments/gitnexus_docker.py"}, "region": {"startLine": 369}}}]}, {"ruleId": "SEC007", "level": "warning", "message": {"text": "[SEC007] Unsafe Deserialization: Unsafe deserialization can execute arbitrary code."}, "properties": {"repobilityId": 2881, "scanner": "repobility-threat-engine", "fingerprint": "eb402af602db9dfa6c1a2aa34c5f2a756913ea8ac7763e213841d624112c5cbe", "category": "deserialization", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "yaml.load(", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC007", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "code|deserialization|token|27|sec007"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/config-parser.ts"}, "region": {"startLine": 27}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 2839, "scanner": "repobility-threat-engine", "fingerprint": "11c91899c76782918018bb1e96ddd4404da34b61222c4cbf4a72d8a61497e783", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|11c91899c76782918018bb1e96ddd4404da34b61222c4cbf4a72d8a61497e783"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/analyze.ts"}, "region": {"startLine": 246}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 2838, "scanner": "repobility-threat-engine", "fingerprint": "d2056e421b8e2bd42f34219112ac4e9f9c3e9b3615fdf3bf04249c9f2062dbdf", "category": "error_handling", "severity": "medium", "confidence": 1.0, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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|d2056e421b8e2bd42f34219112ac4e9f9c3e9b3615fdf3bf04249c9f2062dbdf"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/server/api.ts"}, "region": {"startLine": 776}}}]}, {"ruleId": "ERR002", "level": "warning", "message": {"text": "[ERR002] Empty Catch Block: Empty catch blocks hide errors."}, "properties": {"repobilityId": 2837, "scanner": "repobility-threat-engine", "fingerprint": "56556314b123c8c52e884576a38809f8cf08f90f0d377530ede47cc42a2d5218", "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|56556314b123c8c52e884576a38809f8cf08f90f0d377530ede47cc42a2d5218"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-web/src/App.tsx"}, "region": {"startLine": 271}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2836, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b5934c38713070fc08e11660838be8e19d97505ec6965109ea090c97e2e77d72", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/merge-bindings.ts", "duplicate_line": 2, "correlation_key": "fp|b5934c38713070fc08e11660838be8e19d97505ec6965109ea090c97e2e77d72"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/typescript/merge-bindings.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2835, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dc932bba2b74591d8bc051d7999f59ac433c083fa32ef23ed8848dbc547c1c90", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 75, "correlation_key": "fp|dc932bba2b74591d8bc051d7999f59ac433c083fa32ef23ed8848dbc547c1c90"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/typescript/captures.ts"}, "region": {"startLine": 110}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2834, "scanner": "repobility-ai-code-hygiene", "fingerprint": "6fac8ea1040594bc7bfd313e8442844cd9061513c24be01e073daec8c3fa4fcc", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/merge-bindings.ts", "duplicate_line": 1, "correlation_key": "fp|6fac8ea1040594bc7bfd313e8442844cd9061513c24be01e073daec8c3fa4fcc"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/python/merge-bindings.ts"}, "region": {"startLine": 1}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2833, "scanner": "repobility-ai-code-hygiene", "fingerprint": "79fa012c629c1e571097432ec64f15afd796d894436d6ea447f41d7753437e0c", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 75, "correlation_key": "fp|79fa012c629c1e571097432ec64f15afd796d894436d6ea447f41d7753437e0c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/python/captures.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2832, "scanner": "repobility-ai-code-hygiene", "fingerprint": "bedead1d4410c8e9f3a1a63061645e28962453c5bf600ad60521fde49adc31a7", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/core/ingestion/heritage-processor.ts", "duplicate_line": 143, "correlation_key": "fp|bedead1d4410c8e9f3a1a63061645e28962453c5bf600ad60521fde49adc31a7"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/import-processor.ts"}, "region": {"startLine": 211}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2830, "scanner": "repobility-ai-code-hygiene", "fingerprint": "572ee98c7e36bc1801f75a15fbf198edfcd5ead0ac7161d4f9a11e4c80424bb5", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus-web/src/lib/constants.ts", "duplicate_line": 78, "correlation_key": "fp|572ee98c7e36bc1801f75a15fbf198edfcd5ead0ac7161d4f9a11e4c80424bb5"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/community-processor.ts"}, "region": {"startLine": 42}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2829, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7ccce486cb63401ef497c1fefbb2ac480be08a4b5633c0877386c9c0ed04205a", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus-web/src/core/ingestion/cluster-enricher.ts", "duplicate_line": 8, "correlation_key": "fp|7ccce486cb63401ef497c1fefbb2ac480be08a4b5633c0877386c9c0ed04205a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/cluster-enricher.ts"}, "region": {"startLine": 2}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2827, "scanner": "repobility-ai-code-hygiene", "fingerprint": "db67dce04b14f6c960551bc1901d886e6363497c1b039944adda02a72df1d3ef", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus-web/src/config/ignore-service.ts", "duplicate_line": 1, "correlation_key": "fp|db67dce04b14f6c960551bc1901d886e6363497c1b039944adda02a72df1d3ef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/config/ignore-service.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "warning", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2826, "scanner": "repobility-ai-code-hygiene", "fingerprint": "eecc2ab9e1e1b997a82234d050dda0a7e26fffb6a856bc280f1d1891bdd0abea", "category": "quality", "severity": "medium", "confidence": 0.86, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "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": "gitnexus/src/cli/analyze.ts", "duplicate_line": 156, "correlation_key": "fp|eecc2ab9e1e1b997a82234d050dda0a7e26fffb6a856bc280f1d1891bdd0abea"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 279}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27948, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d13b2da17b2b401e3280ea0978683b5516e7ca7fded4f0e08a98fd6a72b44b55", "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": "gitnexus/src/core/ingestion/languages/csharp/import-target.ts", "duplicate_line": 35, "correlation_key": "fp|d13b2da17b2b401e3280ea0978683b5516e7ca7fded4f0e08a98fd6a72b44b55"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/java/import-target.ts"}, "region": {"startLine": 39}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27947, "scanner": "repobility-ai-code-hygiene", "fingerprint": "3a2d9cac2454e6eeba27909fd17bc8db12f460a574fdc89b31c44886f3104021", "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": "gitnexus/src/core/ingestion/languages/csharp/captures.ts", "duplicate_line": 127, "correlation_key": "fp|3a2d9cac2454e6eeba27909fd17bc8db12f460a574fdc89b31c44886f3104021"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/java/captures.ts"}, "region": {"startLine": 104}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27946, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a6f6996fcdff8d1eedb580579cf0ba8b5cda512152b8976e87e89823c2c8453d", "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": "gitnexus/src/core/ingestion/languages/c/captures.ts", "duplicate_line": 65, "correlation_key": "fp|a6f6996fcdff8d1eedb580579cf0ba8b5cda512152b8976e87e89823c2c8453d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/java/captures.ts"}, "region": {"startLine": 90}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27945, "scanner": "repobility-ai-code-hygiene", "fingerprint": "29ff1ca3fd5ed2605aad5130334cd91203af337058e4fd4dd8f45c7aebd7b689", "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": "gitnexus/src/core/ingestion/languages/cpp/range-bindings.ts", "duplicate_line": 15, "correlation_key": "fp|29ff1ca3fd5ed2605aad5130334cd91203af337058e4fd4dd8f45c7aebd7b689"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/go/range-binding.ts"}, "region": {"startLine": 15}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27944, "scanner": "repobility-ai-code-hygiene", "fingerprint": "da2466775f7a8a35a1debc3759c4a41c3c8d3773f76923406bae29e76b4c0e7d", "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": "gitnexus/src/core/ingestion/languages/c/merge-bindings.ts", "duplicate_line": 10, "correlation_key": "fp|da2466775f7a8a35a1debc3759c4a41c3c8d3773f76923406bae29e76b4c0e7d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/go/merge-bindings.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27943, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f2fa6e9683e6272360ea4f9040c61ac413aedf29b3adc09f464ec05e057dc724", "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": "gitnexus/src/core/ingestion/languages/c/captures.ts", "duplicate_line": 65, "correlation_key": "fp|f2fa6e9683e6272360ea4f9040c61ac413aedf29b3adc09f464ec05e057dc724"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/go/captures.ts"}, "region": {"startLine": 68}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27942, "scanner": "repobility-ai-code-hygiene", "fingerprint": "02bb6ca3748100d1304366d7e322cd2b395bfe8bb84e035cd1f9fb24d38bb6d0", "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": "gitnexus/src/core/ingestion/languages/cpp/simple-hooks.ts", "duplicate_line": 10, "correlation_key": "fp|02bb6ca3748100d1304366d7e322cd2b395bfe8bb84e035cd1f9fb24d38bb6d0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/csharp/simple-hooks.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27941, "scanner": "repobility-ai-code-hygiene", "fingerprint": "de3f0dfb11ae42f6d097d3608240cb7202687080ce624e097bce539af2b942b3", "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": "gitnexus/src/core/ingestion/languages/c/captures.ts", "duplicate_line": 65, "correlation_key": "fp|de3f0dfb11ae42f6d097d3608240cb7202687080ce624e097bce539af2b942b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/csharp/captures.ts"}, "region": {"startLine": 113}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27940, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c0d5513df1adcb6253cd1ff860acf1eebd75b556815d42bc19378356aadef08a", "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": "gitnexus/src/core/ingestion/languages/c/merge-bindings.ts", "duplicate_line": 10, "correlation_key": "fp|c0d5513df1adcb6253cd1ff860acf1eebd75b556815d42bc19378356aadef08a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/cpp/merge-bindings.ts"}, "region": {"startLine": 10}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27939, "scanner": "repobility-ai-code-hygiene", "fingerprint": "137024511a94e5f099d18c2ebc1f6521771c2de9af290a5166e225f552c2e2b3", "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": "gitnexus/src/core/ingestion/languages/c/import-decomposer.ts", "duplicate_line": 4, "correlation_key": "fp|137024511a94e5f099d18c2ebc1f6521771c2de9af290a5166e225f552c2e2b3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/cpp/import-decomposer.ts"}, "region": {"startLine": 4}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27938, "scanner": "repobility-ai-code-hygiene", "fingerprint": "8c0367fd324e6e4199673df064941c5ec06202e93cb3bd3092e1b91eb7324b15", "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": "gitnexus/src/core/ingestion/languages/c/header-scan.ts", "duplicate_line": 5, "correlation_key": "fp|8c0367fd324e6e4199673df064941c5ec06202e93cb3bd3092e1b91eb7324b15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/cpp/header-scan.ts"}, "region": {"startLine": 5}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27937, "scanner": "repobility-ai-code-hygiene", "fingerprint": "a709020ecdbc2f9b2fba00772ddc8220c1871d20e1eed553bc5781239e1fc3a2", "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": "gitnexus/src/core/ingestion/languages/c/arity.ts", "duplicate_line": 3, "correlation_key": "fp|a709020ecdbc2f9b2fba00772ddc8220c1871d20e1eed553bc5781239e1fc3a2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/cpp/arity.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27936, "scanner": "repobility-ai-code-hygiene", "fingerprint": "f98f0d164c65784fd82c5fcbcf97a852d51cd4979b26e17d515ec7e4435f2d9a", "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": "gitnexus/src/core/ingestion/languages/c/arity-metadata.ts", "duplicate_line": 46, "correlation_key": "fp|f98f0d164c65784fd82c5fcbcf97a852d51cd4979b26e17d515ec7e4435f2d9a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/cpp/arity-metadata.ts"}, "region": {"startLine": 82}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27935, "scanner": "repobility-ai-code-hygiene", "fingerprint": "375497562013c3d6cbd13f3e249c72a450e7fdcfe4de252245753d6c7dd31ce6", "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": "gitnexus/src/core/ingestion/heritage-processor.ts", "duplicate_line": 145, "correlation_key": "fp|375497562013c3d6cbd13f3e249c72a450e7fdcfe4de252245753d6c7dd31ce6"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/import-processor.ts"}, "region": {"startLine": 213}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 27934, "scanner": "repobility-ai-code-hygiene", "fingerprint": "7328640c547102144a3f39036918e82a1e955a43f45c6fe03824527cc7830a15", "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": "gitnexus-web/src/lib/constants.ts", "duplicate_line": 78, "correlation_key": "fp|7328640c547102144a3f39036918e82a1e955a43f45c6fe03824527cc7830a15"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/community-processor.ts"}, "region": {"startLine": 52}}}]}, {"ruleId": "SEC017", "level": "note", "message": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely long inputs to burn through your API credits (a single 128K-token request to GPT-4 costs ~$4, and automated attacks can drain budgets in minutes). (2) Context stuffing \u2014 oversized inputs can push your system prompt out of the context window, effectively disab"}, "properties": {"repobilityId": 5756, "scanner": "repobility-threat-engine", "fingerprint": "a595f2b22458f0c27e3cbeab4ab97045cf88bbffd0cd955ecae005a6399ccaf8", "category": "llm_injection", "severity": "low", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "This file sends user input to an LLM and has length validation, but no rate limiting was detected. Rate limiting prevents automated cost abuse (an attacker scripting thousands of requests).", "evidence": {"reason": "This file sends user input to an LLM and has length validation, but no rate limiting was detected. Rate limiting prevents automated cost abuse (an attacker scripting thousands of requests).", "rule_id": "SEC017", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "fp|a595f2b22458f0c27e3cbeab4ab97045cf88bbffd0cd955ecae005a6399ccaf8"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/generator.ts"}, "region": {"startLine": 413}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 5753, "scanner": "repobility-threat-engine", "fingerprint": "047f55e02897965734d83446472277343f416e6e88a5786e2b0e57dbdb73b7a8", "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|254|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/html-viewer.ts"}, "region": {"startLine": 254}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 5752, "scanner": "repobility-ai-code-hygiene", "fingerprint": "0c3a5d0dd15d0fd90892a60b58ac893ac196ea9c1ba9e935addbb0497ef8c3fe", "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": "gitnexus/src/cli/analyze.ts", "duplicate_line": 224, "correlation_key": "fp|0c3a5d0dd15d0fd90892a60b58ac893ac196ea9c1ba9e935addbb0497ef8c3fe"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 290}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4716, "scanner": "repobility-ai-code-hygiene", "fingerprint": "32f38ba1f2487bd569e9575dab7ad0b1a503eeaa2b9952e18883420844c8eab4", "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": "gitnexus/src/core/group/extractors/grpc-extractor.ts", "duplicate_line": 24, "correlation_key": "fp|32f38ba1f2487bd569e9575dab7ad0b1a503eeaa2b9952e18883420844c8eab4"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/thrift-extractor.ts"}, "region": {"startLine": 38}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 4651, "scanner": "repobility-docker", "fingerprint": "1670a560f6b41dfd381c68fe85349c8caba8fdbb2c3f321b79e05b7402c238b0", "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|1670a560f6b41dfd381c68fe85349c8caba8fdbb2c3f321b79e05b7402c238b0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 9}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4647, "scanner": "repobility-ai-code-hygiene", "fingerprint": "555f7edc7044dffc7456e4edb68969bb06500539ab72e8f93494a0c8078428ab", "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": "gitnexus/src/core/group/extractors/include-extractor.ts", "duplicate_line": 397, "correlation_key": "fp|555f7edc7044dffc7456e4edb68969bb06500539ab72e8f93494a0c8078428ab"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/topic-extractor.ts"}, "region": {"startLine": 67}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4475, "scanner": "repobility-ai-code-hygiene", "fingerprint": "25dffa817bea4d383d5ad4ec01a0e2413eb1c7b01e52be9902fe6a5483ad460f", "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": "gitnexus-web/src/core/ingestion/cluster-enricher.ts", "duplicate_line": 8, "correlation_key": "fp|25dffa817bea4d383d5ad4ec01a0e2413eb1c7b01e52be9902fe6a5483ad460f"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/cluster-enricher.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4473, "scanner": "repobility-ai-code-hygiene", "fingerprint": "365a1d7daeab6c705f2921a2886dd703b1cf6461a4aa2eb97da3efdc86b9bf03", "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": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts", "duplicate_line": 121, "correlation_key": "fp|365a1d7daeab6c705f2921a2886dd703b1cf6461a4aa2eb97da3efdc86b9bf03"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/rust-workspace-extractor.ts"}, "region": {"startLine": 113}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4472, "scanner": "repobility-ai-code-hygiene", "fingerprint": "c83a1fe71f679fe6e2a55bd6fee526cde1a27ced3e71fb4df6263d0eee1a967c", "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": "gitnexus/src/core/group/extractors/node-workspace-extractor.ts", "duplicate_line": 194, "correlation_key": "fp|c83a1fe71f679fe6e2a55bd6fee526cde1a27ced3e71fb4df6263d0eee1a967c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/python-workspace-extractor.ts"}, "region": {"startLine": 201}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4471, "scanner": "repobility-ai-code-hygiene", "fingerprint": "b0f5a812a7e9d7df59bfc6e741dd71f081db57cd51b8ae6f73130aebeddabd12", "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": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts", "duplicate_line": 121, "correlation_key": "fp|b0f5a812a7e9d7df59bfc6e741dd71f081db57cd51b8ae6f73130aebeddabd12"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/python-workspace-extractor.ts"}, "region": {"startLine": 126}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4470, "scanner": "repobility-ai-code-hygiene", "fingerprint": "dfdda0b71fa4005f50b562db77dd17d4ac37d293c46a8ce97e26c677df31bc46", "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": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts", "duplicate_line": 122, "correlation_key": "fp|dfdda0b71fa4005f50b562db77dd17d4ac37d293c46a8ce97e26c677df31bc46"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/node-workspace-extractor.ts"}, "region": {"startLine": 124}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4469, "scanner": "repobility-ai-code-hygiene", "fingerprint": "56f4294ada80983b2cb3dab79c43cad954d11bdbda3b225009966d1efe4baf31", "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": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts", "duplicate_line": 121, "correlation_key": "fp|56f4294ada80983b2cb3dab79c43cad954d11bdbda3b225009966d1efe4baf31"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/java-workspace-extractor.ts"}, "region": {"startLine": 134}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4468, "scanner": "repobility-ai-code-hygiene", "fingerprint": "d18075c47f242b1db54fb50fbaa5873a45b65ce6357645cb863c6ff52112ce72", "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": "gitnexus/src/core/group/extractors/elixir-workspace-extractor.ts", "duplicate_line": 121, "correlation_key": "fp|d18075c47f242b1db54fb50fbaa5873a45b65ce6357645cb863c6ff52112ce72"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/group/extractors/go-workspace-extractor.ts"}, "region": {"startLine": 127}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4467, "scanner": "repobility-ai-code-hygiene", "fingerprint": "adcca9d5d4b82036a1c1393730bffb282d0f4f93faad85552622206ec60f830d", "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": "gitnexus-web/src/config/ignore-service.ts", "duplicate_line": 1, "correlation_key": "fp|adcca9d5d4b82036a1c1393730bffb282d0f4f93faad85552622206ec60f830d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/config/ignore-service.ts"}, "region": {"startLine": 6}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 4149, "scanner": "repobility-ai-code-hygiene", "fingerprint": "39abab03a782b3598bebb5c4a3fb3e3d7e5e960b9006bfa5e2d6e98427e5e1ca", "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": "gitnexus/src/core/ingestion/languages/csharp/namespace-siblings.ts", "duplicate_line": 227, "correlation_key": "fp|39abab03a782b3598bebb5c4a3fb3e3d7e5e960b9006bfa5e2d6e98427e5e1ca"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/languages/go/package-siblings.ts"}, "region": {"startLine": 54}}}]}, {"ruleId": "AIC009", "level": "note", "message": {"text": "Multiple AI-agent scaffold marker files are present"}, "properties": {"repobilityId": 3876, "scanner": "repobility-ai-code-hygiene", "fingerprint": "637be4b7d792540c9eb7ec6ecee111643252bb60385776703cb965bcde5506e0", "category": "quality", "severity": "low", "confidence": 0.68, "triageState": "open", "verdict": "likely", "isResolved": false, "reason": "Repository root contains several AI-agent scaffold marker files.", "evidence": {"markers": [".cursorrules", ".windsurfrules", "AGENTS.md", "CLAUDE.md"], "rule_id": "AIC009", "scanner": "repobility-ai-code-hygiene", "references": ["https://arxiv.org/abs/2601.15195"], "correlation_key": "fp|637be4b7d792540c9eb7ec6ecee111643252bb60385776703cb965bcde5506e0"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".cursorrules"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 2905, "scanner": "repobility-docker", "fingerprint": "25205226f071ef50bb14f56d633e205c053c683f8785d5a52521b499822b4140", "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": "gitnexus-web", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|25205226f071ef50bb14f56d633e205c053c683f8785d5a52521b499822b4140"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 27}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 2903, "scanner": "repobility-docker", "fingerprint": "efdb3cf31e26ba39d01271cf2b0b96057104ca00a849e086ed4f31d583f644d1", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "gitnexus-web", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|efdb3cf31e26ba39d01271cf2b0b96057104ca00a849e086ed4f31d583f644d1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 27}}}]}, {"ruleId": "DKC010", "level": "note", "message": {"text": "Compose service lacks no-new-privileges hardening"}, "properties": {"repobilityId": 2899, "scanner": "repobility-docker", "fingerprint": "58561b99200697341e4a7f6a3e219ae5672abf213557f9648d84008b8cbfd7c2", "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": "gitnexus-server", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|58561b99200697341e4a7f6a3e219ae5672abf213557f9648d84008b8cbfd7c2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKC006", "level": "note", "message": {"text": "Compose service does not declare a runtime user"}, "properties": {"repobilityId": 2897, "scanner": "repobility-docker", "fingerprint": "25fda68d8d2ea5001df034d8d53e0fc8b35dead7fa19fb119cfff82c99d5fca2", "category": "docker", "severity": "low", "confidence": 0.56, "triageState": "open", "verdict": "needs_review", "isResolved": false, "reason": "Service has no user setting and Repobility could not prove the image runs non-root.", "evidence": {"rule_id": "DKC006", "scanner": "repobility-docker", "service": "gitnexus-server", "references": ["https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html"], "correlation_key": "fp|25fda68d8d2ea5001df034d8d53e0fc8b35dead7fa19fb119cfff82c99d5fca2"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 1}}}]}, {"ruleId": "DKR011", "level": "note", "message": {"text": "Dockerfile installs recommended OS packages"}, "properties": {"repobilityId": 2889, "scanner": "repobility-docker", "fingerprint": "05343c779897b9404ac25f3daa63bfdd50c00e8ace00a813ab2730f7ab3cf134", "category": "docker", "severity": "low", "confidence": 0.72, "triageState": "fixed", "verdict": "likely", "isResolved": true, "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|05343c779897b9404ac25f3daa63bfdd50c00e8ace00a813ab2730f7ab3cf134"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/Dockerfile.test"}, "region": {"startLine": 3}}}]}, {"ruleId": "DKR008", "level": "note", "message": {"text": ".dockerignore misses sensitive defaults"}, "properties": {"repobilityId": 2888, "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": ["id_rsa", "*.pem", "*.key"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".dockerignore"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC017", "level": "note", "message": {"text": "[SEC017] Unbounded Input to LLM/External API: User input is passed to an LLM or external AI API (OpenAI, Anthropic, etc.) without any visible length or size validation. This creates two risks: (1) Cost abuse \u2014 an attacker can send extremely long inputs to burn through your API credits (a single 128K-token request to GPT-4 costs ~$4, and automated attacks can drain budgets in minutes). (2) Context stuffing \u2014 oversized inputs can push your system prompt out of the context window, effectively disab"}, "properties": {"repobilityId": 2879, "scanner": "repobility-threat-engine", "fingerprint": "242c2bc2cf022dc133b16140f6ca5d13a84acfd808afe112860d451af0a8974a", "category": "llm_injection", "severity": "low", "confidence": 0.3, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "This file sends user input to an LLM and has length validation, but no rate limiting was detected. Rate limiting prevents automated cost abuse (an attacker scripting thousands of requests).", "evidence": {"reason": "This file sends user input to an LLM and has length validation, but no rate limiting was detected. Rate limiting prevents automated cost abuse (an attacker scripting thousands of requests).", "rule_id": "SEC017", "scanner": "repobility-threat-engine", "confidence": 0.3, "correlation_key": "fp|242c2bc2cf022dc133b16140f6ca5d13a84acfd808afe112860d451af0a8974a"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/generator.ts"}, "region": {"startLine": 412}}}]}, {"ruleId": "SEC006", "level": "note", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 2846, "scanner": "repobility-threat-engine", "fingerprint": "fa71e47598a2ce6ac29910b39c791c80f2a34db4235018dd0d6d022edc009e4f", "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|253|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/html-viewer.ts"}, "region": {"startLine": 253}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2831, "scanner": "repobility-ai-code-hygiene", "fingerprint": "9fa079030af6fb200355106dd28c24ecf57540c2b5632001e17eacd411a933ae", "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": "gitnexus/src/core/ingestion/field-extractors/configs/go.ts", "duplicate_line": 10, "correlation_key": "fp|9fa079030af6fb200355106dd28c24ecf57540c2b5632001e17eacd411a933ae"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/field-extractors/configs/rust.ts"}, "region": {"startLine": 11}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2828, "scanner": "repobility-ai-code-hygiene", "fingerprint": "230846fc417dea3c36fca245896033b84c8ff27ca62b0765e9b127c22d688c69", "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": "gitnexus/src/core/embeddings/character-chunk.ts", "duplicate_line": 17, "correlation_key": "fp|230846fc417dea3c36fca245896033b84c8ff27ca62b0765e9b127c22d688c69"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/embeddings/chunker.ts"}, "region": {"startLine": 21}}}]}, {"ruleId": "AIC003", "level": "note", "message": {"text": "Duplicated implementation block across source files"}, "properties": {"repobilityId": 2825, "scanner": "repobility-ai-code-hygiene", "fingerprint": "e37ca0f7118dc41a29a47f2b66925ba08c4554d35b2878e2f2d3baa3fd94bb95", "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": "gitnexus-shared/src/scope-resolution/registries/context.ts", "duplicate_line": 34, "correlation_key": "fp|e37ca0f7118dc41a29a47f2b66925ba08c4554d35b2878e2f2d3baa3fd94bb95"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-shared/src/scope-resolution/resolve-type-ref.ts"}, "region": {"startLine": 18}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security (and 2 more): Same pattern found in 2 additional files. Review if needed."}, "properties": {"repobilityId": 27931, "scanner": "repobility-threat-engine", "fingerprint": "f78b05f3525efdc18a5d1983ba1263e47eaa8a772967c623a7aa23730bd5139a", "category": "crypto", "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": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|f78b05f3525efdc18a5d1983ba1263e47eaa8a772967c623a7aa23730bd5139a"}}}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 9 more): Same pattern found in 9 additional files. Review if needed."}, "properties": {"repobilityId": 27930, "scanner": "repobility-threat-engine", "fingerprint": "9cc98ec684a3e6bc47534b8969a978472a77e62faf58b476f27031bff834dc54", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 9 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|9cc98ec684a3e6bc47534b8969a978472a77e62faf58b476f27031bff834dc54"}}}, {"ruleId": "ERR001", "level": "none", "message": {"text": "[ERR001] Silent Exception Swallowing (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 27928, "scanner": "repobility-threat-engine", "fingerprint": "93b9da83522ef7033c1689b56fc2639ef703f7cce5574751f2046196162761e3", "category": "error_handling", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "ERR001", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|93b9da83522ef7033c1689b56fc2639ef703f7cce5574751f2046196162761e3"}}}, {"ruleId": "SEC029", "level": "none", "message": {"text": "[SEC029] Server-Side Request Forgery (SSRF) \u2014 outbound HTTP from user input (and 25 more): Same pattern found in 25 additional files. Review if needed."}, "properties": {"repobilityId": 27926, "scanner": "repobility-threat-engine", "fingerprint": "a1abc0f73fcbbde4bfde07d3a1caa75668c0f255cd2533e6367562d2e96a50c7", "category": "ssrf", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 25 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|a1abc0f73fcbbde4bfde07d3a1caa75668c0f255cd2533e6367562d2e96a50c7"}}}, {"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": 5754, "scanner": "repobility-threat-engine", "fingerprint": "c966bfbf99d7a81d7552b2e286f67e7d919fb5b4cd8c4bd2aa1eb47e305015d6", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log('  Config saved to ~/.gitnexus/config.json\\n')", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/wiki.ts|15|console.log config saved to /.gitnexus/config.json n"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 156}}}]}, {"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": 4483, "scanner": "repobility-threat-engine", "fingerprint": "548c33e548163d0f6cda9c6f69525e1d2358edb5c31c837d5627fea3b625283d", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log(`Group: ${config.name}`)", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/group.ts|8|console.log group: config.name"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/group.ts"}, "region": {"startLine": 83}}}]}, {"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": 4482, "scanner": "repobility-threat-engine", "fingerprint": "169fd8fd4ff3fbb8595eb83c0f82f6d55e21143cad113d8fa84659c4462cfb65", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log('  Config saved to ~/.gitnexus/config.json\\n')", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/wiki.ts|15|console.log config saved to /.gitnexus/config.json n"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 154}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 4480, "scanner": "repobility-threat-engine", "fingerprint": "4ee09d004439927a835e9607579f8f20261abc36f1e24dd13e0fbdb4c9e3fd5d", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|290|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/lbug/pool-adapter.ts"}, "region": {"startLine": 290}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 4479, "scanner": "repobility-threat-engine", "fingerprint": "846a1ec8a0576b14c6b9285f45ea107146f270d618271f16fae6caafb16040d9", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|436|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-web/src/core/llm/agent.ts"}, "region": {"startLine": 436}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Compose service `gitnexus-web` image is selected through a build variable"}, "properties": {"repobilityId": 2901, "scanner": "repobility-docker", "fingerprint": "de89611117e39f875d3fa50b1a5e08455033894f55bd8a960f559311ecc315ef", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${WEB_IMAGE:-ghcr.io/abhigyanpatwari/gitnexus-web:latest}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|de89611117e39f875d3fa50b1a5e08455033894f55bd8a960f559311ecc315ef"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 27}}}]}, {"ruleId": "DKR002", "level": "none", "message": {"text": "Compose service `gitnexus-server` image is selected through a build variable"}, "properties": {"repobilityId": 2896, "scanner": "repobility-docker", "fingerprint": "e56db0df2bc400abd382db4ecf913dd728a24252356bfb1bf7b84cd8a33c7d4c", "category": "docker", "severity": "info", "confidence": 0.48, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Base image contains a variable; manual review is needed to avoid false positives.", "evidence": {"image": "${SERVER_IMAGE:-ghcr.io/abhigyanpatwari/gitnexus:latest}", "rule_id": "DKR002", "scanner": "repobility-docker", "references": ["https://docs.docker.com/develop/develop-images/dockerfile_best-practices/", "https://docs.docker.com/scout/policy/"], "correlation_key": "fp|e56db0df2bc400abd382db4ecf913dd728a24252356bfb1bf7b84cd8a33c7d4c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docker-compose.yaml"}, "region": {"startLine": 1}}}]}, {"ruleId": "SEC020", "level": "none", "message": {"text": "[SEC020] Secret Printed to Logs (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 2851, "scanner": "repobility-threat-engine", "fingerprint": "b6edddaddab6b62ff63a87b52b7d7b3bab2a5af6b4d7361c1238d18c2c6e3162", "category": "credential_exposure", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|b6edddaddab6b62ff63a87b52b7d7b3bab2a5af6b4d7361c1238d18c2c6e3162"}}}, {"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": 2850, "scanner": "repobility-threat-engine", "fingerprint": "eb967619568280182fae34843bbf6d65e2fb5ce01b9cccff07f634c5de92a44c", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log(`Group: ${config.name}`)", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/group.ts|8|console.log group: config.name"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/group.ts"}, "region": {"startLine": 82}}}]}, {"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": 2848, "scanner": "repobility-threat-engine", "fingerprint": "d8f1cb8a904b2920dfd99d14ec69ae81fa9493bef48da0b999cfd34668c3735d", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log('  Config saved to ~/.gitnexus/config.json\\n')", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/wiki.ts|15|console.log config saved to /.gitnexus/config.json n"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/wiki.ts"}, "region": {"startLine": 153}}}]}, {"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": 2847, "scanner": "repobility-threat-engine", "fingerprint": "6a6954452f9920871a3df6fe5555e4701725e7788c55ab67f5488b7630ae6f60", "category": "credential_exposure", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Safe context pattern detected", "evidence": {"match": "console.log(`  Device:    ${embeddingConfig.device}`)", "reason": "Safe context pattern detected", "rule_id": "SEC020", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "secret|gitnexus/src/cli/doctor.ts|2|console.log device: embeddingconfig.device"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/cli/doctor.ts"}, "region": {"startLine": 28}}}]}, {"ruleId": "SEC006", "level": "none", "message": {"text": "[SEC006] XSS Risk: Direct HTML injection without sanitization."}, "properties": {"repobilityId": 2845, "scanner": "repobility-threat-engine", "fingerprint": "9c9c845b78379d834e89320c397056620cce2933ebd5823645f6b55d3c141b9f", "category": "injection", "severity": "info", "confidence": 0.1, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Sanitization detected ('sanitize') \u2014 output is likely sanitized", "evidence": {"match": ".innerHTML = D", "reason": "Sanitization detected ('sanitize') \u2014 output is likely sanitized", "rule_id": "SEC006", "scanner": "repobility-threat-engine", "confidence": 0.1, "correlation_key": "code|injection|token|162|sec006"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-web/src/components/ProcessFlowModal.tsx"}, "region": {"startLine": 162}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security (and 1 more): Same pattern found in 1 additional files. Review if needed."}, "properties": {"repobilityId": 2844, "scanner": "repobility-threat-engine", "fingerprint": "7b9ccdd419b3878e3d2ec8efb74d8ee23f94729fa3ed8ff97305e33614909ea3", "category": "crypto", "severity": "info", "confidence": 0.2, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "evidence": {"reason": "Deduplicated summary only: 1 additional occurrences found. The top occurrences remain visible as actionable findings.", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|7b9ccdd419b3878e3d2ec8efb74d8ee23f94729fa3ed8ff97305e33614909ea3"}}}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 2843, "scanner": "repobility-threat-engine", "fingerprint": "f0078924c0b711de95c47ada2f114b93392f5c562f6bf2dddfb5ce42bec68c8b", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|218|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/shadow-harness.ts"}, "region": {"startLine": 218}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 2842, "scanner": "repobility-threat-engine", "fingerprint": "ec8072495d024af7c658c62ddc669bacdac626ad876b29f5f4514fa2ffb7e9bb", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|434|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-web/src/core/llm/agent.ts"}, "region": {"startLine": 434}}}]}, {"ruleId": "SEC015", "level": "none", "message": {"text": "[SEC015] Insecure Randomness for Security: Weak PRNG used in security-sensitive context. Output is predictable."}, "properties": {"repobilityId": 2841, "scanner": "repobility-threat-engine", "fingerprint": "5b48a3b76b55229437e2755ccf99b5aec24b2650be2f05466f3e1ec7c03f441f", "category": "crypto", "severity": "info", "confidence": 0.25, "triageState": "false_positive", "verdict": "likely_fp", "isResolved": true, "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "evidence": {"match": "Math.random()", "reason": "Weak PRNG appears to be used for non-security behavior (UI, sampling, demos, shuffling, or backoff), not for secrets", "rule_id": "SEC015", "scanner": "repobility-threat-engine", "confidence": 0.25, "correlation_key": "code|crypto|token|393|sec015"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus-web/src/hooks/useAppState.tsx"}, "region": {"startLine": 393}}}]}, {"ruleId": "ERR002", "level": "none", "message": {"text": "[ERR002] Empty Catch Block (and 6 more): Same pattern found in 6 additional files. Review if needed."}, "properties": {"repobilityId": 2840, "scanner": "repobility-threat-engine", "fingerprint": "79beb8c79c8fe2afad3d97b1aaa69b9e44070a54ac39178f92cc366b51132c53", "category": "error_handling", "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": "ERR002", "scanner": "repobility-threat-engine", "confidence": 0.2, "correlation_key": "fp|79beb8c79c8fe2afad3d97b1aaa69b9e44070a54ac39178f92cc366b51132c53"}}}, {"ruleId": "SEC033", "level": "error", "message": {"text": "[SEC033] Prototype Pollution \u2014 unfiltered merge of user object: Merging user-controlled object into a target without filtering `__proto__`/`constructor`/`prototype` keys lets attackers inject properties onto Object.prototype, affecting every object in the process. CWE-1321. Real-world: CVE-2019-10744 (lodash), CVE-2021-23337 (lodash.set), CVE-2023-26136 (tough-cookie)."}, "properties": {"repobilityId": 27933, "scanner": "repobility-threat-engine", "fingerprint": "e5f582398249ffc0cfdd68cad3aca5444c30532541d4d9c20791bd5a9e851845", "category": "prototype_pollution", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "[input.language] =", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC033", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|e5f582398249ffc0cfdd68cad3aca5444c30532541d4d9c20791bd5a9e851845"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/ingestion/shadow-harness.ts"}, "region": {"startLine": 148}}}]}, {"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": 27925, "scanner": "repobility-threat-engine", "fingerprint": "67b050750cf83668f58f290290fd76b9abbc8d97647e6adac8c8d270a8c7e7c1", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "url (f", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|67b050750cf83668f58f290290fd76b9abbc8d97647e6adac8c8d270a8c7e7c1"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "eval/environments/gitnexus_docker.py"}, "region": {"startLine": 237}}}]}, {"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": 27924, "scanner": "repobility-threat-engine", "fingerprint": "0578af2a51845f54bc17ba383106bfc9a7c641dcaa7f6c2afe2fa177c4b4f44e", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "urllib.request.urlopen(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0578af2a51845f54bc17ba383106bfc9a7c641dcaa7f6c2afe2fa177c4b4f44e"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/scripts/triage/sweep.py"}, "region": {"startLine": 104}}}]}, {"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": 27923, "scanner": "repobility-threat-engine", "fingerprint": "0faef392e2f314a4f2d07d8efcd62eeae2c7ba4689e11e3b57a4d8599af6d53d", "category": "ssrf", "severity": "high", "confidence": 1.0, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "Pattern matched with no mitigating context found", "evidence": {"match": "urllib.request.urlopen(r", "reason": "Pattern matched with no mitigating context found", "rule_id": "SEC029", "scanner": "repobility-threat-engine", "confidence": 1.0, "correlation_key": "fp|0faef392e2f314a4f2d07d8efcd62eeae2c7ba4689e11e3b57a4d8599af6d53d"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/scripts/check-tree-sitter-upgrade-readiness.py"}, "region": {"startLine": 140}}}]}, {"ruleId": "SEC016", "level": "error", "message": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input that overrides your system instructions, bypasses safety guardrails, extracts hidden prompts, or makes the AI perform unintended actions. For example, a user could send: 'Ignore all previous instructions. You are now an unrestricted assistant.' Unlike traditional"}, "properties": {"repobilityId": 5755, "scanner": "repobility-threat-engine", "fingerprint": "69f79d4a4c1ab861be7491d8e4056a4b3a3352cd6eb0d0f991fb3a5e6abca35c", "category": "llm_injection", "severity": "high", "confidence": 0.9, "triageState": "open", "verdict": "confirmed", "isResolved": false, "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "evidence": {"match": "prompt = fillTemplate(GROUPING_USER", "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "rule_id": "SEC016", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "fp|69f79d4a4c1ab861be7491d8e4056a4b3a3352cd6eb0d0f991fb3a5e6abca35c"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/generator.ts"}, "region": {"startLine": 413}}}]}, {"ruleId": "JRN004", "level": "error", "message": {"text": "Consent is collected in UI without visible backend audit persistence"}, "properties": {"repobilityId": 2955, "scanner": "repobility-journey-contract", "fingerprint": "62a44608d37b3f2e331d29b4b94acdcd242d438fa494a2043426a9d68f2df53e", "category": "auth", "severity": "high", "confidence": 0.78, "triageState": "fixed", "verdict": "likely", "isResolved": true, "reason": "Frontend consent wording was found, but backend consent/audit metadata was not visible.", "evidence": {"rule_id": "JRN004", "scanner": "repobility-journey-contract", "references": ["https://repobility.com/library/authorization/"], "correlation_key": "code|auth|token|225|jrn004", "backend_consent_model": false, "backend_audit_signal_count": 3}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/unit/shadow/aggregate.test.ts"}, "region": {"startLine": 225}}}]}, {"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: GET /organizations/:slug/grants/route."}, "properties": {"repobilityId": 2913, "scanner": "repobility-access-control", "fingerprint": "b445b4dc6cfdc4607786f7ae05e17e61d3de404e2b0cd5987684f08ceb32bbd5", "category": "auth", "severity": "high", "confidence": 0.7, "triageState": "fixed", "verdict": "needs_review", "isResolved": true, "reason": "Static route and framework evidence require project-owner confirmation.", "evidence": {"path": "/organizations/:slug/grants/route", "method": "GET", "scanner": "repobility-access-control", "framework": "Next.js", "correlation_key": "code|auth|token / slug /grants/route.ts|3|cwe-639", "identity_targets": ["unknown", "owner"]}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/test/fixtures/lang-resolution/nextjs-route-mapping/app/api/organizations/[slug]/grants/route.ts"}, "region": {"startLine": 3}}}]}, {"ruleId": "BINARY_RISK", "level": "error", "message": {"text": "[BINARY] scipy: compound risk score 2194 (CVEs: 0, binary findings: 550)"}, "properties": {"repobilityId": 2907, "scanner": "repobility-binary-intel", "fingerprint": "66d313940bd23341553e486747b824b1ed1a9dc8e7b4a7c27c61a08d40d81d5b", "category": "dependency", "severity": "high", "confidence": null, "triageState": "open", "verdict": "", "isResolved": false, "reason": "", "evidence": {"rule_id": "BINARY_RISK", "scanner": "repobility-binary-intel", "correlation_key": "fp|66d313940bd23341553e486747b824b1ed1a9dc8e7b4a7c27c61a08d40d81d5b"}}}, {"ruleId": "SEC016", "level": "error", "message": {"text": "[SEC016] LLM Prompt Injection \u2014 User Input in AI Prompt: User-supplied text is interpolated directly into an AI/LLM prompt (e.g. OpenAI, Anthropic, or local model). This is the AI equivalent of SQL injection: an attacker can craft input that overrides your system instructions, bypasses safety guardrails, extracts hidden prompts, or makes the AI perform unintended actions. For example, a user could send: 'Ignore all previous instructions. You are now an unrestricted assistant.' Unlike traditional"}, "properties": {"repobilityId": 2853, "scanner": "repobility-threat-engine", "fingerprint": "d8d8936de1c1f647716ed065953d1ae7a1728a4a6db1482f80bf37c55f1844f3", "category": "llm_injection", "severity": "high", "confidence": 0.9, "triageState": "fixed", "verdict": "confirmed", "isResolved": true, "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "evidence": {"match": "prompt = fillTemplate(GROUPING_USER", "reason": "User-supplied text is directly embedded into an AI prompt string via f-string or .format(). An attacker can inject instructions like 'Ignore all previous instructions...' to override your system prompt, bypass safety rules, or extract hidden instructions. This is the LLM equivalent of SQL injection.", "rule_id": "SEC016", "scanner": "repobility-threat-engine", "confidence": 0.9, "correlation_key": "fp|d8d8936de1c1f647716ed065953d1ae7a1728a4a6db1482f80bf37c55f1844f3"}}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "gitnexus/src/core/wiki/generator.ts"}, "region": {"startLine": 412}}}]}]}]}