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.

AurevLan/WhatIsUp

https://github.com/AurevLan/WhatIsUp · scanned 2026-06-17 01:17 UTC (1 month, 2 weeks ago)

112 raw signals (0 security + 112 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ -15.5 (diff) · 71 actionable findings from 1 signal source. 41 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 61.2/100 with 100.0% coverage. It contains 3388 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 112 findings — concentrated in quality (42), software (30), security (25). Risk profile is high: 1 critical, 18 high, 16 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 61 of 71 actionable findings. 112 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 Possible secret in .github/workflows/ci.yml
Detected pattern matching generic_api_key. Rotate the credential and move to a secret manager.
.github/workflows/ci.yml:154
high System graph security auth conf 1.00 FastAPI POST `heartbeat_ping` without auth dependency — server/whatisup/api/v1/ping.py:21
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/ping.py:21 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `heartbeat` without auth dependency — server/whatisup/api/v1/probes.py:185
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/probes.py:185 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `push_diagnostics` without auth dependency — server/whatisup/api/v1/probes.py:301
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/probes.py:301 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `push_result` without auth dependency — server/whatisup/api/v1/probes.py:355
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/probes.py:355 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `refresh` without auth dependency — server/whatisup/api/v1/auth.py:127
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/auth.py:127 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `subscribe_status` without auth dependency — server/whatisup/api/v1/public.py:384
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/public.py:384 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `verify_totp` without auth dependency — server/whatisup/api/v1/totp.py:177
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
server/whatisup/api/v1/totp.py:177 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 JS DELETE `/admin/probe-groups/${groupId}/probes/${probeId}` admin endpoint without auth — frontend/src/api/admin.js:15
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:15 securityAuth js admin unauth
high System graph security auth conf 1.00 JS DELETE `/admin/probe-groups/${groupId}/users/${userId}` admin endpoint without auth — frontend/src/api/admin.js:17
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:17 securityAuth js admin unauth
high System graph security auth conf 1.00 JS DELETE `/admin/probe-groups/${id}` admin endpoint without auth — frontend/src/api/admin.js:13
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:13 securityAuth js admin unauth
high System graph security auth conf 1.00 JS DELETE `/admin/users/${id}` admin endpoint without auth — frontend/src/api/admin.js:7
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:7 securityAuth js admin unauth
high System graph security auth conf 1.00 JS PATCH `/admin/probe-groups/${id}` admin endpoint without auth — frontend/src/api/admin.js:12
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:12 securityAuth js admin unauth
high System graph security auth conf 1.00 JS PATCH `/admin/users/${id}` admin endpoint without auth — frontend/src/api/admin.js:6
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:6 securityAuth js admin unauth
high System graph security auth conf 1.00 JS POST `/admin/probe-groups/${groupId}/probes` admin endpoint without auth — frontend/src/api/admin.js:14
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:14 securityAuth js admin unauth
high System graph security auth conf 1.00 JS POST `/admin/probe-groups/${groupId}/users` admin endpoint without auth — frontend/src/api/admin.js:16
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:16 securityAuth js admin unauth
high System graph security auth conf 1.00 JS POST `/admin/probe-groups` admin endpoint without auth — frontend/src/api/admin.js:11
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:11 securityAuth js admin unauth
high System graph security auth conf 1.00 JS POST `/admin/users` admin endpoint without auth — frontend/src/api/admin.js:5
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:5 securityAuth js admin unauth
high System graph security auth conf 1.00 JS PUT `/admin/settings/oidc` admin endpoint without auth — frontend/src/api/admin.js:20
Admin-scoped JS route with no recognizable auth: no middleware-position guard, no router-level guard above it in this file, and no inline permission call within the first 15 lines of the handler. If auth is applied where this router is mounted, dismiss with reason `by_design` or tag the route `// p…
frontend/src/api/admin.js:20 securityAuth js admin unauth
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — extension/background.js:240
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 instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
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: frontend/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: mobile/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: tools/pre-commit/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 3 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
3 files, 3 locations
.github/workflows/mobile-release.yml
.github/workflows/release-please.yml
.github/workflows/release.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in extension/popup/popup.js:168
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
extension/popup/popup.js:168 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in frontend/src/api/client.js:46
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
frontend/src/api/client.js:46 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in frontend/src/stores/auth.js:40
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
frontend/src/stores/auth.js:40 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in frontend/src/views/OidcCallbackView.vue:58
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
frontend/src/views/OidcCallbackView.vue:58 Local storage auth token
medium System graph security security conf 1.00 Insecure pattern 'vue_v_html' in frontend/src/components/monitors/detail/MonitorRunbookTab.vue:43
Found a known-risky pattern (vue_v_html). Review and replace if possible.
frontend/src/components/monitors/detail/MonitorRunbookTab.vue:43 Vue v html
medium System graph security security conf 1.00 Insecure pattern 'vue_v_html' in frontend/src/views/IncidentsView.vue:180
Found a known-risky pattern (vue_v_html). Review and replace if possible.
frontend/src/views/IncidentsView.vue:180 Vue v html
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 23 placeholder/mock markers across 4 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Integrity conf 1.00 6 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AUTO_REGISTER_PROBE`, `DEV`, `EXTENSION_DIR`, `FCM_SERVICE_ACCOUNT_JSON`, `FCM_SERVICE_ACCOUNT_PATH`, `VITE_API_TARGET`. Add them (with a placeholder/comment) to .env.example so onboarding doesn't break.
config drift
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 15 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: eclipse-temurin:21-jdk-jammy
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
mobile/Dockerfile:8 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: nginx:1.31-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
frontend/Dockerfile:8 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: node:26-alpine
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
frontend/Dockerfile:1 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-trixie
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
tools/pre-commit/Dockerfile:8 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 4 occurrences Docker base image is tag-pinned but not digest-pinned: python:3.14-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
2 files, 4 locations
probe/Dockerfile:2, 17 (2 hits)
server/Dockerfile:2, 16 (2 hits)
containersPinned dependencies
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 11 places
Functions with the same first-5-line body hash: server/whatisup/services/channels/teams.py:send, server/whatisup/services/channels/discord.py:send, server/whatisup/services/channels/telegram.py:send, server/whatisup/services/channels/pagerduty.py:send This is *the* AI-coder failure mode (4× more d…
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: server/alembic/versions/q2r3s4t5u6v7_add_signal_channel_type.py:downgrade, server/alembic/versions/s4t5u6v7w8x9_add_fcm_channel_type.py:downgrade This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code…
8 occurrences
repo-level (8 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: server/whatisup/api/v1/incident_updates.py:acknowledge_incident, server/whatisup/api/v1/incident_updates.py:unsnooze_incident, server/whatisup/api/v1/incident_updates.py:unacknowledge_incident This is *the* AI-coder failure mode (4× more duplication …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: server/alembic/versions/b3c4d5e6f7a8_merge_heads.py:upgrade, server/alembic/versions/394eaf748eaf_merge_v032_features.py:upgrade, server/alembic/versions/e358d5d5ca4d_merge_v0110.py:upgrade, server/alembic/versions/g0h1i2j3k4l5_merge_heads.py:upgrade …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: server/alembic/versions/b3c4d5e6f7a8_merge_heads.py:downgrade, server/alembic/versions/394eaf748eaf_merge_v032_features.py:downgrade, server/alembic/versions/e358d5d5ca4d_merge_v0110.py:downgrade, server/alembic/versions/u6v7w8x9y0z1_drop_uptime_below…
duplicatesduplication
low System graph quality License conf 1.00 No license file detected
No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake.
Repo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_push_legacy` in server/tests/test_health_engine_legacy_coexistence.py:83
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `inc_old` in server/tests/test_probes.py:352
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_incident_default_trigger_kind_is_legacy` in server/tests/test_health_state_model.py:94
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: do_run_migrations
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
server/alembic/env.py:42
low System graph software Dead code conf 1.00 14 occurrences Possibly dead Python function: downgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
12 files, 12 locations
server/alembic/versions/283efc2c973a_add_probe_groups.py:85
server/alembic/versions/a0b1c2d3e4f5_alertrule_owner_required.py:61
server/alembic/versions/b2c3d4e5f6a7_v030_scenario.py:31
server/alembic/versions/c1d2e3f4a5b6_monitor_dependencies_incident_groups.py:81
server/alembic/versions/c9d0e1f2a3b4_custom_metrics.py:43
server/alembic/versions/d6e7f8a9b0c1_add_user_timezone.py:25
server/alembic/versions/e3f4a5b6c7d8_alert_rule_enabled.py:25
server/alembic/versions/f0a1b2c3d4e5_add_web_push_subscriptions.py:37
low System graph software Dead code conf 1.00 15 occurrences Possibly dead Python function: upgrade
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
12 files, 12 locations
server/alembic/versions/283efc2c973a_add_probe_groups.py:23
server/alembic/versions/a0b1c2d3e4f5_alertrule_owner_required.py:21
server/alembic/versions/b2c3d4e5f6a7_v030_scenario.py:20
server/alembic/versions/c1d2e3f4a5b6_monitor_dependencies_incident_groups.py:18
server/alembic/versions/c9d0e1f2a3b4_custom_metrics.py:21
server/alembic/versions/d6e7f8a9b0c1_add_user_timezone.py:21
server/alembic/versions/e3f4a5b6c7d8_alert_rule_enabled.py:18
server/alembic/versions/f0a1b2c3d4e5_add_web_push_subscriptions.py:20
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/src/stores/webPush.js:7
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `downgrade` (body is just `pass`/`return`) — server/alembic/versions/u6v7w8x9y0z1_drop_uptime_below.py:32
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — server/alembic/versions/394eaf748eaf_merge_v032_features.py:23
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — server/alembic/versions/b3c4d5e6f7a8_merge_heads.py:15
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — server/alembic/versions/e358d5d5ca4d_merge_v0110.py:23
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `upgrade` (body is just `pass`/`return`) — server/alembic/versions/g0h1i2j3k4l5_merge_heads.py:21
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: frontend/src/i18n/en.js (1572 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/src/i18n/fr.js (1539 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: server/whatisup/api/v1/monitors.py (1947 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
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/8f1bf2db-6b8a-4722-86cc-46c0ca9533d1/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/8f1bf2db-6b8a-4722-86cc-46c0ca9533d1/

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.