{"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-406e126bbbe89541", "name": "`truncate` class without `title=` for hover reveal \u2014 frontend/src/components/chat/ChatWidget.jsx:128", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 frontend/src/components/chat/ChatWidget.jsx:128"}, "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-c8156834da39e86f", "name": "`truncate` class without `title=` for hover reveal \u2014 chatbot/components/ChatWindow.jsx:100", "shortDescription": {"text": "`truncate` class without `title=` for hover reveal \u2014 chatbot/components/ChatWindow.jsx:100"}, "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-9e9c231a310fb881", "name": "Runtime dotenv file present in repo: backend/.env", "shortDescription": {"text": "Runtime dotenv file present in repo: backend/.env"}, "fullDescription": {"text": "`backend/.env` looks like a runtime dotenv file. It contains secret-looking assignments for SMTP_PASSWORD. Move real values to a secret manager and keep only `.env.example` style templates in source control."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "critical", "confidence": 1.0}}, {"id": "scanner-d19df8eae1505faf", "name": "Insecure pattern 'cors_wildcard' in backend/server.py:83", "shortDescription": {"text": "Insecure pattern 'cors_wildcard' in backend/server.py:83"}, "fullDescription": {"text": "Found a known-risky pattern (cors_wildcard). Review and replace if possible."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6372cebde0220094", "name": "No auth library detected", "shortDescription": {"text": "No auth library detected"}, "fullDescription": {"text": "The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4601e3ad3bb28677", "name": "No CI/CD pipelines detected", "shortDescription": {"text": "No CI/CD pipelines detected"}, "fullDescription": {"text": "No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "1 test file(s) for 48 source file(s) (ratio 0.02). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b9088664ace7f748", "name": "Composite production-readiness gap", "shortDescription": {"text": "Composite production-readiness gap"}, "fullDescription": {"text": "Multiple low-cost hardening controls are missing together: license, ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation."}, "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 license, ci, 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-3e1f0590fbe2ce59", "name": "FastAPI POST `create_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:24", "shortDescription": {"text": "FastAPI POST `create_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:24"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-7f64babd1c8e9085", "name": "FastAPI PATCH `update_inquiry_status` without auth dependency \u2014 backend/routes/inquiries.py:115", "shortDescription": {"text": "FastAPI PATCH `update_inquiry_status` without auth dependency \u2014 backend/routes/inquiries.py:115"}, "fullDescription": {"text": "`@router.patch` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-b87a8d9e112c2417", "name": "FastAPI DELETE `delete_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:151", "shortDescription": {"text": "FastAPI DELETE `delete_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:151"}, "fullDescription": {"text": "`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-a4b74faff3aa81f5", "name": "Dangling fetch: POST /api/log (chatbot/components/ChatWindow.jsx:60)", "shortDescription": {"text": "Dangling fetch: POST /api/log (chatbot/components/ChatWindow.jsx:60)"}, "fullDescription": {"text": "`chatbot/components/ChatWindow.jsx:60` calls `POST /api/log` but no backend route matches that path. This is a runtime 404 waiting to happen.\n\nTool: fetch\nNormalized path used for matching: `/log`\nIf this points at an external API, prefix it with `https://` so the matcher skips it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "high", "confidence": 1.0}}, {"id": "scanner-5baa8971ebe192a1", "name": "Unused endpoint: GET /", "shortDescription": {"text": "Unused endpoint: GET /"}, "fullDescription": {"text": "`backend/server.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-7a009b1a56794f45", "name": "Unused endpoint: POST /", "shortDescription": {"text": "Unused endpoint: POST /"}, "fullDescription": {"text": "`backend/routes/inquiries.py` declares `POST /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-c376eda7bec2ec5b", "name": "Unused endpoint: GET /{inquiry_id}", "shortDescription": {"text": "Unused endpoint: GET /{inquiry_id}"}, "fullDescription": {"text": "`backend/routes/inquiries.py` declares `GET /{inquiry_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-eace554f69f51d84", "name": "Unused endpoint: PATCH /{inquiry_id}/status", "shortDescription": {"text": "Unused endpoint: PATCH /{inquiry_id}/status"}, "fullDescription": {"text": "`backend/routes/inquiries.py` declares `PATCH /{inquiry_id}/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8d9538a0a1715a81", "name": "Unused endpoint: DELETE /{inquiry_id}", "shortDescription": {"text": "Unused endpoint: DELETE /{inquiry_id}"}, "fullDescription": {"text": "`backend/routes/inquiries.py` declares `DELETE /{inquiry_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/22007"}, "properties": {"repository": "uyogi4921-stack/saivilla-website", "repoUrl": "https://github.com/uyogi4921-stack/saivilla-website", "branch": "main"}, "results": [{"ruleId": "scanner-406e126bbbe89541", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 frontend/src/components/chat/ChatWidget.jsx:128"}, "properties": {"repobilityId": "940c6fea2b7cb749", "scanner": "scanner-primary", "fingerprint": "406e126bbbe89541", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-c8156834da39e86f", "level": "none", "message": {"text": "`truncate` class without `title=` for hover reveal \u2014 chatbot/components/ChatWindow.jsx:100"}, "properties": {"repobilityId": "42228fe0e686f867", "scanner": "scanner-primary", "fingerprint": "c8156834da39e86f", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["frontend-quality", "fq.truncate.no-title"]}}, {"ruleId": "scanner-9e9c231a310fb881", "level": "error", "message": {"text": "Runtime dotenv file present in repo: backend/.env"}, "properties": {"repobilityId": "13e19f78c8806475", "scanner": "scanner-primary", "fingerprint": "9e9c231a310fb881", "layer": "security", "severity": "critical", "confidence": 1.0, "tags": ["secrets", "config", "env-file", "runtime-env", "env_file_with_secret"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/.env"}, "region": {"startLine": 1}}}]}, {"ruleId": "scanner-d19df8eae1505faf", "level": "warning", "message": {"text": "Insecure pattern 'cors_wildcard' in backend/server.py:83"}, "properties": {"repobilityId": "ade4cc2906bcbfb9", "scanner": "scanner-primary", "fingerprint": "d19df8eae1505faf", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["owasp", "cors_wildcard"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/server.py"}, "region": {"startLine": 83}}}]}, {"ruleId": "scanner-6372cebde0220094", "level": "warning", "message": {"text": "No auth library detected"}, "properties": {"repobilityId": "a5b6035a5bbf8054", "scanner": "scanner-primary", "fingerprint": "6372cebde0220094", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["coverage", "auth"]}}, {"ruleId": "scanner-4601e3ad3bb28677", "level": "warning", "message": {"text": "No CI/CD pipelines detected"}, "properties": {"repobilityId": "c3ee439bce2bc51e", "scanner": "scanner-primary", "fingerprint": "4601e3ad3bb28677", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["coverage"]}}, {"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-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "b911b5391f23bd67", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "cc988e237d1f6d8c", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-749d4bc1bd66df5f", "level": "warning", "message": {"text": "Agent instructions exist but release-hardening basics are missing"}, "properties": {"repobilityId": "250d6b7a2644b0e8", "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": "a0398d2ef0db5b72", "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": "b0383d0d95ee574a", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-3e1f0590fbe2ce59", "level": "error", "message": {"text": "FastAPI POST `create_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:24"}, "properties": {"repobilityId": "9e1b747702c49fde", "scanner": "scanner-primary", "fingerprint": "3e1f0590fbe2ce59", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/routes/inquiries.py"}, "region": {"startLine": 24}}}]}, {"ruleId": "scanner-7f64babd1c8e9085", "level": "error", "message": {"text": "FastAPI PATCH `update_inquiry_status` without auth dependency \u2014 backend/routes/inquiries.py:115"}, "properties": {"repobilityId": "b8ab01da37e8c252", "scanner": "scanner-primary", "fingerprint": "7f64babd1c8e9085", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/routes/inquiries.py"}, "region": {"startLine": 115}}}]}, {"ruleId": "scanner-b87a8d9e112c2417", "level": "error", "message": {"text": "FastAPI DELETE `delete_inquiry` without auth dependency \u2014 backend/routes/inquiries.py:151"}, "properties": {"repobilityId": "e4eb3cd1558c1ec5", "scanner": "scanner-primary", "fingerprint": "b87a8d9e112c2417", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/routes/inquiries.py"}, "region": {"startLine": 151}}}]}, {"ruleId": "scanner-a4b74faff3aa81f5", "level": "error", "message": {"text": "Dangling fetch: POST /api/log (chatbot/components/ChatWindow.jsx:60)"}, "properties": {"repobilityId": "e3b7c4ea0962f8a2", "scanner": "scanner-primary", "fingerprint": "a4b74faff3aa81f5", "layer": "api", "severity": "high", "confidence": 1.0, "tags": ["wiring", "dangling-fetch", "fetch"]}}, {"ruleId": "scanner-5baa8971ebe192a1", "level": "note", "message": {"text": "Unused endpoint: GET /"}, "properties": {"repobilityId": "4d7a07964b620763", "scanner": "scanner-primary", "fingerprint": "5baa8971ebe192a1", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-7a009b1a56794f45", "level": "note", "message": {"text": "Unused endpoint: POST /"}, "properties": {"repobilityId": "7bb46dc6e22cde4b", "scanner": "scanner-primary", "fingerprint": "7a009b1a56794f45", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-c376eda7bec2ec5b", "level": "note", "message": {"text": "Unused endpoint: GET /{inquiry_id}"}, "properties": {"repobilityId": "4d3630d9ddb7a45e", "scanner": "scanner-primary", "fingerprint": "c376eda7bec2ec5b", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-eace554f69f51d84", "level": "note", "message": {"text": "Unused endpoint: PATCH /{inquiry_id}/status"}, "properties": {"repobilityId": "f30d46a480919aa0", "scanner": "scanner-primary", "fingerprint": "eace554f69f51d84", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-8d9538a0a1715a81", "level": "note", "message": {"text": "Unused endpoint: DELETE /{inquiry_id}"}, "properties": {"repobilityId": "e6080c428f2cd363", "scanner": "scanner-primary", "fingerprint": "8d9538a0a1715a81", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}