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.
94 of your 196 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 45.97s for a 66.4 MB repo slow.
  • Repobility's analysis ran in 14.58s after the clone landed.

microsoft/playwright

https://github.com/microsoft/playwright · scanned 2026-06-05 06:57 UTC (5 days, 20 hours ago) · 10 languages

1554 raw signals (176 security + 1378 graph) 11/13 scanners ran 46th percentile · Typescript · huge (>500K LoC) System graph score 50 (higher by 35)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 20 hours ago · v2 · 713 actionable findings from 2 signal sources. 152 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 90.0 0.20 18.00
documentation_score 90.0 0.15 13.50
practices_score 79.0 0.15 11.85
code_quality 70.0 0.10 7.00
Overall 1.00 84.3
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 A- (84/100). Dimensions: security 100, maintainability 60. 176 findings (73 security). 612,419 lines analyzed.

Showing 538 of 713 actionable findings. 865 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 [MINED024] Js Eval Usage: eval() executes arbitrary code. Code injection risk.
Review and fix per the pattern semantics. See CWE-95 / for context.
packages/playwright-core/src/tools/backend/evaluate.ts:50
critical Security checks quality Quality conf 1.00 ✓ Repobility [MINED024] Js Eval Usage: eval() executes arbitrary code. Code injection risk.
Review and fix per the pattern semantics. See CWE-95 / for context.
packages/injected/src/utilityScript.ts:73
critical Security checks quality Quality conf 1.00 ✓ Repobility [MINED035] Js New Function: new Function(...) compiles strings to functions.
Review and fix per the pattern semantics. See CWE-95 / for context.
packages/playwright-ct-vue/registerSource.mjs:82
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 25 occurrences 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.
5 files, 25 locations
.github/workflows/tests_others.yml:43, 44, 45, 67, 68, 69, 98, 99, +1 more (9 hits)
.github/workflows/tests_primary.yml:65, 66, 67, 138, 139, 140, 212, 213, +1 more (9 hits)
.github/workflows/tests_bidi.yml:83, 84, 85 (3 hits)
.github/workflows/tests_mcp.yml:64, 65, 66 (3 hits)
.github/workflows/tests_secondary.yml:45
CI/CD securityworkflow secretsGitHub Actions
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `ubuntu:jammy` not pinned by digest: `FROM ubuntu:jammy` 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 ubuntu:jammy@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
utils/docker/Dockerfile.jammy:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `ubuntu:noble` not pinned by digest: `FROM ubuntu:noble` 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 ubuntu:noble@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
utils/docker/Dockerfile.noble:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `packages/playwright-core/src/server/android/driver/gradle/wrapper/gradle-wrapper.jar` committed in source repo: `packages/playwright-core/src/server/android/driver/gradle/wrapper/gradle-wrapper.jar` is a .jar binary (60,756 bytes) committed to a repo that otherwise has 1659 source files. Trojan binaries inside otherwise-normal source repos are a known supply-chain attack: a compromised dependency or PR slips in a binary that gets executed by build scripts.
Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source.
packages/playwright-core/src/server/android/driver/gradle/wrapper/gradle-wrapper.jar:1
high Security checks security path traversal conf 0.80 3 occurrences [SEC013] Path Traversal — User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files.
Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads.
3 files, 3 locations
packages/playwright-core/src/client/localUtils.ts:46
packages/playwright-core/src/server/dispatchers/androidDispatcher.ts:95
packages/playwright-core/src/server/dispatchers/localUtilsDispatcher.ts:58
high Security checks security Injection conf 1.00 [SEC038] HTTP Request Smuggling Risk — TE/CL mismatch: HTTP Request Smuggling (HRS) abuses parser disagreement between front-end and back-end servers about request boundaries when Transfer-Encoding and Content-Length both present. Attackers smuggle a second request, stealing other users' responses or bypassing auth. CWE-444. Real CVEs: CVE-2019-16276 (Go net/http), CVE-2020-10719 (Undertow), CVE-2022-24735 (Redis-7), Cloudflare/Akamai/Varnish disclosures.
Don't set Transfer-Encoding manually — let the framework. If you must: 1. Only set ONE of Transfer-Encoding or Content-Length per response. 2. Reject incoming requests with both headers (RFC 7230 §3.3.3 #3). 3. Use a battle-tested HTTP server (nginx, envoy) as front-end; never accept raw…
packages/playwright-core/src/server/registry/oopDownloadBrowserMain.ts:78
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 30 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
12 files, 27 locations
.github/workflows/roll_nodejs.yml:15, 16, 36, 43 (5 hits)
.github/workflows/pr_check_client_side_changes.yml:18, 19, 30 (4 hits)
.github/workflows/tests_others.yml:36, 61, 85 (3 hits)
.github/workflows/copilot-setup-steps.yml:11, 12 (2 hits)
.github/workflows/publish_release_docker.yml:21, 22 (2 hits)
.github/workflows/tests_bidi.yml:65, 73 (2 hits)
.github/workflows/tests_components.yml:41, 42 (2 hits)
.github/workflows/tests_docker.yml:36, 37 (2 hits)
CI/CD securitySupply chainGitHub Actions
high System graph api Wiring conf 1.00 Dangling fetch: DELETE https://example.com/cars (tests/page/page-route.spec.ts:931)
`tests/page/page-route.spec.ts:931` calls `DELETE https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET / (tests/library/heap.spec.ts:148)
`tests/library/heap.spec.ts:148` calls `GET /` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET / (tests/library/unroute-behavior.spec.ts:316)
`tests/library/unroute-behavior.spec.ts:316` calls `GET /` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET / (tests/library/unroute-behavior.spec.ts:330)
`tests/library/unroute-behavior.spec.ts:330` calls `GET /` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /addressbook.json (tests/library/chromium/chromium.spec.ts:511)
`tests/library/chromium/chromium.spec.ts:511` calls `GET /addressbook.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/addressbook.json` 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: GET /api (tests/library/trace-viewer.spec.ts:1711)
`tests/library/trace-viewer.spec.ts:1711` calls `GET /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api (tests/mcp/cli-devtools.spec.ts:175)
`tests/mcp/cli-devtools.spec.ts:175` calls `GET /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api (tests/page/page-network-response.spec.ts:349)
`tests/page/page-network-response.spec.ts:349` calls `GET /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api (tests/page/page-network-response.spec.ts:400)
`tests/page/page-network-response.spec.ts:400` calls `GET /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api (tests/playwright-test/playwright.trace.spec.ts:1272)
`tests/playwright-test/playwright.trace.spec.ts:1272` calls `GET /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/check (tests/mcp/route.spec.ts:112)
`tests/mcp/route.spec.ts:112` calls `GET /api/check` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/check` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/error (tests/mcp/route.spec.ts:67)
`tests/mcp/route.spec.ts:67` calls `GET /api/error` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/error` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/orders (tests/mcp/cli-devtools.spec.ts:66)
`tests/mcp/cli-devtools.spec.ts:66` calls `GET /api/orders` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orders` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/orders (tests/mcp/network.spec.ts:125)
`tests/mcp/network.spec.ts:125` calls `GET /api/orders` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orders` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/orders (tests/mcp/network.spec.ts:81)
`tests/mcp/network.spec.ts:81` calls `GET /api/orders` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/orders` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/users (tests/mcp/cli-devtools.spec.ts:66)
`tests/mcp/cli-devtools.spec.ts:66` calls `GET /api/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/users` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/users (tests/mcp/network.spec.ts:124)
`tests/mcp/network.spec.ts:124` calls `GET /api/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/users` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/users (tests/mcp/network.spec.ts:81)
`tests/mcp/network.spec.ts:81` calls `GET /api/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/users` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/users (tests/mcp/route.spec.ts:25)
`tests/mcp/route.spec.ts:25` calls `GET /api/users` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/users` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /data.json (tests/components/ct-react-vite/src/components/Fetcher.tsx:10)
`tests/components/ct-react-vite/src/components/Fetcher.tsx:10` calls `GET /data.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/data.json` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /data.json (tests/library/chromium/chromium.spec.ts:365)
`tests/library/chromium/chromium.spec.ts:365` calls `GET /data.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/data.json` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /data.json (tests/library/chromium/chromium.spec.ts:418)
`tests/library/chromium/chromium.spec.ts:418` calls `GET /data.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/data.json` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /delayed-fetch (tests/library/har.spec.ts:121)
`tests/library/har.spec.ts:121` calls `GET /delayed-fetch` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/delayed-fetch` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /digits/1.png (tests/page/page-network-request.spec.ts:49)
`tests/page/page-network-request.spec.ts:49` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-request.spec.ts:101)
`tests/page/page-wait-for-request.spec.ts:101` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-request.spec.ts:26)
`tests/page/page-wait-for-request.spec.ts:26` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-request.spec.ts:39)
`tests/page/page-wait-for-request.spec.ts:39` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-request.spec.ts:74)
`tests/page/page-wait-for-request.spec.ts:74` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-request.spec.ts:87)
`tests/page/page-wait-for-request.spec.ts:87` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-response.spec.ts:112)
`tests/page/page-wait-for-response.spec.ts:112` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /digits/1.png (tests/page/page-wait-for-response.spec.ts:25)
`tests/page/page-wait-for-response.spec.ts:25` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-response.spec.ts:61)
`tests/page/page-wait-for-response.spec.ts:61` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/1.png (tests/page/page-wait-for-response.spec.ts:98)
`tests/page/page-wait-for-response.spec.ts:98` calls `GET /digits/1.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/1.png` 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 /digits/2.png (tests/page/page-wait-for-request.spec.ts:27)
`tests/page/page-wait-for-request.spec.ts:27` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/2.png (tests/page/page-wait-for-request.spec.ts:40)
`tests/page/page-wait-for-request.spec.ts:40` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/2.png (tests/page/page-wait-for-request.spec.ts:75)
`tests/page/page-wait-for-request.spec.ts:75` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/2.png (tests/page/page-wait-for-response.spec.ts:113)
`tests/page/page-wait-for-response.spec.ts:113` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /digits/2.png (tests/page/page-wait-for-response.spec.ts:26)
`tests/page/page-wait-for-response.spec.ts:26` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/2.png (tests/page/page-wait-for-response.spec.ts:62)
`tests/page/page-wait-for-response.spec.ts:62` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/2.png (tests/page/page-wait-for-response.spec.ts:99)
`tests/page/page-wait-for-response.spec.ts:99` calls `GET /digits/2.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/2.png` 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 /digits/3.png (tests/page/page-wait-for-request.spec.ts:28)
`tests/page/page-wait-for-request.spec.ts:28` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` 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 /digits/3.png (tests/page/page-wait-for-request.spec.ts:41)
`tests/page/page-wait-for-request.spec.ts:41` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` 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 /digits/3.png (tests/page/page-wait-for-request.spec.ts:76)
`tests/page/page-wait-for-request.spec.ts:76` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` 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 /digits/3.png (tests/page/page-wait-for-response.spec.ts:100)
`tests/page/page-wait-for-response.spec.ts:100` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /digits/3.png (tests/page/page-wait-for-response.spec.ts:114)
`tests/page/page-wait-for-response.spec.ts:114` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /digits/3.png (tests/page/page-wait-for-response.spec.ts:27)
`tests/page/page-wait-for-response.spec.ts:27` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` 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 /digits/3.png (tests/page/page-wait-for-response.spec.ts:63)
`tests/page/page-wait-for-response.spec.ts:63` calls `GET /digits/3.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/digits/3.png` 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 /empty.html (tests/library/capabilities.spec.ts:271)
`tests/library/capabilities.spec.ts:271` calls `GET /empty.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/empty.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /empty.html (tests/library/chromium/chromium.spec.ts:98)
`tests/library/chromium/chromium.spec.ts:98` calls `GET /empty.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/empty.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /empty.html (tests/page/page-event-request.spec.ts:40)
`tests/page/page-event-request.spec.ts:40` calls `GET /empty.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/empty.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /empty.html (tests/page/page-event-request.spec.ts:53)
`tests/page/page-event-request.spec.ts:53` calls `GET /empty.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/empty.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /example.txt (tests/page/page-network-response.spec.ts:316)
`tests/page/page-network-response.spec.ts:316` calls `GET /example.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/example.txt` 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 /fallthrough.txt (tests/library/chromium/chromium.spec.ts:514)
`tests/library/chromium/chromium.spec.ts:514` calls `GET /fallthrough.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/fallthrough.txt` 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: GET /favicon.ico (tests/page/page-request-intercept.spec.ts:337)
`tests/page/page-request-intercept.spec.ts:337` calls `GET /favicon.ico` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/favicon.ico` 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 /file-to-upload.txt (tests/page/page-wait-for-response.spec.ts:82)
`tests/page/page-wait-for-response.spec.ts:82` calls `GET /file-to-upload.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/file-to-upload.txt` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /foo (tests/library/chromium/chromium.spec.ts:512)
`tests/library/chromium/chromium.spec.ts:512` calls `GET /foo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/foo` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /frame/api (tests/page/page-network-response.spec.ts:372)
`tests/page/page-network-response.spec.ts:372` calls `GET /frame/api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/frame/api` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /global-var.html (tests/page/page-route.spec.ts:259)
`tests/page/page-route.spec.ts:259` calls `GET /global-var.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/global-var.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /headers (tests/page/page-network-request.spec.ts:418)
`tests/page/page-network-request.spec.ts:418` calls `GET /headers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/headers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /headers (tests/page/page-network-response.spec.ts:177)
`tests/page/page-network-response.spec.ts:177` calls `GET /headers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/headers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /headers (tests/page/page-network-response.spec.ts:211)
`tests/page/page-network-response.spec.ts:211` calls `GET /headers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/headers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /headers (tests/page/page-network-response.spec.ts:244)
`tests/page/page-network-response.spec.ts:244` calls `GET /headers` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/headers` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello (tests/components/ct-react17/tests/render.spec.tsx:69)
`tests/components/ct-react17/tests/render.spec.tsx:69` calls `GET /hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello-world (tests/mcp/cli-cdp.spec.ts:122)
`tests/mcp/cli-cdp.spec.ts:122` calls `GET /hello-world` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello-world` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello-world (tests/mcp/cli-devtools.spec.ts:203)
`tests/mcp/cli-devtools.spec.ts:203` calls `GET /hello-world` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello-world` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello-world (tests/mcp/cli-devtools.spec.ts:50)
`tests/mcp/cli-devtools.spec.ts:50` calls `GET /hello-world` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello-world` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello-world (tests/mcp/cli-devtools.spec.ts:78)
`tests/mcp/cli-devtools.spec.ts:78` calls `GET /hello-world` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello-world` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /hello-world (tests/mcp/cli-json.spec.ts:185)
`tests/mcp/cli-json.spec.ts:185` calls `GET /hello-world` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/hello-world` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /image.png (tests/mcp/network.spec.ts:266)
`tests/mcp/network.spec.ts:266` calls `GET /image.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/image.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /inner.txt (tests/library/chromium/chromium.spec.ts:202)
`tests/library/chromium/chromium.spec.ts:202` calls `GET /inner.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/inner.txt` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /inner.txt (tests/library/chromium/chromium.spec.ts:609)
`tests/library/chromium/chromium.spec.ts:609` calls `GET /inner.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/inner.txt` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /inner.txt (tests/library/chromium/chromium.spec.ts:623)
`tests/library/chromium/chromium.spec.ts:623` calls `GET /inner.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/inner.txt` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /json (tests/library/browsercontext-cookies-third-party.spec.ts:614)
`tests/library/browsercontext-cookies-third-party.spec.ts:614` calls `GET /json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/json` 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 /json (tests/library/headful.spec.ts:181)
`tests/library/headful.spec.ts:181` calls `GET /json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/json` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /json (tests/mcp/network.spec.ts:24)
`tests/mcp/network.spec.ts:24` calls `GET /json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/json` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /missing (tests/mcp/test-debug.spec.ts:97)
`tests/mcp/test-debug.spec.ts:97` calls `GET /missing` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/missing` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /one-style.css (tests/page/workers.spec.ts:362)
`tests/page/workers.spec.ts:362` calls `GET /one-style.css` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/one-style.css` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /pptr.png (tests/library/har.spec.ts:324)
`tests/library/har.spec.ts:324` calls `GET /pptr.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/pptr.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /pptr.png (tests/library/har.spec.ts:349)
`tests/library/har.spec.ts:349` calls `GET /pptr.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/pptr.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /pptr.png (tests/library/har.spec.ts:359)
`tests/library/har.spec.ts:359` calls `GET /pptr.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/pptr.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /pptr.png (tests/library/har.spec.ts:368)
`tests/library/har.spec.ts:368` calls `GET /pptr.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/pptr.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /pptr.png (tests/library/har.spec.ts:377)
`tests/library/har.spec.ts:377` calls `GET /pptr.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/pptr.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /request-from-within-worker (tests/library/chromium/chromium.spec.ts:225)
`tests/library/chromium/chromium.spec.ts:225` calls `GET /request-from-within-worker` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/request-from-within-worker` If this points at an external API, prefix it with `htt…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /request-from-within-worker (tests/library/chromium/chromium.spec.ts:320)
`tests/library/chromium/chromium.spec.ts:320` calls `GET /request-from-within-worker` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/request-from-within-worker` If this points at an external API, prefix it with `htt…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /request-from-within-worker.txt (tests/assets/serviceworkers/fetch/sw.js:12)
`tests/assets/serviceworkers/fetch/sw.js:12` calls `GET /request-from-within-worker.txt` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/request-from-within-worker.txt` If this points at an external API, prefix it wi…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /resource-type-fetch (tests/library/har.spec.ts:1032)
`tests/library/har.spec.ts:1032` calls `GET /resource-type-fetch` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/resource-type-fetch` 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 /route-throws.json (tests/mcp/run-code.spec.ts:125)
`tests/mcp/run-code.spec.ts:125` calls `GET /route-throws.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/route-throws.json` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /simple.json (tests/page/page-wait-for-response.spec.ts:81)
`tests/page/page-wait-for-response.spec.ts:81` calls `GET /simple.json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/simple.json` 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 /sleep.zzz (tests/page/page-request-continue.spec.ts:107)
`tests/page/page-request-continue.spec.ts:107` calls `GET /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /sleep.zzz (tests/page/page-request-continue.spec.ts:219)
`tests/page/page-request-continue.spec.ts:219` calls `GET /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /sleep.zzz (tests/page/page-request-continue.spec.ts:38)
`tests/page/page-request-continue.spec.ts:38` calls `GET /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /sleep.zzz (tests/page/page-request-fallback.spec.ts:136)
`tests/page/page-request-fallback.spec.ts:136` calls `GET /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /sleep.zzz (tests/page/page-request-fallback.spec.ts:194)
`tests/page/page-request-fallback.spec.ts:194` calls `GET /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /static/image.png (tests/mcp/cli-devtools.spec.ts:66)
`tests/mcp/cli-devtools.spec.ts:66` calls `GET /static/image.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/static/image.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /static/image.png (tests/mcp/network.spec.ts:81)
`tests/mcp/network.spec.ts:81` calls `GET /static/image.png` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/static/image.png` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /title.html (tests/library/browsercontext-cookies.spec.ts:376)
`tests/library/browsercontext-cookies.spec.ts:376` calls `GET /title.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/title.html` 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 /title.html (tests/library/browsercontext-cookies.spec.ts:388)
`tests/library/browsercontext-cookies.spec.ts:388` calls `GET /title.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/title.html` 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 /title.html (tests/library/browsercontext-cookies.spec.ts:400)
`tests/library/browsercontext-cookies.spec.ts:400` calls `GET /title.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/title.html` 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 /tracker.js (tests/library/chromium/chromium.spec.ts:513)
`tests/library/chromium/chromium.spec.ts:513` calls `GET /tracker.js` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/tracker.js` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET /zzz (tests/page/page-route.spec.ts:458)
`tests/page/page-route.spec.ts:458` calls `GET /zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://example.com (tests/playwright-test/playwright.spec.ts:936)
`tests/playwright-test/playwright.spec.ts:936` calls `GET http://example.com` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/example.com` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:54)
`tests/playwright-test/web-server.spec.ts:54` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with `…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:58)
`tests/playwright-test/web-server.spec.ts:58` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with `…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:584)
`tests/playwright-test/web-server.spec.ts:584` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:588)
`tests/playwright-test/web-server.spec.ts:588` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:596)
`tests/playwright-test/web-server.spec.ts:596` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:${port}/hello (tests/playwright-test/web-server.spec.ts:66)
`tests/playwright-test/web-server.spec.ts:66` calls `GET http://localhost:${port}/hello` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:/<p>/hello` If this points at an external API, prefix it with `…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:8000/sample (tests/page/page-network-idle.spec.ts:190)
`tests/page/page-network-idle.spec.ts:190` calls `GET http://localhost:8000/sample` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:8000/sample` If this points at an external API, prefix it with `http…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://localhost:9889 (tests/playwright-test/ui-mode-test-output.spec.ts:172)
`tests/playwright-test/ui-mode-test-output.spec.ts:172` calls `GET http://localhost:9889` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/localhost:9889` If this points at an external API, prefix it with `https…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://example.com/cars?allow (tests/page/page-route.spec.ts:626)
`tests/page/page-route.spec.ts:626` calls `GET https://example.com/cars?allow` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://example.com/cars?reject (tests/page/page-route.spec.ts:634)
`tests/page/page-route.spec.ts:634` calls `GET https://example.com/cars?reject` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: OPTIONS http://example.com/foo (tests/library/unit/codegen.spec.ts:58)
`tests/library/unit/codegen.spec.ts:58` calls `OPTIONS http://example.com/foo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/example.com/foo` 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: PATCH /sleep.zzz (tests/page/page-request-continue.spec.ts:205)
`tests/page/page-request-continue.spec.ts:205` calls `PATCH /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /404.html (tests/page/page-route.spec.ts:1051)
`tests/page/page-route.spec.ts:1051` calls `POST /404.html` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/404.html` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/cli-devtools.spec.ts:117)
`tests/mcp/cli-devtools.spec.ts:117` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/cli-devtools.spec.ts:140)
`tests/mcp/cli-devtools.spec.ts:140` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/cli-devtools.spec.ts:86)
`tests/mcp/cli-devtools.spec.ts:86` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/cli-json.spec.ts:194)
`tests/mcp/cli-json.spec.ts:194` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/network.spec.ts:142)
`tests/mcp/network.spec.ts:142` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api (tests/mcp/network.spec.ts:212)
`tests/mcp/network.spec.ts:212` calls `POST /api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api1 (tests/library/har.spec.ts:541)
`tests/library/har.spec.ts:541` calls `POST /api1` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/api1` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api2 (tests/library/har.spec.ts:558)
`tests/library/har.spec.ts:558` calls `POST /api2` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/api2` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /data (tests/page/network-post-data.spec.ts:97)
`tests/page/network-post-data.spec.ts:97` calls `POST /data` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/data` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /echo (tests/library/browsercontext-har.spec.ts:307)
`tests/library/browsercontext-har.spec.ts:307` calls `POST /echo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/echo` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /echo (tests/library/browsercontext-har.spec.ts:372)
`tests/library/browsercontext-har.spec.ts:372` calls `POST /echo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/echo` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /feedback (tests/mcp/trace-cli-fixtures.ts:109)
`tests/mcp/trace-cli-fixtures.ts:109` calls `POST /feedback` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/feedback` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /foo (tests/page/page-network-sizes.spec.ts:126)
`tests/page/page-network-sizes.spec.ts:126` calls `POST /foo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/foo` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /foo (tests/page/page-network-sizes.spec.ts:161)
`tests/page/page-network-sizes.spec.ts:161` calls `POST /foo` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/foo` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /from-fetch-api (tests/library/client-certificates.spec.ts:675)
`tests/library/client-certificates.spec.ts:675` calls `POST /from-fetch-api` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/from-fetch-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: POST /post (tests/components/ct-react-vite/src/components/Fetcher.tsx:29)
`tests/components/ct-react-vite/src/components/Fetcher.tsx:29` calls `POST /post` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/post` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /post (tests/page/page-network-request.spec.ts:332)
`tests/page/page-network-request.spec.ts:332` calls `POST /post` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/post` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-continue.spec.ts:189)
`tests/page/page-request-continue.spec.ts:189` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-continue.spec.ts:232)
`tests/page/page-request-continue.spec.ts:232` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-continue.spec.ts:245)
`tests/page/page-request-continue.spec.ts:245` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-continue.spec.ts:259)
`tests/page/page-request-continue.spec.ts:259` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-fallback.spec.ts:233)
`tests/page/page-request-fallback.spec.ts:233` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-fallback.spec.ts:252)
`tests/page/page-request-fallback.spec.ts:252` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /sleep.zzz (tests/page/page-request-fallback.spec.ts:275)
`tests/page/page-request-fallback.spec.ts:275` calls `POST /sleep.zzz` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/sleep.zzz` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /upload (tests/page/page-filechooser.spec.ts:269)
`tests/page/page-filechooser.spec.ts:269` calls `POST /upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/upload` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /upload (tests/page/page-request-continue.spec.ts:866)
`tests/page/page-request-continue.spec.ts:866` calls `POST /upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/upload` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /upload (tests/page/page-request-intercept.spec.ts:297)
`tests/page/page-request-intercept.spec.ts:297` calls `POST /upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/upload` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /upload (tests/page/page-set-input-files.spec.ts:349)
`tests/page/page-set-input-files.spec.ts:349` calls `POST /upload` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/upload` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://example.com/cars (tests/page/page-route.spec.ts:658)
`tests/page/page-route.spec.ts:658` calls `POST https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://example.com/cars (tests/page/page-route.spec.ts:836)
`tests/page/page-route.spec.ts:836` calls `POST https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://example.com/cars (tests/page/page-route.spec.ts:861)
`tests/page/page-route.spec.ts:861` calls `POST https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://example.com/cars (tests/page/page-route.spec.ts:890)
`tests/page/page-route.spec.ts:890` calls `POST https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://example.com/cars (tests/page/page-route.spec.ts:918)
`tests/page/page-route.spec.ts:918` calls `POST https://example.com/cars` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/example.com/cars` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchFetch
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/injected/src/clock.ts:369
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/injected/src/clock.ts:369 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/injected/src/injectedScript.ts:238
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/injected/src/injectedScript.ts:238 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/injected/src/utilityScript.ts:73
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/injected/src/utilityScript.ts:73 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/src/client/locator.ts:138
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/src/client/locator.ts:138 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/src/client/page.ts:338
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/src/client/page.ts:338 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/src/server/chromium/protocol.d.ts:22475
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/src/server/chromium/protocol.d.ts:22475 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/src/server/frames.ts:1602
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/src/server/frames.ts:1602 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/src/tools/backend/evaluate.ts:50
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/src/tools/backend/evaluate.ts:50 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright-core/types/protocol.d.ts:22475
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright-core/types/protocol.d.ts:22475 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in packages/playwright/src/transform/transform.ts:273
Found a known-risky pattern (eval_used). Review and replace if possible.
packages/playwright/src/transform/transform.ts:273 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in utils/check_audit.js:9
Found a known-risky pattern (exec_used). Review and replace if possible.
utils/check_audit.js:9 Exec used
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.
medium Security checks quality Error handling conf 1.00 3 occurrences [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
3 files, 3 locations
browser_patches/firefox/juggler/Helper.js:101
packages/dashboard/src/transport.ts:72
packages/extension/src/background.ts:122
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
packages/isomorphic/urlMatch.ts:262
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
packages/injected/src/webview/webViewDialog.ts:27
high Security checks quality Quality conf 0.72 3 occurrences Agent control bridge may listen on a network interface without visible auth
Bind local agent bridges to 127.0.0.1 by default. If remote access is required, require a bearer token or mTLS, enforce origin/CSRF checks for browser clients, and document the threat model.
3 files, 3 locations
packages/playwright/src/program.ts:12
packages/playwright/src/reporters/html.ts:12
packages/playwright/types/test.d.ts:13
low Security checks quality Error handling conf 0.55 ✓ Repobility Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
utils/doclint/linting-code-snippets/python/main.py:8 Error handlingquality
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 27, 66, 69
packages/extension/src/ui/authToken.tsx:27, 66, 69 (3 hits)
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
utils/docker/Dockerfile.noble:1 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
utils/docker/Dockerfile.jammy:1 CI/CD securitycontainers
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Publish a package-manager install path or add checksum/signature verification before execution. For docs, show the inspect-then-run flow and pin the downloaded artifact version.
docs/src/docker.md:240
medium Security checks quality Quality conf 0.72 Service worker is present without a web app manifest
Add a valid manifest.json or site.webmanifest and reference it from the document head. Include name, icons, start_url, display, and theme colors.
manifest.json
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — packages/html-reporter/src/testErrorView.tsx:28
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/trace-viewer/src/ui/consoleTab.tsx:200
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/web/src/components/errorMessage.tsx:25
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 — tests/assets/react/[email protected]:6
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 — tests/assets/react/[email protected]:26
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 — tests/assets/react/[email protected]:26
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 — tests/assets/reading-list/react-dom_15.7.0.js:5470
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 — tests/assets/reading-list/react-dom_16.14.0.js:1015
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 — tests/assets/reading-list/react-dom_17.0.2.js:309
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 — tests/assets/stress/static/js/main.cc4a7955.js:2
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 — packages/html-reporter/src/testResultView.tsx:104
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/playwright-core/src/client/fetch.ts:125
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/playwright-core/src/client/network.ts:346
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/playwright-core/src/server/dispatchers/networkDispatchers.ts:223
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/playwright-core/src/server/fetch.ts:170
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/playwright-core/src/server/webkit/webview/wvBrowser.ts:64
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/playwright-core/src/tools/backend/tab.ts:234
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/playwright-core/src/tools/dashboard/dashboardController.ts:543
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/playwright-core/src/tools/trace/traceSnapshot.ts: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 — packages/playwright-ct-core/src/router.ts:62
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/protocol/src/channels.d.ts:649
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/trace-viewer/src/index.tsx:41
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/trace-viewer/src/snapshotMain.ts: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 — packages/trace-viewer/src/sw/main.ts:140
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/trace-viewer/src/sw/traceLoaderBackends.ts:133
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/trace-viewer/src/third_party/devtools.ts:289
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/trace-viewer/src/ui/errorsTab.tsx:97
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/trace-viewer/src/ui/liveWorkbenchLoader.tsx:57
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/trace-viewer/src/ui/networkResourceDetails.tsx:53
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/trace-viewer/src/ui/snapshotTab.tsx:448
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/trace-viewer/src/ui/uiModeTraceView.tsx:117
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/trace-viewer/src/ui/workbenchLoader.tsx:131
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/trace-viewer/src/uiMode.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 — utils/protocol-types-generator/update-webview-protocol.js: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 Frontend route `dashboard` has no Link/navigate to it — tests/components/ct-react-vite/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 11 occurrences GitHub Action is tag-pinned rather than SHA-pinned
azure/login@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
6 files, 11 locations
.github/workflows/tests_docker.yml:48, 101 (4 hits)
.github/workflows/publish_release_docker.yml:27, 33 (3 hits)
.github/workflows/create_test_report.yml:43
.github/workflows/publish_release.yml:57
.github/workflows/tests_bidi.yml:81
.github/workflows/tests_webview_simulator.yml:85
CI/CD securitySupply chainGitHub Actions
medium System graph cicd CI/CD security conf 1.00 14 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.
12 files, 12 locations
.github/workflows/create_test_report.yml
.github/workflows/publish_release.yml
.github/workflows/publish_release_docker.yml
.github/workflows/roll_browser_into_playwright.yml
.github/workflows/roll_nodejs.yml
.github/workflows/roll_stable_test_runner.yml
.github/workflows/tests_bidi.yml
.github/workflows/tests_docker.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in packages/trace-viewer/src/ui/consoleTab.tsx:200
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
packages/trace-viewer/src/ui/consoleTab.tsx:200 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in packages/web/src/components/errorMessage.tsx:25
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
packages/web/src/components/errorMessage.tsx:25 Dangerous innerhtml
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 22 locations
packages/isomorphic/trace/versions/traceV8.ts:5, 29, 31, 117, 147 (5 hits)
packages/isomorphic/trace/versions/traceV7.ts:29, 31, 117, 147 (4 hits)
packages/isomorphic/trace/versions/traceV6.ts:1, 21, 56 (3 hits)
packages/isomorphic/trace/versions/traceV5.ts:1, 21 (2 hits)
packages/isomorphic/trace/versions/traceV4.ts:21
packages/isomorphic/yaml.ts:1
packages/playwright-core/src/client/jsHandle.ts:40
packages/playwright-core/src/client/locator.ts:126
duplicationquality
low Security checks quality Quality conf 0.64 Public docs site has no llms.txt
Add llms.txt with the product summary, canonical docs, API endpoints, security guidance, and preferred CLI workflow for AI agents.
llms.txt
low Security checks quality Quality conf 0.50 Public web app has no humans.txt
Add humans.txt with team ownership, contact URL, key documentation links, and the last-updated date.
humans.txt
low Security checks quality Quality conf 0.74 Public web app has no robots.txt
Add robots.txt at the web root or a framework-native robots route. Include an explicit Sitemap directive and disallow only private paths.
robots.txt
low Security checks quality Quality conf 0.72 Public web app has no sitemap
Add sitemap.xml, a sitemap index, or a framework-native sitemap route and reference it from robots.txt.
sitemap.xml
low System graph quality Maintenance conf 1.00 585 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tests/android/android.spec.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: tests/android/browser.spec.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: tests/android/device.spec.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: tests/android/launch-server.spec.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: tests/android/playwright.config.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: tests/android/webview.spec.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: tests/library/beforeunload.spec.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: tests/library/browser-server.spec.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: tests/library/browser.spec.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: tests/library/browsercontext-add-init-script.spec.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: tests/library/browsercontext-base-url.spec.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: tests/library/browsercontext-clearcookies.spec.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: tests/library/browsercontext-cookies.spec.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: tests/library/browsercontext-credentials.spec.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: tests/library/browsercontext-csp.spec.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: tests/library/browsercontext-dsf.spec.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: tests/library/browsercontext-expose-function.spec.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: tests/library/browsercontext-fetch-algorithms.spec.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: tests/library/browsercontext-network-event.spec.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: tests/library/browsercontext-page-event.spec.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: tests/library/browsercontext-service-worker-policy.spec.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: tests/library/browsercontext-set-extra-http-headers.spec.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: tests/library/browsercontext-strict.spec.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: tests/library/browsercontext-user-agent.spec.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: tests/library/browsercontext-viewport.spec.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: tests/library/browsertype-basic.spec.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: tests/library/browsertype-launch.spec.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: tests/library/debug-controller.spec.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: tests/library/debugger.spec.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: tests/library/downloads-path.spec.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: tests/library/favicon.spec.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: tests/library/fetch-proxy.spec.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: tests/library/geolocation.spec.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: tests/library/global-fetch.spec.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: tests/library/ignorehttpserrors.spec.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: tests/library/launcher.spec.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: tests/library/locator-dispatchevent-touch.spec.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: tests/library/locator-highlight.spec.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: tests/library/logger.spec.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: tests/library/page-clock.frozen.spec.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: tests/library/page-clock.spec.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: tests/library/page-close.spec.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: tests/library/pdf.spec.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: tests/library/proxy-pattern.spec.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: tests/library/screencast-actions.spec.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: tests/library/screencast-overlay.spec.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: tests/library/shared-worker.spec.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: tests/library/signals.spec.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: tests/library/unroute-behavior.spec.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: tests/library/web-socket.spec.ts
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph security security conf 1.00 Insecure pattern 'document_write' in packages/playwright-core/src/server/frames.ts:962
Found a known-risky pattern (document_write). Review and replace if possible.
packages/playwright-core/src/server/frames.ts:962 Document write
low System graph security security conf 1.00 Insecure pattern 'document_write' in packages/playwright-core/src/server/webkit/webview/wvPage.ts:457
Found a known-risky pattern (document_write). Review and replace if possible.
packages/playwright-core/src/server/webkit/webview/wvPage.ts:457 Document write
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `compressed_v1` in utils/flakiness-dashboard/processing/dashboard_compressed_v1.js:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `dashboard_compressed_v1` in utils/flakiness-dashboard/processing/compress_raw_data.js:22
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `dashboard_compressed_v1` in utils/flakiness-dashboard/processing/index.js:19
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `didWarnPropTypesDeprecated` in tests/assets/reading-list/react_15.7.0.js:202
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `GeolocationDeprecated` in packages/playwright-core/src/server/chromium/protocol.d.ts:1074
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `GeolocationDeprecated` in packages/playwright-core/types/protocol.d.ts:1074
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `idxInOld` in tests/assets/reading-list/vue_2.6.14.js:6215
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `isBatchingLegacy` in tests/assets/reading-list/react_18.1.0.js:83
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph cicd CI/CD security conf 1.00 6 occurrences package.json defines install-time lifecycle scripts
preinstall/install/postinstall/prepare scripts execute during dependency installation. Review them carefully for network calls, obfuscation, shell execution, or credential access.
6 files, 6 locations
packages/playwright-browser-chromium/package.json
packages/playwright-browser-firefox/package.json
packages/playwright-browser-webkit/package.json
packages/playwright-chromium/package.json
packages/playwright-firefox/package.json
packages/playwright-webkit/package.json
CI/CD securitySupply chainNpm
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/extension/src/relayConnection.ts:21
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/injected/src/recorder/pollingRecorder.ts:48
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/isomorphic/cssTokenizer.ts:117
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/isomorphic/trace/snapshotRenderer.ts:585
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/cli/browserActions.ts:310
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/cli/driver.ts:34
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/cli/installActions.ts:32
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/cli/program.ts:88
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/server/codegen/javascript.ts:60
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/server/registry/browserFetcher.ts:130
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/server/registry/dependencies.ts:83
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/server/registry/index.ts:1269
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — packages/playwright-core/src/server/trace/viewer/traceViewer.ts:261
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak

Showing first 300 of 538. 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/9bb00805-809e-47f5-9654-92e7f805606b/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/9bb00805-809e-47f5-9654-92e7f805606b/

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.