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.

BaseAI

https://github.com/CommandCodeAI/BaseAI.git · scanned 2026-05-17 01:20 UTC (18 hours, 4 minutes ago) · 10 languages

466 findings (34 legacy + 432 scanner) 16th percentile · Typescript · medium (20-100K LoC) Scanner says 77 (lower by 17)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 18 hours, 4 minutes ago · v3 · 176 findings from 2 sources. Findings combine the legacy security pipeline AND the multi-layer engine (atlas, wiring, flows, ranked) AND verified AI agent contributions.

JSON
Severity distribution — click a segment to filter
Active filters: severity: high × excluding tests × Reset all
Severity: Critical 0 High 19 Medium 9 Low 125 Source: Legacy 34 9-layer 142 Crowd 0 Layer: Quality 52 Software 53 Frontend 48 Security 2 Cicd 2 Api 19
Scan summary Repository scanned at 77.1/100 with 88.9% coverage. It contains 1612 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 142 findings — concentrated in software (50), frontend (48), quality (21). Risk profile is high: 0 critical, 16 high, 8 medium. Recommended next step: open the software layer findings first — that's where the highest-impact wins live.

Showing 19 of 176 findings. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Legacy software ssrf conf 1.00 [SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches.
Validate the URL against an allowlist BEFORE fetching: ALLOWED = {'images.example.com', 'cdn.example.com'} host = urlparse(url).hostname if host not in ALLOWED: abort(400) Or use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request h…
packages/core/src/pipes/pipes.ts:100 ssrflegacy
high Legacy software ssrf conf 1.00 [SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches.
Validate the URL against an allowlist BEFORE fetching: ALLOWED = {'images.example.com', 'cdn.example.com'} host = urlparse(url).hostname if host not in ALLOWED: abort(400) Or use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request h…
packages/baseai/src/dev/middleware/debug-base.ts:5 ssrflegacy
high Legacy software ssrf conf 1.00 [SEC029] Server-Side Request Forgery (SSRF) — outbound HTTP from user input: Outbound HTTP request to a user-controlled URL without allowlist validation. Attackers can probe internal services (169.254.169.254 metadata, internal Kubernetes endpoints, file:// URIs), exfiltrate data, or pivot through your network. SSRF is OWASP A10:2021 and a frequent foothold in cloud breaches.
Validate the URL against an allowlist BEFORE fetching: ALLOWED = {'images.example.com', 'cdn.example.com'} host = urlparse(url).hostname if host not in ALLOWED: abort(400) Or use a server-side proxy (Imgproxy / serve-files-only-from-S3) that isolates outbound network access from the request h…
apps/baseai.dev/src/app/api/og/route.tsx:7 ssrflegacy
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run (examples/astro/src/components/pipe-run.tsx:16)
`examples/astro/src/components/pipe-run.tsx:16` calls `POST /api/langbase/pipes/run` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run` If this points at an external API, prefix it with `https://` so…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run (examples/nextjs/components/pipe-run.tsx:18)
`examples/nextjs/components/pipe-run.tsx:18` calls `POST /api/langbase/pipes/run` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run` If this points at an external API, prefix it with `https://` so th…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run (examples/remix/app/components/pipe-run.tsx:16)
`examples/remix/app/components/pipe-run.tsx:16` calls `POST /api/langbase/pipes/run` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run` If this points at an external API, prefix it with `https://` so…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-memory (examples/astro/src/components/pipe-run-with-memory.tsx:21)
`examples/astro/src/components/pipe-run-with-memory.tsx:21` calls `POST /api/langbase/pipes/run-memory` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-memory` If this points at an external API, pr…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-memory (examples/nextjs/components/pipe-run-with-memory.tsx:23)
`examples/nextjs/components/pipe-run-with-memory.tsx:23` calls `POST /api/langbase/pipes/run-memory` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-memory` If this points at an external API, prefi…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-memory (examples/remix/app/components/pipe-run-with-memory.tsx:21)
`examples/remix/app/components/pipe-run-with-memory.tsx:21` calls `POST /api/langbase/pipes/run-memory` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-memory` If this points at an external API, pr…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-pipes-as-tools (examples/astro/src/components/pipe-run-pipes-as-tools.tsx:16)
`examples/astro/src/components/pipe-run-pipes-as-tools.tsx:16` calls `POST /api/langbase/pipes/run-pipes-as-tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-pipes-as-tools` If this points at …
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-pipes-as-tools (examples/nextjs/components/pipe-run-pipes-as-tools.tsx:18)
`examples/nextjs/components/pipe-run-pipes-as-tools.tsx:18` calls `POST /api/langbase/pipes/run-pipes-as-tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-pipes-as-tools` If this points at an …
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-pipes-as-tools (examples/remix/app/components/pipe-run-pipes-as-tools.tsx:16)
`examples/remix/app/components/pipe-run-pipes-as-tools.tsx:16` calls `POST /api/langbase/pipes/run-pipes-as-tools` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-pipes-as-tools` If this points at …
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-stream (examples/astro/src/components/pipe-stream.tsx:19)
`examples/astro/src/components/pipe-stream.tsx:19` calls `POST /api/langbase/pipes/run-stream` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-stream` If this points at an external API, prefix it w…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-stream (examples/nextjs/components/pipe-stream.tsx:21)
`examples/nextjs/components/pipe-stream.tsx:21` calls `POST /api/langbase/pipes/run-stream` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-stream` If this points at an external API, prefix it with…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-stream (examples/remix/app/components/pipe-stream.tsx:19)
`examples/remix/app/components/pipe-stream.tsx:19` calls `POST /api/langbase/pipes/run-stream` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-stream` If this points at an external API, prefix it w…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-tool (examples/astro/src/components/pipe-run-with-tool.tsx:18)
`examples/astro/src/components/pipe-run-with-tool.tsx:18` calls `POST /api/langbase/pipes/run-tool` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-tool` If this points at an external API, prefix i…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-tool (examples/nextjs/components/pipe-run-with-tool.tsx:20)
`examples/nextjs/components/pipe-run-with-tool.tsx:20` calls `POST /api/langbase/pipes/run-tool` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-tool` If this points at an external API, prefix it w…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-tool (examples/remix/app/components/pipe-run-with-tool.tsx:18)
`examples/remix/app/components/pipe-run-with-tool.tsx:18` calls `POST /api/langbase/pipes/run-tool` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-tool` If this points at an external API, prefix i…
wiringdangling-fetchfetch
high 9-layer api wiring conf 1.00 Dangling fetch: POST /api/langbase/pipes/run-tool-stream (examples/nextjs/components/pipe-run-with-tool-stream.tsx:21)
`examples/nextjs/components/pipe-run-with-tool-stream.tsx:21` calls `POST /api/langbase/pipes/run-tool-stream` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/langbase/pipes/run-tool-stream` If this points at an exte…
wiringdangling-fetchfetch
{# ── 2026-05-17 Round 14: AI-agent bridge footer ────────────────────── Discoverability: the /agents/voting/ guide + MCP manifest exist but aren't linked from anywhere users actually land. Small, opt-in footer. #}
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/0ee43221-bfad-4c17-94b5-ed34a4aceef7/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/0ee43221-bfad-4c17-94b5-ed34a4aceef7/

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.