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.

rogerlew/wepppy

https://github.com/rogerlew/wepppy · scanned 2026-06-15 23:57 UTC (2 months, 3 weeks ago)

712 raw signals (0 security + 712 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 3 weeks ago · v1 · 616 actionable findings from 1 signal source. 96 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 40.8/100 with 100.0% coverage. It contains 29975 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 712 findings — concentrated in security (258), quality (248), cicd (80). Risk profile is high: 6 critical, 106 high, 233 medium. Recommended next step: open the security layer findings first — that's where the highest-impact wins live.

Showing 532 of 616 actionable findings. 712 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 System graph security Secrets conf 1.00 2 occurrences Possible secret in docker/docker-compose.dev.hpc.yml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 674, 775
docker/docker-compose.dev.hpc.yml:674, 775 (2 hits)
critical System graph security Secrets conf 1.00 2 occurrences Possible secret in docker/docker-compose.dev.yml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lines 722, 823
docker/docker-compose.dev.yml:722, 823 (2 hits)
critical System graph security Secrets conf 1.00 Possible secret in docker/docker-compose.prod.yml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
docker/docker-compose.prod.yml:795
critical System graph security Secrets conf 1.00 Possible secret in docker/redis-entrypoint.sh
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
docker/redis-entrypoint.sh:13
high System graph api Wiring conf 1.00 Dangling fetch: GET /api/ping (wepppy/weppcloud/controllers_js/__tests__/http.test.js:75)
`wepppy/weppcloud/controllers_js/__tests__/http.test.js:75` calls `GET /api/ping` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/ping` If this points at an external API, prefix it with `https://` so the mat…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /resources/nhd (wepppy/weppcloud/controllers_js/__tests__/http.test.js:159)
`wepppy/weppcloud/controllers_js/__tests__/http.test.js:159` calls `GET /resources/nhd` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/resources/nhd` If this points at an external API, prefix it with `https…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: GET /rq-engine/api/jobstatus/job-1 (wepppy/weppcloud/controllers_js/__tests__/http.test.js:98)
`wepppy/weppcloud/controllers_js/__tests__/http.test.js:98` calls `GET /rq-engine/api/jobstatus/job-1` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/rq-engine/api/jobstatus/job-1` If this points at an exte…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/fail (wepppy/weppcloud/controllers_js/__tests__/http.test.js:175)
`wepppy/weppcloud/controllers_js/__tests__/http.test.js:175` calls `POST /api/fail` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: helper:request Normalized path used for matching: `/fail` If this points at an external API, prefix it with `https://` so the m…
Dangling fetchHelper:request
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/mutate (wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:119)
`wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:119` calls `POST /api/mutate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mutate` If this points at an external API, prefix it with `https://` so …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/mutate (wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:72)
`wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:72` calls `POST /api/mutate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mutate` If this points at an external API, prefix it with `https://` so t…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST /api/mutate (wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:92)
`wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:92` calls `POST /api/mutate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/mutate` If this points at an external API, prefix it with `https://` so t…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://external.example/api/mutate (wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:98)
`wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:98` calls `POST https://external.example/api/mutate` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/external.example/api/mutate` If this point…
Dangling fetchFetch
high System graph hardware Supply chain conf 1.00 Dockerfile pipes a remote installer into a shell
Executing downloaded code during image build gives the remote endpoint build-time code execution. Prefer pinned packages or verify downloaded installers by checksum/signature.
docker/Dockerfile:79 containersRemote installer
high System graph security auth conf 1.00 FastAPI DELETE `delete_session` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:146
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:146 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_terminal` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:235
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:235 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/ash_routes.py:117
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/ash_routes.py:117 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:211
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:211 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:252
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:252 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:364
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:364 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:406
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:406 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:491
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:491 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/bootstrap_routes.py:571
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/bootstrap_routes.py:571 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/climate_routes.py:378
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/climate_routes.py:378 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/culvert_routes.py:225
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/culvert_routes.py:225 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/culvert_routes.py:317
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/culvert_routes.py:317 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/culvert_routes.py:75
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/culvert_routes.py:75 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/debris_flow_routes.py:66
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/debris_flow_routes.py:66 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/dss_export_routes.py:53
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/dss_export_routes.py:53 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/export_routes.py:559
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/export_routes.py:559 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/export_routes.py:632
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/export_routes.py:632 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/fork_archive_routes.py:213
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/fork_archive_routes.py:213 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/fork_archive_routes.py:441
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/fork_archive_routes.py:441 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/fork_archive_routes.py:512
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/fork_archive_routes.py:512 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/fork_archive_routes.py:591
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/fork_archive_routes.py:591 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/geneva_routes.py:399
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/geneva_routes.py:399 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/geneva_routes.py:456
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/geneva_routes.py:456 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/geneva_routes.py:516
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/geneva_routes.py:516 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/geneva_routes.py:572
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/geneva_routes.py:572 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/job_routes.py:357
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/job_routes.py:357 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/job_routes.py:421
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/job_routes.py:421 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:1052
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:1052 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:1131
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:1131 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:1271
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:1271 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:1484
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:1484 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:1539
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:1539 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:400
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:400 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:581
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:581 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:641
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:641 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:689
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:689 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:781
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:781 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/landuse_routes.py:891
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_routes.py:891 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/omni_routes.py:1000
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/omni_routes.py:1000 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/omni_routes.py:883
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/omni_routes.py:883 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/omni_routes.py:922
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/omni_routes.py:922 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/omni_routes.py:963
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/omni_routes.py:963 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/openet_ts_routes.py:30
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/openet_ts_routes.py:30 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/polaris_routes.py:30
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/polaris_routes.py:30 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/project_routes.py:248
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/project_routes.py:248 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/rap_ts_routes.py:76
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/rap_ts_routes.py:76 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/rhem_routes.py:29
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/rhem_routes.py:29 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/roads_routes.py:60
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/roads_routes.py:60 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/roads_routes.py:97
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/roads_routes.py:97 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/rusle_routes.py:30
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/rusle_routes.py:30 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/session_routes.py:826
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/session_routes.py:826 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/soils_routes.py:65
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/soils_routes.py:65 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/swat_routes.py:164
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/swat_routes.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/swat_routes.py:50
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/swat_routes.py:50 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/swat_routes.py:96
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/swat_routes.py:96 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/treatments_routes.py:78
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/treatments_routes.py:78 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/upload_climate_routes.py:77
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_climate_routes.py:77 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/upload_disturbed_routes.py:132
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_disturbed_routes.py:132 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/upload_disturbed_routes.py:53
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_disturbed_routes.py:53 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/watershed_routes.py:544
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/watershed_routes.py:544 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/watershed_routes.py:614
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/watershed_routes.py:614 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/watershed_routes.py:746
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/watershed_routes.py:746 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/watershed_routes.py:837
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/watershed_routes.py:837 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/wepp_routes.py:184
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/wepp_routes.py:184 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/wepp_routes.py:227
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/wepp_routes.py:227 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — wepppy/microservices/rq_engine/wepp_routes.py:272
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/wepp_routes.py:272 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `archive_profile_route` without auth dependency — services/profile_playback/app.py:933
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/profile_playback/app.py:933 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `build_landuse_and_soils` without auth dependency — wepppy/microservices/rq_engine/landuse_soils_routes.py:46
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/landuse_soils_routes.py:46 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_inbox_message_endpoint` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:252
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:252 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_session` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:106
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:106 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_terminal_in_session` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:157
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:157 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `delete_batch` without auth dependency — wepppy/microservices/rq_engine/batch_routes.py:80
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/batch_routes.py:80 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `exit_terminal` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:221
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:221 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `fork_profile_route` without auth dependency — services/profile_playback/app.py:925
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/profile_playback/app.py:925 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `hello_world` without auth dependency — wepppy/microservices/rq_engine/debug_routes.py:41
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/debug_routes.py:41 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `load_into_dtale` without auth dependency — wepppy/webservices/dtale/dtale.py:768
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/webservices/dtale/dtale.py:768 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `migrate_run` without auth dependency — wepppy/microservices/rq_engine/migration_routes.py:80
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/migration_routes.py:80 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_batch` without auth dependency — wepppy/microservices/rq_engine/batch_routes.py:42
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/batch_routes.py:42 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_profile` without auth dependency — services/profile_playback/app.py:797
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/profile_playback/app.py:797 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `run_sync` without auth dependency — wepppy/microservices/rq_engine/run_sync_routes.py:166
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/run_sync_routes.py:166 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `send_terminal_input` without auth dependency — services/cao/src/cli_agent_orchestrator/api/main.py:199
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
services/cao/src/cli_agent_orchestrator/api/main.py:199 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_geojson` without auth dependency — wepppy/microservices/rq_engine/upload_batch_runner_routes.py:136
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_batch_runner_routes.py:136 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_huc_fire_sbs` without auth dependency — wepppy/microservices/rq_engine/upload_huc_fire_routes.py:80
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_huc_fire_routes.py:80 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `upload_sbs_map` without auth dependency — wepppy/microservices/rq_engine/upload_batch_runner_routes.py:272
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
wepppy/microservices/rq_engine/upload_batch_runner_routes.py:272 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 Flask mutation route `index` without `@login_required` — wepppy/webservices/geeapi/__init__.py:36
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/geeapi/__init__.py:36 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_daily_singlepoint` without `@login_required` — wepppy/webservices/metquery.py:242
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:242 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_daily_singlepoint` without `@login_required` — wepppy/webservices/metquery.py:243
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:243 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_daily` without `@login_required` — wepppy/webservices/metquery.py:322
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:322 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_daily` without `@login_required` — wepppy/webservices/metquery.py:323
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:323 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_ecoregion` without `@login_required` — wepppy/webservices/ecoregion_us.py:33
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/ecoregion_us.py:33 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_elevation` without `@login_required` — wepppy/webservices/elevationquery.py:32
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/elevationquery.py:32 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_monthly` without `@login_required` — wepppy/webservices/metquery.py:426
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:426 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `query_monthly` without `@login_required` — wepppy/webservices/metquery.py:427
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
wepppy/webservices/metquery.py:427 securityAuth flask unauth route
high System graph security security conf 1.00 Insecure pattern 'eval_used' in wepppy/topo/watershed_collection/watershed_collection.py:754
Found a known-risky pattern (eval_used). Review and replace if possible.
wepppy/topo/watershed_collection/watershed_collection.py:754 Eval used
high System graph security security conf 1.00 Insecure pattern 'new_function_used' in wepppy/weppcloud/static/js/d3.js:8124
Found a known-risky pattern (new_function_used). Review and replace if possible.
wepppy/weppcloud/static/js/d3.js:8124 New function used
high System graph security security conf 1.00 Insecure pattern 'new_function_used' in wepppy/weppcloud/static/js/glify-browser.js:2
Found a known-risky pattern (new_function_used). Review and replace if possible.
wepppy/weppcloud/static/js/glify-browser.js:2 New function used
high System graph security security conf 1.00 Insecure pattern 'new_function_used' in wepppy/weppcloud/static/js/underscore.js:1454
Found a known-risky pattern (new_function_used). Review and replace if possible.
wepppy/weppcloud/static/js/underscore.js:1454 New function used
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/microservices/shape_converter/ui/app.js: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 — wepppy/weppcloud/controllers_js/__tests__/csrf_bootstrap.test.js:72
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/weppcloud/controllers_js/geneva_summary_report.js:535
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 — wepppy/weppcloud/controllers_js/http.js:729
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 — wepppy/weppcloud/controllers_js/map_gl.js:1033
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 — wepppy/weppcloud/routes/command_bar/static/command-bar.js:1984
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 — wepppy/weppcloud/static-src/js/archive_console.js:245
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/weppcloud/static/js/archive_console.js:245
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/weppcloud/static/js/d3.js:8329
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 — wepppy/weppcloud/static/js/diagnostics/auth_checks.js:94
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 — wepppy/weppcloud/static/js/fork_console.js:285
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 — wepppy/weppcloud/static/js/gl-dashboard/layers/detector.js:229
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 — wepppy/weppcloud/static/js/gl-dashboard/map/basemap-controller.js:28
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/weppcloud/static/js/gl-dashboard/map/raster-utils.js:76
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 — wepppy/weppcloud/static/js/report_csv.js:30
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — wepppy/weppcloud/static/ui-lab/assets/light-D8C95Rgl.js:1
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 — wepppy/weppcloud/static/ui-lab/assets/main-nK6957WS.js:1
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 Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/settings.json
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/settings.json VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .codex/skills/README.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.codex/skills/README.md VerificationCodex instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: docs/ui-docs/vpats/AGENTS.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
docs/ui-docs/vpats/AGENTS.md VerificationAgents md
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: wepppy/webservices/dtale/AGENTS.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
wepppy/webservices/dtale/AGENTS.md VerificationAgents md
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: wepppy/weppcloud/feature_registry/AGENTS.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
wepppy/weppcloud/feature_registry/AGENTS.md VerificationAgents md
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/cap/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/preflight2/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: services/status2/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: weppcloudR/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
github/codeql-action/upload-sarif@v3 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/docs-quality.yml:196 CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in services/cap/server.js:73
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
services/cap/server.js:73 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in wepppy/query_engine/app/server.py:964
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
wepppy/query_engine/app/server.py:964 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/ash.js:86
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/ash.js:86 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/baer.js:134
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/baer.js:134 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/batch_runner.js:135
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/batch_runner.js:135 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/bootstrap_control.js:357
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/bootstrap_control.js:357 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/channel_delineation.js:70
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/channel_delineation.js:70 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/channel_gl.js:154
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/channel_gl.js:154 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/climate.js:97
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/climate.js:97 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/control_base.js:594
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/control_base.js:594 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/debris_flow.js:77
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/debris_flow.js:77 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/disturbed.js:116
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/disturbed.js:116 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/dom.js:182
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/dom.js:182 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/dss_export.js:108
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/dss_export.js:108 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/features_export.js:169
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/features_export.js:169 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/geneva.js:127
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/geneva.js:127 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/geneva_summary_report.js:645
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/geneva_summary_report.js:645 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/landuse.js:70
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/landuse.js:70 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/map_gl.js:1467
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/map_gl.js:1467 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/map_gl_feature_ui.js:48
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/map_gl_feature_ui.js:48 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/map_gl_layer_control.js:34
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/map_gl_layer_control.js:34 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/map_gl_shared.js:115
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/map_gl_shared.js:115 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/observed.js:100
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/observed.js:100 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/omni.js:221
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/omni.js:221 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/openet_ts.js:101
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/openet_ts.js:101 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/outlet_gl.js:115
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/outlet_gl.js:115 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/path_ce.js:106
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/path_ce.js:106 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/project.js:979
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/project.js:979 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/rangeland_cover.js:81
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/rangeland_cover.js:81 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/rap_ts.js:102
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/rap_ts.js:102 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/rhem.js:80
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/rhem.js:80 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/roads.js:145
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/roads.js:145 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/run_sync_dashboard.js:59
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/run_sync_dashboard.js:59 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/rusle.js:114
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/rusle.js:114 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/selection_utils.js:45
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/selection_utils.js:45 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/soil.js:66
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/soil.js:66 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/status_stream.js:282
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/status_stream.js:282 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/subcatchment_delineation.js:71
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/subcatchment_delineation.js:71 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/subcatchments_gl.js:133
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/subcatchments_gl.js:133 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/team.js:68
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/team.js:68 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/treatments.js:91
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/treatments.js:91 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/unitizer_client.js:552
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/unitizer_client.js:552 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/utils.js:235
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/utils.js:235 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/controllers_js/wepp.js:70
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/controllers_js/wepp.js:70 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/routes/command_bar/static/command-bar.js:397
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/routes/command_bar/static/command-bar.js:397 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/routes/diff/static/diff_viewer.js:339
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/routes/diff/static/diff_viewer.js:339 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static-src/js/archive_console.js:39
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static-src/js/archive_console.js:39 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/archive_console.js:39
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/archive_console.js:39 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/d3.js:2303
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/d3.js:2303 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/fork_console.js:38
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/fork_console.js:38 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/gl-dashboard.js:14
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/gl-dashboard.js:14 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/gl-dashboard/graphs/controller.js:597
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/gl-dashboard/graphs/controller.js:597 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/gl-dashboard/layers/renderer.js:519
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/gl-dashboard/layers/renderer.js:519 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/leaflet-1.71.js:1958
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/leaflet-1.71.js:1958 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/parquet_filter_builder.js:389
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/parquet_filter_builder.js:389 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/parquet_schema_preview.js:15
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/parquet_schema_preview.js:15 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/status_stream.js:288
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/status_stream.js:288 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/storm-event-analyzer/charts/hyetograph.js:84
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/storm-event-analyzer/charts/hyetograph.js:84 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/storm-event-analyzer/ui/event-table.js:7
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/storm-event-analyzer/ui/event-table.js:7 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/storm-event-analyzer/ui/frequency-table.js:9
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/storm-event-analyzer/ui/frequency-table.js:9 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/js/storm-event-analyzer/ui/hydrology-summary.js:7
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/js/storm-event-analyzer/ui/hydrology-summary.js:7 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in wepppy/weppcloud/static/pivottable/pivot.js:1015
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
wepppy/weppcloud/static/pivottable/pivot.js:1015 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'domparser_html_parse' in wepppy/weppcloud/routes/command_bar/static/command-bar.js:352
Found a known-risky pattern (domparser_html_parse). Review and replace if possible.
wepppy/weppcloud/routes/command_bar/static/command-bar.js:352 Domparser html parse
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/ash.js:93
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/ash.js:93 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/baer.js:141
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/baer.js:141 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/channel_delineation.js:77
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/channel_delineation.js:77 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/channel_gl.js:161
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/channel_gl.js:161 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/climate.js:104
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/climate.js:104 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/control_base.js:610
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/control_base.js:610 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/debris_flow.js:84
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/debris_flow.js:84 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/disturbed.js:123
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/disturbed.js:123 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/dss_export.js:115
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/dss_export.js:115 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/features_export.js:176
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/features_export.js:176 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/geneva.js:134
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/geneva.js:134 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/landuse.js:77
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/landuse.js:77 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/map_gl_shared.js:123
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/map_gl_shared.js:123 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/observed.js:107
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/observed.js:107 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/omni.js:228
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/omni.js:228 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/openet_ts.js:108
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/openet_ts.js:108 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/outlet_gl.js:122
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/outlet_gl.js:122 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/path_ce.js:113
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/path_ce.js:113 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/rangeland_cover.js:88
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/rangeland_cover.js:88 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/rap_ts.js:109
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/rap_ts.js:109 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/rhem.js:87
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/rhem.js:87 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/roads.js:152
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/roads.js:152 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/rusle.js:121
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/rusle.js:121 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/selection_utils.js:52
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/selection_utils.js:52 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/soil.js:73
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/soil.js:73 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/subcatchment_delineation.js:78
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/subcatchment_delineation.js:78 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/subcatchments_gl.js:140
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/subcatchments_gl.js:140 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/team.js:75
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/team.js:75 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/treatments.js:98
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/treatments.js:98 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in wepppy/weppcloud/controllers_js/wepp.js:77
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
wepppy/weppcloud/controllers_js/wepp.js:77 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in wepppy/all_your_base/geo/geo.py:145
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
wepppy/all_your_base/geo/geo.py:145 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in wepppy/au/landuse_201011/__init__.py:30
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
wepppy/au/landuse_201011/__init__.py:30 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in wepppy/au/soils/asris_soil_grids/scripts/make_gdalinfo_jsons.py:27
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
wepppy/au/soils/asris_soil_grids/scripts/make_gdalinfo_jsons.py:27 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in wepppy/rq/wepp_rq.py:360
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
wepppy/rq/wepp_rq.py:360 Subprocess shell true
medium System graph security security conf 1.00 Insecure pattern 'weak_hash' in wepppy/nodb/mods/omni/README.md:376
Found a known-risky pattern (weak_hash). Review and replace if possible.
wepppy/nodb/mods/omni/README.md:376 Weak hash
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — buff_landuse_validation.py:24
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/mini-work-packages/20260502_rq_replay_mofe_260501_validation/run_rq_replay_mofe_validation.py:402
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/work-packages/20260303_raster_tools_crosswalk_benchmarks/notes/benchmark_harness_bw01_bw02.py:74
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/work-packages/20260522_ssurgo_corestrictions_kslast_viability/artifacts/run_corestrictions_kslast_viability.py:624
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — services/cao/ci-samurai/run_fixer_loop.py:186
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — services/cao/src/cli_agent_orchestrator/cli/commands/install.py:22
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — services/cao/src/cli_agent_orchestrator/cli/commands/launch.py:35
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — services/cao/src/cli_agent_orchestrator/mcp_server/server.py:53
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/check_broad_exceptions.py:181
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/code_quality_observability.py:92
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/run_profile_coverage_batch.py:42
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/run_pytest_sharded.py:340
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/update_stub_requirements.py:111
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/auth.py:53
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/doc.py:23
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/maintenance.py:48
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/npm.py:65
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/playwright.py:506
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/commands/python_tasks.py:120
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/wctl2/docker.py:28
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepp_runner/wepp_runner.py:354
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/au/climates/agdc/scripts/acquisition.py:48
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/au/soils/asris_2001/asris_client.py:86
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/climates/metquery_client.py:308
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/climates/prism/daily_client.py:41
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/climates/snotel/__init__.py:8
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/locales/earth/copernicus-dem-30m/scripts/build_vrt_from_stac.py:154
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/nodb/core/climate_build_helpers.py:288
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/nodb/core/ron.py:322
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/nodb/core/wepp_bootstrap_service.py:38
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/nodb/mods/rred/rred_api.py:35
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/nodb/mods/salvage_logging/burn_roads.py:13
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/profile_recorder/playback.py:169
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/rq/run_sync_rq.py:258
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/soils/ssurgo/ssurgo.py:404
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/tools/migrations/migrate_run_paths.py:131
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/tools/migrations/unroll_root_resources_batch.py:329
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/topo/wbt/wbt_topaz_emulator.py:1342
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/webservices/wmesque.py:73
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/webservices/wmesque2.py:149
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — wepppy/weppcloud/bootstrap/pre_receive.py:21
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 82 placeholder/mock markers across 34 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 10 in use
Port 10 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/theme-metrics-nightly.yml Ports
medium System graph network Security conf 1.00 Privileged port 15 in use
Port 15 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 17 in use
Port 17 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 20 in use
Port 20 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/theme-metrics-nightly.yml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 40 in use
Port 40 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 45 in use
Port 45 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 50 in use
Port 50 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
medium System graph network Security conf 1.00 Privileged port 55 in use
Port 55 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
.github/forest_workflows/playback-profiles.yml Ports
low System graph quality Maintenance conf 1.00 34 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 1053 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: gcr.io/distroless/static:nonroot
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/preflight2/Dockerfile:11 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: gcr.io/distroless/static:nonroot
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/status2/Dockerfile:12 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.25-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/preflight2/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: golang:1.25-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/status2/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:20-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
services/cap/Dockerfile:2 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.12-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
docker/Dockerfile:9 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 79 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/checkout@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
12 files, 31 locations
.github/workflows/ci-samurai-nightly-ssh.yml:27, 57, 150, 176, 183, 190, 228 (7 hits)
.github/workflows/accessibility-manual.yml:27, 127, 134 (3 hits)
.github/workflows/code-quality-observability.yml:48, 108, 118 (3 hits)
.github/workflows/broad-exception-guards.yml:37, 114 (2 hits)
.github/workflows/cloc-telemetry.yml:29, 53 (2 hits)
.github/workflows/docs-quality.yml:40, 201 (2 hits)
.github/workflows/npm-coverage-nightly.yml:17, 52 (2 hits)
.github/workflows/playwright-controllers-nightly.yml:20, 62 (2 hits)
CI/CD securitySupply chainGithub actions
low System graph security security conf 1.00 Insecure pattern 'debug_true' in wepppy/climates/daymet/daymet_singlelocation_client.py:246
Found a known-risky pattern (debug_true). Review and replace if possible.
wepppy/climates/daymet/daymet_singlelocation_client.py:246 Debug true
low System graph security security conf 1.00 Insecure pattern 'debug_true' in wepppy/webservices/rq_dashboard.py:29
Found a known-risky pattern (debug_true). Review and replace if possible.
wepppy/webservices/rq_dashboard.py:29 Debug true

Showing first 300 of 532. 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/a3ccc34d-ef6c-42a8-803b-394265d76465/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/a3ccc34d-ef6c-42a8-803b-394265d76465/

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.