{"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": "scanner-128722276d751d6a", "name": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-527db2fa84dbee99", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/6272-c607b2a99c6aec4c.js:1", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "fullDescription": {"text": "Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library.\n\nWhy: OWASP basics. Already partially flagged by the security analyzer.\nRule id: fq.dangerous-html"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-f0fe3419983e3d33", "name": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/984-bdd5c0d206f19864.js", "shortDescription": {"text": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/984-bdd5c0d206f19864.js:1"}, "fullDescription": {"text": "React Flow edge labels render with a white rectangle behind the text by default, which scatters bright boxes across a dark canvas. Either drop the label, or override `.react-flow__edge-textbg` and `.react-flow__edge-text` in your stylesheet.\n\nWhy: P-H in CHECKLIST.md \u2014 vendor edge labels bleed white through a dark canvas.\nRule id: fq.edge-label.no-bg"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-d5c55ed27661893f", "name": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-f9fd723e5969776d", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "fullDescription": {"text": "Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library.\n\nWhy: OWASP basics. Already partially flagged by the security analyzer.\nRule id: fq.dangerous-html"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-d2e761bcea71c143", "name": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1", "shortDescription": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "fullDescription": {"text": "Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library.\n\nWhy: OWASP basics. Already partially flagged by the security analyzer.\nRule id: fq.dangerous-html"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-59196855f4a641b7", "name": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/header-pretty.js:399", "shortDescription": {"text": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/header-pretty.js:399"}, "fullDescription": {"text": "React Flow edge labels render with a white rectangle behind the text by default, which scatters bright boxes across a dark canvas. Either drop the label, or override `.react-flow__edge-textbg` and `.react-flow__edge-text` in your stylesheet.\n\nWhy: P-H in CHECKLIST.md \u2014 vendor edge labels bleed white through a dark canvas.\nRule id: fq.edge-label.no-bg"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-e5bc87f524151e83", "name": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1", "shortDescription": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1"}, "fullDescription": {"text": "Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable.\n\nWhy: Hygiene \u2014 easy to leak debug output.\nRule id: fq.console-leak"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-551f9dff8e8512b5", "name": "`truncate` class without `title=` for hover reveal \u2014 src/components/UseCasesSection.tsx:104", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/UseCasesSection.tsx:104"}, "fullDescription": {"text": "A truncated value should reveal the full text on hover. Pass the full string via `title={...}` so the user can read it.\n\nWhy: P2 in CHECKLIST.md \u2014 truncate without hover-reveal.\nRule id: fq.truncate.no-title"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-ea0769065ed41804", "name": "Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}", "shortDescription": {"text": "Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}"}, "fullDescription": {"text": "Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter."}, "properties": {"scanner": "scanner-primary", "layer": "hardware", "severity": "low", "confidence": 1.0}}, {"id": "scanner-aa5acaa49eb8315b", "name": "Containers defined but no K8s/orchestration manifest found", "shortDescription": {"text": "Containers defined but no K8s/orchestration manifest found"}, "fullDescription": {"text": "Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo."}, "properties": {"scanner": "scanner-primary", "layer": "hardware", "severity": "low", "confidence": 1.0}}, {"id": "scanner-11c2251dc4837f16", "name": "Insecure pattern 'dangerous_innerhtml' in docs/research/tryglen-page.html:4", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/tryglen-page.html:4"}, "fullDescription": {"text": "Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-d73b96c66521b692", "name": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-f06c1146837bc887", "name": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2f7fa54aa96ccc94", "name": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/1255-9ec4a11a26378f21.js:1", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-1aff47653a5fc5d0", "name": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/1255-9ec4a11a26378f21.js:1", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-12de0e589e1060c8", "name": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1", "shortDescription": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-2ae21ef6fee7990a", "name": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-0172e368f2f61309", "name": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1", "shortDescription": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1"}, "fullDescription": {"text": "Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-27924aa79fa4a517", "name": "GitHub Action is tag-pinned rather than SHA-pinned", "shortDescription": {"text": "GitHub Action is tag-pinned rather than SHA-pinned"}, "fullDescription": {"text": "actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "low", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 60 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 11 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-2d0c7b7ab8f8aacf", "name": "Critical user flow still appears backed by mock or placeholder data", "shortDescription": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "fullDescription": {"text": "A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-11825279136b53a3", "name": "CI is configured but no tests are detected", "shortDescription": {"text": "CI is configured but no tests are detected"}, "fullDescription": {"text": "A CI pipeline exists, but the scan found no test files to gate. Opus labeled this generated-code pattern as config theater: release machinery exists, but it has little behavioral signal."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-749d4bc1bd66df5f", "name": "Agent instructions exist but release-hardening basics are missing", "shortDescription": {"text": "Agent instructions exist but release-hardening basics are missing"}, "fullDescription": {"text": "AI-coder instruction files were found, but the repo is missing tests. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-e725d2ab884fbd49", "name": "Multiple root agent instruction files without precedence", "shortDescription": {"text": "Multiple root agent instruction files without precedence"}, "fullDescription": {"text": "The repo has multiple top-level AI-coder instruction files. Without precedence rules, different agents may follow different policies."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-fcfd4f04d0602b4a", "name": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-83663f39533c8e4c", "name": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1", "shortDescription": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "fullDescription": {"text": "Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-743b3fe94fa44bab", "name": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1", "shortDescription": {"text": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "fullDescription": {"text": "Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a03ab6e8d7fd6eb4", "name": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/b79b7286-a333b21cd9a8d193.js:1", "shortDescription": {"text": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/b79b7286-a333b21cd9a8d193.js:1"}, "fullDescription": {"text": "Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/19559"}, "properties": {"repository": "ShreyanMitra5/codewp", "repoUrl": "https://github.com/ShreyanMitra5/codewp", "branch": "main"}, "results": [{"ruleId": "scanner-128722276d751d6a", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1"}, "properties": {"repobilityId": "4f9507f9c1718664", "scanner": "scanner-primary", "fingerprint": "128722276d751d6a", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-527db2fa84dbee99", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "properties": {"repobilityId": "55f2e61cfd00af8e", "scanner": "scanner-primary", "fingerprint": "527db2fa84dbee99", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-f0fe3419983e3d33", "level": "note", "message": {"text": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/984-bdd5c0d206f19864.js:1"}, "properties": {"repobilityId": "c8e2556e84ec8056", "scanner": "scanner-primary", "fingerprint": "f0fe3419983e3d33", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.edge-label.no-bg"]}}, {"ruleId": "scanner-d5c55ed27661893f", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "properties": {"repobilityId": "95c02758f08fb89c", "scanner": "scanner-primary", "fingerprint": "d5c55ed27661893f", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-f9fd723e5969776d", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "properties": {"repobilityId": "84762a506d10f072", "scanner": "scanner-primary", "fingerprint": "f9fd723e5969776d", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-d2e761bcea71c143", "level": "warning", "message": {"text": "`dangerouslySetInnerHTML` used in a React component \u2014 docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "properties": {"repobilityId": "f10bf61cb4509541", "scanner": "scanner-primary", "fingerprint": "d2e761bcea71c143", "layer": "frontend", "severity": "medium", "confidence": 1.0, "tags": ["frontend-quality", "fq.dangerous-html"]}}, {"ruleId": "scanner-59196855f4a641b7", "level": "note", "message": {"text": "React Flow edge with `label=` but no project-wide edge-label CSS override \u2014 docs/research/chunks/header-pretty.js:399"}, "properties": {"repobilityId": "61496d37f1ec3580", "scanner": "scanner-primary", "fingerprint": "59196855f4a641b7", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.edge-label.no-bg"]}}, {"ruleId": "scanner-e5bc87f524151e83", "level": "note", "message": {"text": "Stray `console.log` in TS/JS \u2014 docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1"}, "properties": {"repobilityId": "b7a210cc63bf8ef3", "scanner": "scanner-primary", "fingerprint": "e5bc87f524151e83", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.console-leak"]}}, {"ruleId": "scanner-551f9dff8e8512b5", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 src/components/UseCasesSection.tsx:104"}, "properties": {"repobilityId": "97703f72ca109d44", "scanner": "scanner-primary", "fingerprint": "551f9dff8e8512b5", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-ea0769065ed41804", "level": "note", "message": {"text": "Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}"}, "properties": {"repobilityId": "7bf21a3204b094b8", "scanner": "scanner-primary", "fingerprint": "ea0769065ed41804", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "docker", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 11}}}]}, {"ruleId": "scanner-ea0769065ed41804", "level": "note", "message": {"text": "Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}"}, "properties": {"repobilityId": "792000b659809c51", "scanner": "scanner-primary", "fingerprint": "ea0769065ed41804", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "docker", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 37}}}]}, {"ruleId": "scanner-ea0769065ed41804", "level": "note", "message": {"text": "Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}"}, "properties": {"repobilityId": "09a589fefb1f8a78", "scanner": "scanner-primary", "fingerprint": "ea0769065ed41804", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "docker", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "Dockerfile"}, "region": {"startLine": 75}}}]}, {"ruleId": "scanner-aa5acaa49eb8315b", "level": "note", "message": {"text": "Containers defined but no K8s/orchestration manifest found"}, "properties": {"repobilityId": "b230ea9b68736081", "scanner": "scanner-primary", "fingerprint": "aa5acaa49eb8315b", "layer": "hardware", "severity": "low", "confidence": 1.0, "tags": ["coverage", "deployment"]}}, {"ruleId": "scanner-11c2251dc4837f16", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/tryglen-page.html:4"}, "properties": {"repobilityId": "08fbe99cea69f085", "scanner": "scanner-primary", "fingerprint": "11c2251dc4837f16", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/tryglen-page.html"}, "region": {"startLine": 4}}}]}, {"ruleId": "scanner-d73b96c66521b692", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "properties": {"repobilityId": "a1584ce344f30faa", "scanner": "scanner-primary", "fingerprint": "d73b96c66521b692", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/6272-c607b2a99c6aec4c.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-f06c1146837bc887", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/6272-c607b2a99c6aec4c.js:1"}, "properties": {"repobilityId": "a6145168ab545a0f", "scanner": "scanner-primary", "fingerprint": "f06c1146837bc887", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/6272-c607b2a99c6aec4c.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-2f7fa54aa96ccc94", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "properties": {"repobilityId": "778871ac5196eb61", "scanner": "scanner-primary", "fingerprint": "2f7fa54aa96ccc94", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/1255-9ec4a11a26378f21.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-1aff47653a5fc5d0", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "properties": {"repobilityId": "3405c864cc7a3406", "scanner": "scanner-primary", "fingerprint": "1aff47653a5fc5d0", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/1255-9ec4a11a26378f21.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-12de0e589e1060c8", "level": "warning", "message": {"text": "Insecure pattern 'dangerous_innerhtml' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "properties": {"repobilityId": "4012b21cfaa6032d", "scanner": "scanner-primary", "fingerprint": "12de0e589e1060c8", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "dangerous_innerhtml"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/4bd1b696-f785427dddbba9fb.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-2ae21ef6fee7990a", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "properties": {"repobilityId": "7efe709ae4a26c41", "scanner": "scanner-primary", "fingerprint": "2ae21ef6fee7990a", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/4bd1b696-f785427dddbba9fb.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-0172e368f2f61309", "level": "warning", "message": {"text": "Insecure pattern 'direct_innerhtml_assignment' in docs/research/chunks/9da6db1e-3fe8285329e328c0.js:1"}, "properties": {"repobilityId": "3388cccdef43f463", "scanner": "scanner-primary", "fingerprint": "0172e368f2f61309", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "direct_innerhtml_assignment"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "docs/research/chunks/9da6db1e-3fe8285329e328c0.js"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-27924aa79fa4a517", "level": "note", "message": {"text": "GitHub Action is tag-pinned rather than SHA-pinned"}, "properties": {"repobilityId": "ae16880318b99912", "scanner": "scanner-primary", "fingerprint": "27924aa79fa4a517", "layer": "cicd", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "github-actions", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci.yml"}, "region": {"startLine": 18}}}]}, {"ruleId": "scanner-27924aa79fa4a517", "level": "note", "message": {"text": "GitHub Action is tag-pinned rather than SHA-pinned"}, "properties": {"repobilityId": "989a74409a402368", "scanner": "scanner-primary", "fingerprint": "27924aa79fa4a517", "layer": "cicd", "severity": "low", "confidence": 1.0, "tags": ["supply-chain", "github-actions", "pinned-dependencies"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": ".github/workflows/ci.yml"}, "region": {"startLine": 21}}}]}, {"ruleId": "scanner-6893a6c8b0861585", "level": "warning", "message": {"text": "Very low test-to-source ratio"}, "properties": {"repobilityId": "54a7de3f06314bf0", "scanner": "scanner-primary", "fingerprint": "6893a6c8b0861585", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "coverage"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "94130eae8c8d097e", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-2d0c7b7ab8f8aacf", "level": "warning", "message": {"text": "Critical user flow still appears backed by mock or placeholder data"}, "properties": {"repobilityId": "e3bc43ba24717ecd", "scanner": "scanner-primary", "fingerprint": "2d0c7b7ab8f8aacf", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["placeholder", "mock-data", "critical-flow", "generated-repo-pattern"]}}, {"ruleId": "scanner-11825279136b53a3", "level": "warning", "message": {"text": "CI is configured but no tests are detected"}, "properties": {"repobilityId": "23769c179cd4fa8d", "scanner": "scanner-primary", "fingerprint": "11825279136b53a3", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "ci", "config-theater", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "44bf47f93d52678b", "scanner": "scanner-primary", "fingerprint": "749d4bc1bd66df5f", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["agent-instructions", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "9a4573f613d2edf5", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "59be6121ab86234e", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-e725d2ab884fbd49", "level": "note", "message": {"text": "Multiple root agent instruction files without precedence"}, "properties": {"repobilityId": "1953db6c89508d22", "scanner": "scanner-primary", "fingerprint": "e725d2ab884fbd49", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["agent-instructions", "governance"]}}, {"ruleId": "scanner-fcfd4f04d0602b4a", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/bd904a5c-0a34fc0518c3ec28.js:1"}, "properties": {"repobilityId": "3d7f8ff3d3af75ad", "scanner": "scanner-primary", "fingerprint": "fcfd4f04d0602b4a", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-83663f39533c8e4c", "level": "warning", "message": {"text": "`fetch()` without try/.catch or AbortSignal \u2014 docs/research/chunks/1255-9ec4a11a26378f21.js:1"}, "properties": {"repobilityId": "cb2f9a78afcdfc00", "scanner": "scanner-primary", "fingerprint": "83663f39533c8e4c", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["integrity", "fragile-runtime", "robustness"]}}, {"ruleId": "scanner-743b3fe94fa44bab", "level": "note", "message": {"text": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/4bd1b696-f785427dddbba9fb.js:1"}, "properties": {"repobilityId": "b4744c6131e3cfce", "scanner": "scanner-primary", "fingerprint": "743b3fe94fa44bab", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}, {"ruleId": "scanner-a03ab6e8d7fd6eb4", "level": "note", "message": {"text": "Legacy-named symbol `unstable_legacy` in docs/research/chunks/b79b7286-a333b21cd9a8d193.js:1"}, "properties": {"repobilityId": "4ea8c73fc838f42f", "scanner": "scanner-primary", "fingerprint": "a03ab6e8d7fd6eb4", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}]}]}