Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
74 of your 186 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 22.04s · analysis 20.88s · 43.9 MB · GitHub API rate-limit (preflight)

hexclave/hexclave

https://github.com/hexclave/hexclave · scanned 2026-06-05 18:34 UTC (4 days, 17 hours ago) · 10 languages

1612 raw signals (156 security + 1456 graph) 10/13 scanners ran 65th percentile · Typescript · large (100-500K LoC) System graph score 57 (higher by 22)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 17 hours ago · v2 · 805 actionable findings from 2 signal sources. 79 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 68.0 0.20 13.60
documentation_score 85.0 0.15 12.75
practices_score 74.0 0.15 11.10
code_quality 70.0 0.10 7.00
Overall 1.00 78.5
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B+ (78/100). Dimensions: security 100, maintainability 60. 156 findings (39 security). 442,252 lines analyzed.

Showing 511 of 805 actionable findings. 884 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks quality Quality conf 1.00 ✓ Repobility [MINED013] Password In Url: https://user:password@host — leaks creds via logs, referrer, error messages.
Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context.
docker/local-emulator/generate-env-development.mjs:158
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/lint-and-build.yaml:82 CI/CD securityworkflow secretsGitHub Actions
critical System graph security Secrets conf 1.00 Possible secret in apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/(overview)/setup-page.tsx:508
critical System graph security Secrets conf 1.00 Possible secret in packages/shared/src/local-emulator.ts
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
packages/shared/src/local-emulator.ts:5
critical System graph security Secrets conf 1.00 Possible secret in packages/shared/src/utils/http.tsx
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
packages/shared/src/utils/http.tsx:61
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
apps/internal-tool/scripts/pre-dev.mjs:15
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express DELETE /api/user-api-keys/{api_key_id} has no auth: Express route DELETE /api/user-api-keys/{api_key_id} declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.delete('/api/user-api-keys/{api_key_id}', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/api-keys.ts:638
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/consume-changes has no auth: Express route POST /api/consume-changes declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/consume-changes', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docker/dependencies/wal-info/server.js:490
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/consume-credits has no auth: Express route POST /api/consume-credits declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/consume-credits', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/payments.ts:654
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/create-slot has no auth: Express route POST /api/create-slot declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/create-slot', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docker/dependencies/wal-info/server.js:480
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/create-user-api-key has no auth: Express route POST /api/create-user-api-key declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/create-user-api-key', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/api-keys.ts:112
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/grant-product has no auth: Express route POST /api/grant-product declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/grant-product', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/payments.ts:976
high Security checks quality Quality conf 0.80 ✓ Repobility 2 occurrences [MINED113] Express POST /api/team-protected has no auth: Express route POST /api/team-protected declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/team-protected', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
lines 938, 1024
docs/code-examples/api-keys.ts:938, 1024 (2 hits)
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /api/teams/{team_id}/api-keys has no auth: Express route POST /api/teams/{team_id}/api-keys declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/api/teams/{team_id}/api-keys', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/api-keys.ts:296
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /checkout/{product_id} has no auth: Express route POST /checkout/{product_id} declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/checkout/{product_id}', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/payments.ts:132
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /consume-item has no auth: Express route POST /consume-item declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/consume-item', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
docs/code-examples/payments.ts:756
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /interaction/:uid/login has no auth: Express route POST /interaction/:uid/login declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/interaction/:uid/login', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:333
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /revoke-access-token has no auth: Express route POST /revoke-access-token declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/revoke-access-token', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:486
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /revoke-refresh-token has no auth: Express route POST /revoke-refresh-token declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/revoke-refresh-token', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:416
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /simulate-refresh-error has no auth: Express route POST /simulate-refresh-error declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/simulate-refresh-error', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:346
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /token has no auth: Express route POST /token declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/token', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:132
high Security checks quality Quality conf 0.80 ✓ Repobility [MINED113] Express POST /turnstile/siteverify has no auth: Express route POST /turnstile/siteverify declared without an auth middleware in its handler chain. Destructive methods (POST/PUT/DELETE/PATCH) on unauthenticated routes are OWASP A01:2021 broken access control.
Add an auth middleware: app.post('/turnstile/siteverify', requireAuth, handler) — or mount the router under app.use('/api', authMiddleware) and ensure the path is covered. If truly public, mark with a comment.
apps/mock-oauth-server/src/index.ts:108
high Security checks software dependencies conf 0.90 ✓ Repobility 14 occurrences [MINED118] Dockerfile FROM `node:22-slim` not pinned by digest: `FROM node:22-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM node:22-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
6 files, 14 locations
docker/local-emulator/Dockerfile:147, 149, 150, 151, 152, 153, 154, 162, +1 more (9 hits)
docker/dependencies/freestyle-mock/Dockerfile:1
docker/dependencies/wal-info/Dockerfile:1
docker/dev-postgres-replica/Dockerfile:1
docker/dev-postgres-with-extensions/Dockerfile:1
docker/mock-oauth-server/Dockerfile:1
high Security checks security secrets conf 1.00 [SEC018] AI-Agent Secret Retrieval Command: A command that prints or embeds credentials was committed. AI coding agents often add these commands while trying to help with setup or deployment, but they can leak live secrets through logs, shell history, CI output, or documentation.
Remove the command, use a secret manager or CI masked secret, and rotate any credential that may have been printed.
.agents/skills/pr-visual-writeup/scripts/upload_gist.sh:30
high Security checks security auth conf 0.78 Consent is collected in UI without visible backend audit persistence
Persist consent as a backend record with subject, actor, purpose, scope, legal text version, timestamp, IP address, user agent, and revocation state.
packages/shared/src/interface/page-component-versions.ts:730
high Security checks security auth conf 0.83 2 occurrences Secret-like setting is echoed into a password input value
Never prefill secret fields with stored values. Show a masked status such as configured/not configured, require explicit rotation to replace the value, and return the raw key only once at creation time.
lines 83, 197
docs/code-examples/customization.ts:83, 197 (2 hits)
high System graph security Secrets conf 1.00 .env file present in repo: apps/backend/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: apps/dashboard/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: apps/e2e/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: apps/internal-tool/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: apps/mcp/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: docker/server/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph security Secrets conf 1.00 .env file present in repo: docs/.env
A raw .env file is in the working tree. Verify it isn't committed and that secrets are in a vault.
Config
high System graph api Wiring conf 1.00 Dangling fetch: DELETE /dev-stats/api (apps/backend/src/app/dev-stats/page.tsx:1286)
`apps/backend/src/app/dev-stats/page.tsx:1286` calls `DELETE /dev-stats/api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/dev-stats/api` If this points at an external API, prefix it with `https://` so the matcher …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: DELETE https://api.resend.com/domains/${encodeURIComponent(domain.resendDomainId)} (apps/backend/src/lib/managed-email-onboarding.tsx:719)
`apps/backend/src/lib/managed-email-onboarding.tsx:719` calls `DELETE https://api.resend.com/domains/${encodeURIComponent(domain.resendDomainId)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.resend.com…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /${documentPath} (docs/src/components/api/enhanced-api-page.tsx:182)
`docs/src/components/api/enhanced-api-page.tsx:182` calls `GET /${documentPath}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/<p>` If this points at an external API, prefix it with `https://` so the matcher skips …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /${documentPath} (docs/src/components/api/webhooks-api-page.tsx:95)
`docs/src/components/api/webhooks-api-page.tsx:95` calls `GET /${documentPath}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/<p>` If this points at an external API, prefix it with `https://` so the matcher skips i…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/emulator-status (examples/demo/src/app/emulator-status/page.tsx:66)
`examples/demo/src/app/emulator-status/page.tsx:66` calls `GET /api/emulator-status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/emulator-status` If this points at an external API, prefix it with `https://` so th…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/search?q=${encodeURIComponent(searchQuery)} (docs/src/components/layout/custom-search-dialog.tsx:232)
`docs/src/components/layout/custom-search-dialog.tsx:232` calls `GET /api/search?q=${encodeURIComponent(searchQuery)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/search` If this points at an external API, prefix…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /dev-stats/api (apps/backend/src/app/dev-stats/page.tsx:1268)
`apps/backend/src/app/dev-stats/page.tsx:1268` calls `GET /dev-stats/api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/dev-stats/api` If this points at an external API, prefix it with `https://` so the matcher ski…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /health/error-handler-debug/endpoint (apps/backend/src/app/health/error-handler-debug/page.tsx:12)
`apps/backend/src/app/health/error-handler-debug/page.tsx:12` calls `GET /health/error-handler-debug/endpoint` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/health/error-handler-debug/endpoint` If this points at an…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /health/error-handler-debug/endpoint (apps/dashboard/src/app/health/error-handler-debug/page.tsx:12)
`apps/dashboard/src/app/health/error-handler-debug/page.tsx:12` calls `GET /health/error-handler-debug/endpoint` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/health/error-handler-debug/endpoint` If this points at …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /my-backend-endpoint (packages/shared/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts:984)
`packages/shared/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts:984` calls `GET /my-backend-endpoint` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/my-backend-endpoint` If this points at an exter…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /payments-demo/api/config-check (examples/demo/src/app/payments-demo/page.tsx:212)
`examples/demo/src/app/payments-demo/page.tsx:212` calls `GET /payments-demo/api/config-check` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/payments-demo/api/config-check` If this points at an external API, prefix…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /sdk-docs/types.json (docs/src/components/sdk/type-documentation.tsx:311)
`docs/src/components/sdk/type-documentation.tsx:311` calls `GET /sdk-docs/types.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sdk-docs/types.json` If this points at an external API, prefix it with `https://` …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://127.0.0.1:${port}${path} (examples/demo/src/app/api/emulator-status/route.ts:49)
`examples/demo/src/app/api/emulator-status/route.ts:49` calls `GET http://127.0.0.1:${port}${path}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/127.0.0.1:/<p>/<p>` If this points at an external API, prefix …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://1.1.1.1/cdn-cgi/trace (packages/shared/src/interface/client-interface.ts:354)
`packages/shared/src/interface/client-interface.ts:354` calls `GET https://1.1.1.1/cdn-cgi/trace` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/1.1.1.1/cdn-cgi/trace` If this points at an external API, prefi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.bitbucket.org/2.0/user (apps/backend/src/oauth/providers/bitbucket.tsx:30)
`apps/backend/src/oauth/providers/bitbucket.tsx:30` calls `GET https://api.bitbucket.org/2.0/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.bitbucket.org/2.0/user` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.bitbucket.org/2.0/user (apps/backend/src/oauth/providers/bitbucket.tsx:48)
`apps/backend/src/oauth/providers/bitbucket.tsx:48` calls `GET https://api.bitbucket.org/2.0/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.bitbucket.org/2.0/user` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.bitbucket.org/2.0/user/emails (apps/backend/src/oauth/providers/bitbucket.tsx:33)
`apps/backend/src/oauth/providers/bitbucket.tsx:33` calls `GET https://api.bitbucket.org/2.0/user/emails` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.bitbucket.org/2.0/user/emails` If this points at an…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.example.com (packages/template/src/lib/hexclave-app/common.ts:154)
`packages/template/src/lib/hexclave-app/common.ts:154` calls `GET https://api.example.com` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.example.com` If this points at an external API, prefix it with `ht…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.github.com/user (apps/backend/src/oauth/providers/github.tsx:43)
`apps/backend/src/oauth/providers/github.tsx:43` calls `GET https://api.github.com/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.github.com/user` If this points at an external API, prefix it with `…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.github.com/user (apps/backend/src/oauth/providers/github.tsx:98)
`apps/backend/src/oauth/providers/github.tsx:98` calls `GET https://api.github.com/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.github.com/user` If this points at an external API, prefix it with `…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.github.com/user/emails (apps/backend/src/oauth/providers/github.tsx:61)
`apps/backend/src/oauth/providers/github.tsx:61` calls `GET https://api.github.com/user/emails` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.github.com/user/emails` If this points at an external API, pr…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hexclave.com/api/v1/users/me (apps/backend/src/lib/ai/prompts.ts:241)
`apps/backend/src/lib/ai/prompts.ts:241` calls `GET https://api.hexclave.com/api/v1/users/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hexclave.com/api/v1/users/me` If this points at an external API…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hexclave.com/api/v1/users/USER_ID (apps/backend/src/lib/ai/prompts.ts:253)
`apps/backend/src/lib/ai/prompts.ts:253` calls `GET https://api.hexclave.com/api/v1/users/USER_ID` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hexclave.com/api/v1/users/user_id` If this points at an ex…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.hexclave.com/health (packages/shared/src/interface/client-interface.ts:372)
`packages/shared/src/interface/client-interface.ts:372` calls `GET https://api.hexclave.com/health` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hexclave.com/health` If this points at an external API, p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.linkedin.com/v2/userinfo (apps/backend/src/oauth/providers/linkedin.tsx:31)
`apps/backend/src/oauth/providers/linkedin.tsx:31` calls `GET https://api.linkedin.com/v2/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.linkedin.com/v2/userinfo` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.linkedin.com/v2/userinfo (apps/backend/src/oauth/providers/linkedin.tsx:45)
`apps/backend/src/oauth/providers/linkedin.tsx:45` calls `GET https://api.linkedin.com/v2/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.linkedin.com/v2/userinfo` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.resend.com/emails/receiving (apps/backend/src/app/health/email/route.tsx:50)
`apps/backend/src/app/health/email/route.tsx:50` calls `GET https://api.resend.com/emails/receiving` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.resend.com/emails/receiving` If this points at an extern…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.spotify.com/v1/me (apps/backend/src/oauth/providers/spotify.tsx:28)
`apps/backend/src/oauth/providers/spotify.tsx:28` calls `GET https://api.spotify.com/v1/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.spotify.com/v1/me` If this points at an external API, prefix it w…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.spotify.com/v1/me (apps/backend/src/oauth/providers/spotify.tsx:46)
`apps/backend/src/oauth/providers/spotify.tsx:46` calls `GET https://api.spotify.com/v1/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.spotify.com/v1/me` If this points at an external API, prefix it w…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.spotify.com/v1/me/playlists (examples/demo/src/app/spotify-example/page.tsx:15)
`examples/demo/src/app/spotify-example/page.tsx:15` calls `GET https://api.spotify.com/v1/me/playlists` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.spotify.com/v1/me/playlists` If this points at an ext…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.spotify.com/v1/me/playlists (examples/demo/src/app/spotify-server/page.tsx:8)
`examples/demo/src/app/spotify-server/page.tsx:8` calls `GET https://api.spotify.com/v1/me/playlists` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.spotify.com/v1/me/playlists` If this points at an exter…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.twitch.tv/helix/users (apps/backend/src/oauth/providers/twitch.tsx:29)
`apps/backend/src/oauth/providers/twitch.tsx:29` calls `GET https://api.twitch.tv/helix/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.twitch.tv/helix/users` If this points at an external API, pref…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.twitch.tv/helix/users (apps/backend/src/oauth/providers/twitch.tsx:49)
`apps/backend/src/oauth/providers/twitch.tsx:49` calls `GET https://api.twitch.tv/helix/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.twitch.tv/helix/users` If this points at an external API, pref…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.x.com/2/users/me (apps/backend/src/oauth/providers/x.tsx:55)
`apps/backend/src/oauth/providers/x.tsx:55` calls `GET https://api.x.com/2/users/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.x.com/<p>/users/me` If this points at an external API, prefix it with `h…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.x.com/2/users/me?user.fields=id,name,profile_image_url (apps/backend/src/oauth/providers/x.tsx:27)
`apps/backend/src/oauth/providers/x.tsx:27` calls `GET https://api.x.com/2/users/me?user.fields=id,name,profile_image_url` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.x.com/<p>/users/me` If this points…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://app.hexclave.com/health (packages/shared/src/interface/client-interface.ts:366)
`packages/shared/src/interface/client-interface.ts:366` calls `GET https://app.hexclave.com/health` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/app.hexclave.com/health` If this points at an external API, p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://appleid.apple.com/auth/userinfo (apps/backend/src/oauth/providers/apple.tsx:49)
`apps/backend/src/oauth/providers/apple.tsx:49` calls `GET https://appleid.apple.com/auth/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/appleid.apple.com/auth/userinfo` If this points at an externa…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://cloudflare-dns.com/dns-query?name=${encodeURIComponent(name)}&type=NS (apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-settings/domain-settings.tsx:239)
`apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-settings/domain-settings.tsx:239` calls `GET https://cloudflare-dns.com/dns-query?name=${encodeURIComponent(name)}&type=NS` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://discord.com/api/users/@me (apps/backend/src/oauth/providers/discord.tsx:28)
`apps/backend/src/oauth/providers/discord.tsx:28` calls `GET https://discord.com/api/users/@me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/users/@me` If this points at an external API, pre…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://discord.com/api/users/@me (apps/backend/src/oauth/providers/discord.tsx:44)
`apps/backend/src/oauth/providers/discord.tsx:44` calls `GET https://discord.com/api/users/@me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/users/@me` If this points at an external API, pre…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://discord.com/api/v10/channels/${channelId}/messages?limit=50 (docs/lib/discord-webhook.ts:152)
`docs/lib/discord-webhook.ts:152` calls `GET https://discord.com/api/v10/channels/${channelId}/messages?limit=50` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/v10/channels/<p>/messages` If t…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://do.featurebase.app/v2/organization/identifyUser?email=${encodeURIComponent(email)} (packages/shared/src/utils/featurebase.tsx:64)
`packages/shared/src/utils/featurebase.tsx:64` calls `GET https://do.featurebase.app/v2/organization/identifyUser?email=${encodeURIComponent(email)}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featureb…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://do.featurebase.app/v2/organization/identifyUser?id=${hexclaveAuthUserId} (packages/shared/src/utils/featurebase.tsx:23)
`packages/shared/src/utils/featurebase.tsx:23` calls `GET https://do.featurebase.app/v2/organization/identifyUser?id=${hexclaveAuthUserId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featurebase.app/v2…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://do.featurebase.app/v2/posts/upvoters?submissionId=${post.id} (apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:97)
`apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:97` calls `GET https://do.featurebase.app/v2/posts/upvoters?submissionId=${post.id}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.feat…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://do.featurebase.app/v2/posts?limit=50&sortBy=upvotes:desc (apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:68)
`apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:68` calls `GET https://do.featurebase.app/v2/posts?limit=50&sortBy=upvotes:desc` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featureb…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://gitlab.com/api/v4/user (apps/backend/src/oauth/providers/gitlab.tsx:29)
`apps/backend/src/oauth/providers/gitlab.tsx:29` calls `GET https://gitlab.com/api/v4/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/gitlab.com/api/v4/user` If this points at an external API, prefix it …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://gitlab.com/api/v4/user (apps/backend/src/oauth/providers/gitlab.tsx:45)
`apps/backend/src/oauth/providers/gitlab.tsx:45` calls `GET https://gitlab.com/api/v4/user` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/gitlab.com/api/v4/user` If this points at an external API, prefix it …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://gitlab.com/api/v4/user/emails (apps/backend/src/oauth/providers/gitlab.tsx:30)
`apps/backend/src/oauth/providers/gitlab.tsx:30` calls `GET https://gitlab.com/api/v4/user/emails` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/gitlab.com/api/v4/user/emails` If this points at an external A…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://graph.facebook.com/v3.2/me (apps/backend/src/oauth/providers/facebook.tsx:62)
`apps/backend/src/oauth/providers/facebook.tsx:62` calls `GET https://graph.facebook.com/v3.2/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/graph.facebook.com/v3.2/me` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://graph.microsoft.com/v1.0/me (apps/backend/src/oauth/providers/microsoft.tsx:39)
`apps/backend/src/oauth/providers/microsoft.tsx:39` calls `GET https://graph.microsoft.com/v1.0/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/graph.microsoft.com/v1.0/me` If this points at an external AP…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://graph.microsoft.com/v1.0/me (apps/backend/src/oauth/providers/microsoft.tsx:60)
`apps/backend/src/oauth/providers/microsoft.tsx:60` calls `GET https://graph.microsoft.com/v1.0/me` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/graph.microsoft.com/v1.0/me` If this points at an external AP…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://openidconnect.googleapis.com/v1/userinfo (apps/backend/src/oauth/providers/google.tsx:46)
`apps/backend/src/oauth/providers/google.tsx:46` calls `GET https://openidconnect.googleapis.com/v1/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/openidconnect.googleapis.com/v1/userinfo` If this p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://www.googleapis.com/drive/v3/files (examples/docs-examples/src/app/drive/page.tsx:14)
`examples/docs-examples/src/app/drive/page.tsx:14` calls `GET https://www.googleapis.com/drive/v3/files` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/www.googleapis.com/drive/v3/files` If this points at an …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://www.googleapis.com/gmail/v1/users/me/messages (examples/demo/src/app/gmail/page.tsx:14)
`examples/demo/src/app/gmail/page.tsx:14` calls `GET https://www.googleapis.com/gmail/v1/users/me/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/www.googleapis.com/gmail/v1/users/me/messages` If thi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://www.googleapis.com/oauth2/v1/userinfo (examples/demo/src/app/gmail/page.tsx:24)
`examples/demo/src/app/gmail/page.tsx:24` calls `GET https://www.googleapis.com/oauth2/v1/userinfo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/www.googleapis.com/oauth2/v1/userinfo` If this points at an e…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: PATCH https://do.featurebase.app/v2/users/${userId} (packages/shared/src/utils/featurebase.tsx:138)
`packages/shared/src/utils/featurebase.tsx:138` calls `PATCH https://do.featurebase.app/v2/users/${userId}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featurebase.app/v2/users/<p>` If this points at an…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/development-environment/browser-secret/init-confirmation-code (apps/dashboard/src/app/development-environment/browser-secret/page-client.tsx:27)
`apps/dashboard/src/app/development-environment/browser-secret/page-client.tsx:27` calls `POST /api/development-environment/browser-secret/init-confirmation-code` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/devel…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/development-environment/browser-secret/start-localbound-server (apps/dashboard/src/app/remote-development-environment-browser-secret-client.ts:69)
`apps/dashboard/src/app/remote-development-environment-browser-secret-client.ts:69` calls `POST /api/development-environment/browser-secret/start-localbound-server` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/dev…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/development-environment/browser-secret/store (apps/dashboard/src/app/remote-development-environment-browser-secret-client.ts:55)
`apps/dashboard/src/app/remote-development-environment-browser-secret-client.ts:55` calls `POST /api/development-environment/browser-secret/store` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/development-environme…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/development-environment/browser-secret/submit-confirmation-code (apps/dashboard/src/app/development-environment/browser-secret/page-client.tsx:85)
`apps/dashboard/src/app/development-environment/browser-secret/page-client.tsx:85` calls `POST /api/development-environment/browser-secret/submit-confirmation-code` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/dev…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/discord-webhook (docs/src/components/chat/ai-chat.tsx:473)
`docs/src/components/chat/ai-chat.tsx:473` calls `POST /api/discord-webhook` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/discord-webhook` If this points at an external API, prefix it with `https://` so the matche…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/discord-webhook/response (docs/src/components/chat/ai-chat.tsx:436)
`docs/src/components/chat/ai-chat.tsx:436` calls `POST /api/discord-webhook/response` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/discord-webhook/response` If this points at an external API, prefix it with `https…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/internal/docs-tools (docs/src/app/mcp-browser/page.tsx:38)
`docs/src/app/mcp-browser/page.tsx:38` calls `POST /api/internal/docs-tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/internal/docs-tools` If this points at an external API, prefix it with `https://` so the ma…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /apikey-demo/api (examples/demo/src/app/apikey-demo/page.tsx:18)
`examples/demo/src/app/apikey-demo/page.tsx:18` calls `POST /apikey-demo/api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/apikey-demo/api` If this points at an external API, prefix it with `https://` so the match…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /payments-demo/api/create-checkout-url (examples/demo/src/app/payments-demo/page.tsx:42)
`examples/demo/src/app/payments-demo/page.tsx:42` calls `POST /payments-demo/api/create-checkout-url` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/payments-demo/api/create-checkout-url` If this points at an extern…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /payments-demo/api/send-test-email (examples/demo/src/app/payments-demo/page.tsx:199)
`examples/demo/src/app/payments-demo/page.tsx:199` calls `POST /payments-demo/api/send-test-email` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/payments-demo/api/send-test-email` If this points at an external API,…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://${TELEGRAM_HOSTNAME}/bot${options.botToken}${TELEGRAM_ENDPOINT_PATH} (apps/backend/src/lib/telegram.tsx:23)
`apps/backend/src/lib/telegram.tsx:23` calls `POST https://${TELEGRAM_HOSTNAME}/bot${options.botToken}${TELEGRAM_ENDPOINT_PATH}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/<p>/bot/<p>/<p>` If this points …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.hexclave.com/api/latest/internal/feedback (apps/backend/src/app/api/latest/internal/feedback/route.tsx:51)
`apps/backend/src/app/api/latest/internal/feedback/route.tsx:51` calls `POST https://api.hexclave.com/api/latest/internal/feedback` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hexclave.com/api/latest/i…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.hexclave.com/api/v1/check-version (apps/dashboard/src/lib/version-check.ts:66)
`apps/dashboard/src/lib/version-check.ts:66` calls `POST https://api.hexclave.com/api/v1/check-version` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.hexclave.com/api/v1/check-version` If this points at …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.resend.com/api-keys (apps/backend/src/lib/managed-email-onboarding.tsx:501)
`apps/backend/src/lib/managed-email-onboarding.tsx:501` calls `POST https://api.resend.com/api-keys` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.resend.com/api-keys` If this points at an external API, …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.resend.com/domains (apps/backend/src/lib/managed-email-onboarding.tsx:451)
`apps/backend/src/lib/managed-email-onboarding.tsx:451` calls `POST https://api.resend.com/domains` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.resend.com/domains` If this points at an external API, pr…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://api.resend.com/domains/${body.id}/verify (apps/backend/src/lib/managed-email-onboarding.tsx:475)
`apps/backend/src/lib/managed-email-onboarding.tsx:475` calls `POST https://api.resend.com/domains/${body.id}/verify` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.resend.com/domains/<p>/verify` If this …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://discord.com/api/v10/channels/${channelId}/messages (docs/lib/discord-webhook.ts:214)
`docs/lib/discord-webhook.ts:214` calls `POST https://discord.com/api/v10/channels/${channelId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/v10/channels/<p>/messages` If this poin…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://discord.com/api/v10/channels/${messageData.channel_id}/messages/${messageData.id}/threads (docs/lib/discord-webhook.ts:236)
`docs/lib/discord-webhook.ts:236` calls `POST https://discord.com/api/v10/channels/${messageData.channel_id}/messages/${messageData.id}/threads` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://discord.com/api/v10/channels/${threadId}/messages (docs/lib/discord-webhook.ts:293)
`docs/lib/discord-webhook.ts:293` calls `POST https://discord.com/api/v10/channels/${threadId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/v10/channels/<p>/messages` If this point…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://discord.com/api/v10/channels/${threadId}/messages (docs/lib/discord-webhook.ts:354)
`docs/lib/discord-webhook.ts:354` calls `POST https://discord.com/api/v10/channels/${threadId}/messages` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/discord.com/api/v10/channels/<p>/messages` If this point…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://do.featurebase.app/v2/organization/identifyUser (packages/shared/src/utils/featurebase.tsx:103)
`packages/shared/src/utils/featurebase.tsx:103` calls `POST https://do.featurebase.app/v2/organization/identifyUser` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featurebase.app/v2/organization/identifyu…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://do.featurebase.app/v2/posts (apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:186)
`apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:186` calls `POST https://do.featurebase.app/v2/posts` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.featurebase.app/v2/posts` If this p…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://do.featurebase.app/v2/posts/upvoters (apps/backend/src/app/api/latest/internal/feature-requests/[featureRequestId]/upvote/route.tsx:39)
`apps/backend/src/app/api/latest/internal/feature-requests/[featureRequestId]/upvote/route.tsx:39` calls `POST https://do.featurebase.app/v2/posts/upvoters` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/do.f…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://mcp.deepwiki.com/mcp (apps/internal-tool/src/components/CallLogDetail.tsx:337)
`apps/internal-tool/src/components/CallLogDetail.tsx:337` calls `POST https://mcp.deepwiki.com/mcp` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/mcp.deepwiki.com/mcp` If this points at an external API, pref…
Dangling fetchFetch
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
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.
high Security checks security auth conf 0.66 [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: DELETE /remote-development-environment/sessions/:sessionId/route.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
apps/dashboard/src/app/api/remote-development-environment/sessions/[sessionId]/route.ts:7
high Security checks security auth conf 0.66 [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: GET /remote-development-environment/auth/route.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
apps/dashboard/src/app/api/remote-development-environment/auth/route.ts:32
high Security checks security auth conf 0.66 [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: POST /remote-development-environment/sessions/:sessionId/heartbeat/route.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
apps/dashboard/src/app/api/remote-development-environment/sessions/[sessionId]/heartbeat/route.ts:7
high Security checks security auth conf 0.66 [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: POST /remote-development-environment/sessions/route.
Define whether this endpoint is admin-only or super_admin-only, then enforce that distinction in code and .repobility/access.yml.
apps/dashboard/src/app/api/remote-development-environment/sessions/route.ts:9
high Security checks security auth conf 0.68 [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 /llms.mdx/::...slug.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/llms.mdx/[[...slug]]/route.ts:8
high Security checks security auth conf 0.68 [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 /llms.txt.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/llms.txt/route.ts:7
high Security checks security auth conf 0.68 [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.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/api/search/route.ts:97
high Security checks security auth conf 0.68 [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 /development-environment/browser-secret/start-localbound-server/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
apps/dashboard/src/app/api/development-environment/browser-secret/start-localbound-server/route.ts:6
high Security checks security auth conf 0.68 [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 /development-environment/browser-secret/store/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
apps/dashboard/src/app/api/development-environment/browser-secret/store/route.ts:19
high Security checks security auth conf 0.68 [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 /development-environment/browser-secret/submit-confirmation-code/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
apps/dashboard/src/app/api/development-environment/browser-secret/submit-confirmation-code/route.ts:22
high Security checks security auth conf 0.68 [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 /discord-webhook/response/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/api/discord-webhook/response/route.ts:3
high Security checks security auth conf 0.68 [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 /discord-webhook/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
docs/src/app/api/discord-webhook/route.ts:4
high Security checks security auth conf 0.68 [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 /remote-development-environment/config/apply-update/route.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
apps/dashboard/src/app/api/remote-development-environment/config/apply-update/route.ts:9
medium Security checks quality Error handling conf 1.00 [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
apps/dashboard/src/app/layout.tsx:85
medium Security checks quality Quality conf 1.00 3 occurrences [SEC087] JS: weak Math.random for crypto: Math.random() is not cryptographically secure; using it for tokens/keys/nonces is predictable. Ported from gosec G404 / eslint detect-pseudoRandomBytes concept (Apache-2.0).
Use `crypto.randomBytes(32).toString('hex')` (Node) or `crypto.getRandomValues()` (browser).
3 files, 3 locations
apps/backend/src/app/api/latest/internal/backend-urls/route.tsx:108
apps/backend/src/proxy.tsx:108
packages/template/src/components-page/account-settings/api-keys/api-keys-page.tsx:115
medium Security checks quality Quality conf 1.00 [SEC125] AI placeholder credential left in source (your-api-key-here style): AI coding assistants frequently emit placeholder credentials shaped like `API_KEY = "your-api-key-here"` instead of pulling from env. These get committed verbatim — production code with a literal placeholder string is a near-certain bug, and the value also leaks what credential type the system expects to authentication crawlers. CWE-1188. Distinctive AI footprint: the exact phrase shape `your-X-here` is uncommon in hand
Replace with env lookup: `API_KEY = os.environ['SERVICE_API_KEY']`. Move actual key to a secret manager. Add a startup check that the env var is non-empty so missing config fails loudly instead of shipping the placeholder.
apps/internal-tool/src/hooks/useSpacetimeDB.ts:6
medium Security checks quality Quality conf 1.00 [SEC125] AI placeholder credential left in source (your-api-key-here style): AI coding assistants frequently emit placeholder credentials shaped like `API_KEY = "your-api-key-here"` instead of pulling from env. These get committed verbatim — production code with a literal placeholder string is a near-certain bug, and the value also leaks what credential type the system expects to authentication crawlers. CWE-1188. Distinctive AI footprint: the exact phrase shape `your-X-here` is uncommon in hand
Replace with env lookup: `API_KEY = os.environ['SERVICE_API_KEY']`. Move actual key to a secret manager. Add a startup check that the env var is non-empty so missing config fails loudly instead of shipping the placeholder.
apps/internal-tool/src/hexclave.ts:4
high Security checks security auth conf 0.82 3 occurrences Browser storage is used for session token material
Prefer httpOnly, Secure, SameSite cookies or short-lived in-memory tokens. Avoid persistent browser storage for access, refresh, ID, or partner session tokens.
lines 56, 61, 98
apps/internal-tool/src/hooks/useSpacetimeDB.ts:56, 61, 98 (3 hits)
high Security checks cicd CI/CD security conf 0.82 6 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
6 files, 6 locations
docker/dependencies/freestyle-mock/Dockerfile:1
docker/dependencies/wal-info/Dockerfile:1
docker/dev-postgres-replica/Dockerfile:1
docker/dev-postgres-with-extensions/Dockerfile:1
docker/local-emulator/Dockerfile:185
docker/mock-oauth-server/Dockerfile:1
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.94 Dockerfile base image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
docker/local-emulator/Dockerfile:155 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 4 occurrences Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
4 files, 4 locations
docker/backend/Dockerfile:30
docker/dependencies/wal-info/Dockerfile:11
docker/local-emulator/Dockerfile:28
docker/server/Dockerfile:24
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 3 occurrences Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
3 files, 3 locations
docker/backend/Dockerfile:14
docker/local-emulator/Dockerfile:13
docker/server/Dockerfile:8
CI/CD securitycontainers
high Security checks quality Quality conf 0.74 15 occurrences Frontend API reference is not matched by discovered backend routes
Add the backend route, update the frontend constant to the implemented endpoint, or document that the route is served by another service and exclude it with .repobilityignore.
lines 2089, 3411, 3431, 3439, 3460, 3472, 3481, 3488, +7 more
apps/backend/scripts/run-bulldozer-studio.ts:2089, 3411, 3431, 3439, 3460, 3472, 3481, 3488, +7 more (15 hits)
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/session-replays/page-client.tsx:981
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
Handle QuotaExceededError explicitly, show a toast or error state, and guide the user to export/clear old local data. Log non-quota failures for diagnostics.
apps/backend/scripts/run-bulldozer-studio.ts:2021
medium Security checks quality Quality conf 0.78 4 occurrences React interval is created without an explicit cleanup
Store the interval id and return a useEffect cleanup that calls clearInterval. Also clear the interval in explicit stop/end handlers when relevant.
4 files, 4 locations
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/payments/products/components.tsx:58
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/payments/products/page-client-product-lines-view.tsx:393
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/payments/products/price-dialog.tsx:37
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/payments/products/product-price-row.tsx:69
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/backend/src/lib/email-rendering.tsx:48
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-sent/domain-reputation-card.tsx:107
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/dashboard/src/app/layout.tsx:78
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/dashboard/src/components/ui/chart.tsx:90
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — apps/e2e/tests/backend/endpoints/api/v1/emails/email-queue.test.ts:449
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/api/webhooks-api-page.tsx:560
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/chat/compact-codeblock.tsx:145
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/mdx/base-codeblock.tsx:186
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/mdx/dynamic-code-block-overlay.tsx:240
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/src/components/mdx/mermaid.tsx:57
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — examples/lovable-react-18-example/src/components/ui/chart.tsx:70
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/dashboard-ui-components/src/components/chart-card.tsx:64
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/dashboard-ui-components/src/components/chart-container.tsx:44
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/dashboard-ui-components/src/components/cursor-blast-effect.tsx:209
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/template/src/components/elements/ssr-layout-effect.tsx:16
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/template/src/providers/theme-provider.tsx:102
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/scripts/run-cron-jobs.ts:25
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/scripts/run-email-queue.ts:20
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/scripts/verify-data-integrity/api.ts:127
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/auth/oauth/connected-accounts/[provider_id]/access-token/route.tsx:24
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/integrations/ai-proxy/[[...path]]/route.ts:58
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/integrations/custom/oauth/token/route.tsx:40
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/integrations/neon/oauth/token/route.tsx:40
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/internal/changelog/route.tsx:171
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/internal/feature-requests/route.tsx:68
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/api/latest/internal/feedback/route.tsx:51
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/health/email/route.tsx:39
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/app/health/error-handler-debug/page.tsx:12
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/lib/ai/prompts.ts:241
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/lib/managed-email-onboarding.tsx:186
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/lib/telegram.tsx:23
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/apple.tsx:49
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/bitbucket.tsx:30
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/discord.tsx:28
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/facebook.tsx:38
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/github.tsx:43
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/gitlab.tsx:29
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/google.tsx:46
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/linkedin.tsx:31
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/microsoft.tsx:39
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/spotify.tsx:28
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/twitch.tsx:29
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/backend/src/oauth/providers/x.tsx:27
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/new-project/page-client-parts/link-existing-onboarding.tsx:609
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-sent/grouped-email-table.tsx:208
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-sent/sent-emails-view.tsx:83
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/(main)/integrations/oauth-confirm-page.tsx:30
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/(main)/purchase/[code]/page-client.tsx:80
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/development-environment/browser-secret/page-client.tsx:27
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/health/error-handler-debug/page.tsx:12
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/app/remote-development-environment-browser-secret-client.ts:55
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/components/feedback-form.tsx:72
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/components/hexclave-companion.tsx:182
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/components/hexclave-companion/feature-request-board.tsx:203
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/components/vibe-coding/chat-adapters.ts:245
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/lib/ai-conversations.ts:33
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/lib/conversations.ts:30
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/dashboard/src/lib/github-api.ts:60
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/hosted-components/src/server/routes/llms-full.txt.ts:4
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/hosted-components/src/server/routes/llms.txt.ts:4
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/internal-tool/src/components/CallLogDetail.tsx:337
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/internal-tool/src/lib/mcp-review-api.ts:24
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — apps/mcp/src/mcp-handler.ts:65
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs-mintlify/snippets/home-prompt-island.jsx:3
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/lib/discord-webhook.ts:214
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/app/mcp-browser/page.tsx:38
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/components/api/enhanced-api-page.tsx:182
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/components/api/webhooks-api-page.tsx:95
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/src/components/chat/ai-chat.tsx:473
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — examples/demo/src/app/payments-demo/page.tsx:42
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — examples/demo/src/app/spotify-server/page.tsx:8
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/cli/src/commands/config-file.ts:150
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/shared/src/ai/unified-prompts/skill-site-prompt-parts/ai-setup-prompt.ts:484
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/shared/src/helpers/vault/server-side.ts:59
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/shared/src/interface/client-interface.ts:360
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/shared/src/utils/esbuild.tsx:39
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/shared/src/utils/paginated-lists.tsx:264
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/template/src/lib/hexclave-app/common.ts:154
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph hardware Supply chain conf 1.00 Docker base image uses a mutable or implicit tag: bgodil/qstash:latest
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:154 containersPinned dependencies
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/dependencies/freestyle-mock/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/dependencies/wal-info/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/dev-postgres-replica/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/local-emulator/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docker/mock-oauth-server/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 Frontend route `/handler/*` has no Link/navigate to it — examples/lovable-react-18-example/src/App.tsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
Orphan pageWiring
medium System graph cicd CI/CD security conf 1.00 3 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
3 files, 3 locations
.github/workflows/npm-publish.yaml
.github/workflows/qemu-emulator-build.yaml
.github/workflows/table-of-contents.yaml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/backend/src/lib/email-rendering.tsx:48
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/backend/src/lib/email-rendering.tsx:48 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-sent/domain-reputation-card.tsx:107
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-sent/domain-reputation-card.tsx:107 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/dashboard/src/app/layout.tsx:78
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/dashboard/src/app/layout.tsx:78 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in apps/dashboard/src/components/ui/chart.tsx:90
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
apps/dashboard/src/components/ui/chart.tsx:90 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/api/webhooks-api-page.tsx:560
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/api/webhooks-api-page.tsx:560 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/chat/compact-codeblock.tsx:145
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/chat/compact-codeblock.tsx:145 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/mdx/base-codeblock.tsx:186
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/mdx/base-codeblock.tsx:186 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/mdx/dynamic-code-block-overlay.tsx:240
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/mdx/dynamic-code-block-overlay.tsx:240 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/src/components/mdx/mermaid.tsx:57
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/src/components/mdx/mermaid.tsx:57 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in packages/dashboard-ui-components/src/components/chart-card.tsx:64
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
packages/dashboard-ui-components/src/components/chart-card.tsx:64 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in packages/dashboard-ui-components/src/components/chart-container.tsx:44
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
packages/dashboard-ui-components/src/components/chart-container.tsx:44 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in packages/dashboard-ui-components/src/components/cursor-blast-effect.tsx:209
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
packages/dashboard-ui-components/src/components/cursor-blast-effect.tsx:209 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/query-analytics/monaco-clickhouse.ts:850
Found a known-risky pattern (weak_hash). Review and replace if possible.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/query-analytics/monaco-clickhouse.ts:850 Weak hash
medium System graph network Security conf 1.00 Privileged port 13 in use
Port 13 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 16 in use
Port 16 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 17 in use
Port 17 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 18 in use
Port 18 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 21 in use
Port 21 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 23 in use
Port 23 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 24 in use
Port 24 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 28 in use
Port 28 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 29 in use
Port 29 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 31 in use
Port 31 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 33 in use
Port 33 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 34 in use
Port 34 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 35 in use
Port 35 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 36 in use
Port 36 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 37 in use
Port 37 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 38 in use
Port 38 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 39 in use
Port 39 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 465 in use
Port 465 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/email-settings/domain-settings.tsx Ports
medium System graph network Security conf 1.00 Privileged port 5 in use
Port 5 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 587 in use
Port 587 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/emails/page-client.tsx Ports
medium System graph network Security conf 1.00 Privileged port 59 in use
Port 59 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/server/entrypoint.sh Ports
medium System graph network Security conf 1.00 Privileged port 7 in use
Port 7 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
medium System graph network Security conf 1.00 Privileged port 99 in use
Port 99 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
docker/dependencies/docker.compose.yaml Ports
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
docker/server/Dockerfile:72 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.72 Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
docker/dev-postgres-with-extensions/Dockerfile:3 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
docker/dev-postgres-with-extensions/Dockerfile:3 CI/CD securitycontainers
low System graph quality Integrity conf 1.00 134 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `CI`, `DISCORD_BOT_TOKEN`, `DISCORD_CHANNEL_ID`, `GITHUB_ACTIONS`, `GITHUB_REF_NAME`, `GITHUB_REPOSITORY`, `GITHUB_SHA`, `HEXCLAVE_API_URL` + 126 more. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Maintenance conf 1.00 170 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: clickhouse/clickhouse-server:25.10
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:151 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 2 occurrences Docker base image is tag-pinned but not digest-pinned: debian:trixie-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
lines 162, 184
docker/local-emulator/Dockerfile:162, 184 (2 hits)
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: inbucket/inbucket:3.1.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:149 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: minio/mc:RELEASE.2025-02-21T16-00-46Z
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:153 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: minio/minio:RELEASE.2025-09-07T16-13-09Z
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:152 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 3 occurrences Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
3 files, 3 locations
docker/backend/Dockerfile:10
docker/local-emulator/Dockerfile:8
docker/server/Dockerfile:4
containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/server/Dockerfile:67 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:${NODE_VERSION}-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/backend/Dockerfile:65 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/dependencies/wal-info/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/mock-oauth-server/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:22-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/dependencies/freestyle-mock/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: postgres:15
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/dev-postgres-with-extensions/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: postgres:15
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/dev-postgres-replica/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: stripe/stripe-mock:v0.195.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:147 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: svix/svix-server:v1.88.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/local-emulator/Dockerfile:150 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/instrumentation-client.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/postcss.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/new-project/page-client.test.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/new-project/page-client.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/assistant-ui/thread-list.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/assistant-ui/tooltip-icon-button.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/copyable-text.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/dashboard-account-settings/supporting/types.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/alert.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/badge.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/button.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/card.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/design-tokens.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/design-components/input.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: apps/dashboard/src/components/pacifica/surface.tsx
Source file with no class/function declarations — possible config, dead code, or scratch file.

Showing first 300 of 511. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/e6d37d74-7754-4561-8538-b052c5edecdf/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/e6d37d74-7754-4561-8538-b052c5edecdf/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.