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.

digitie/kor-travel-map

https://github.com/digitie/kor-travel-map · scanned 2026-06-17 01:57 UTC (1 month, 1 week ago)

107 raw signals (0 security + 107 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -10.1 (diff) · 73 actionable findings from 1 signal source. 34 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 66.6/100 with 100.0% coverage. It contains 6155 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 107 findings — concentrated in quality (58), software (25), security (9). Risk profile is high: 0 critical, 6 high, 8 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 55 of 73 actionable findings. 107 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.

high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/etl.py:208
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/etl.py:208 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/feature_update_requests.py:529
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/feature_update_requests.py:529 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_backup` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/admin_backups.py:345
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/admin_backups.py:345 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `load_offline_upload_request` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/offline_uploads.py:1169
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/offline_uploads.py:1169 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `mark_dagster_nux_seen` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/dagster.py:973
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/dagster.py:973 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `validate_offline_upload_request` without auth dependency — packages/kor-travel-map-api/src/kortravelmap/api/routers/offline_uploads.py:1035
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
packages/kor-travel-map-api/src/kortravelmap/api/routers/offline_uploads.py:1035 securityAuth fastapi unauth mutation
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — packages/kor-travel-map-admin/frontend/src/api/client.ts:74
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 security Agent instructions conf 1.00 Agent instruction contains unpinned remote install: AGENTS.md
Remote install commands in agent instructions are a supply-chain risk, especially when an agent can execute shell commands.
AGENTS.md:164 Supply chainAgents md
medium System graph security Agent instructions conf 1.00 Agent instruction contains unpinned remote install: SKILL.md
Remote install commands in agent instructions are a supply-chain risk, especially when an agent can execute shell commands.
SKILL.md:88 Supply chainSkill file
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 lockfile. 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 quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/check_journal_update.py:34
`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 security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 56 placeholder/mock markers across 25 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 7 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `APPDATA`, `BYPASS`, `CI`, `E2E_BASE_URL`, `KOR_TRAVEL_MAP_GIT_COMMIT`, `KOR_TRAVEL_MAP_PG_DSN_SYNC`, `NODE_ENV`. 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 25 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 cicd CI/CD security conf 1.00 7 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
4 files, 7 locations
.github/workflows/ci.yml:33, 78, 91, 126 (4 hits)
.github/workflows/frontend.yml:30
.github/workflows/lint.yml:23
.github/workflows/openapi.yml:32
CI/CD securitySupply chainGithub actions
low System graph quality Agent instructions conf 1.00 Multiple root agent instruction files without precedence
The repo has multiple top-level AI-coder instruction files. Without precedence rules, different agents may follow different policies.
Governance
low System graph quality Integrity conf 1.00 18 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: packages/kor-travel-map-dagster/src/kortravelmap/dagster/validation.py:has_errors, packages/kor-travel-map-dagster/src/kortravelmap/dagster/validation.py:has_errors This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see ht…
18 occurrences
repo-level (18 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: packages/kor-travel-map-api/src/kortravelmap/api/routers/curated.py:list_curated_features_route, packages/kor-travel-map-api/src/kortravelmap/api/routers/curated.py:list_admin_curated_features_route, packages/kor-travel-map-api/src/kortravelmap/api/ro…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: src/kortravelmap/offline_upload.py:as_payload, src/kortravelmap/offline_upload.py:as_payload, src/kortravelmap/offline_upload.py:as_payload, src/kortravelmap/offline_upload.py:as_payload This is *the* AI-coder failure mode (4× more duplication in vib…
duplicatesduplication
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: packages/kor-travel-map-admin/frontend/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
packages/kor-travel-map-admin/frontend/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: packages/kor-travel-map-user-client/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
packages/kor-travel-map-user-client/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality dependencies conf 1.00 Node manifest has dependencies but no lockfile: packages/map-marker-react/package.json
`package.json` declares dependencies, but no same-directory npm/pnpm/yarn/bun lockfile was found. Generated projects without lockfiles are less reproducible and harder to secure-scan precisely.
packages/map-marker-react/package.json LockfileReproducibilityGenerated repo pattern
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_parse_address_v2` in src/kortravelmap/geocoding.py:614
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 `get_backup` in packages/kor-travel-map-api/src/kortravelmap/api/routers/admin_backups.py:327
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 `krex_rest_area_v2` in tests/unit/test_ids.py:90
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 `model_copy` in packages/kor-travel-map-api/src/kortravelmap/api/routers/categories.py:120
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 `model_copy` in packages/kor-travel-map-api/src/kortravelmap/api/routers/mois_detail.py:97
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 `model_copy` in src/kortravelmap/providers/krheritage.py:399
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 `model_copy` in tests/unit/test_providers_visitkorea.py:211
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: datagokr_cultural_festivals_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:1081
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.
alembic/env.py:71
low System graph software Dead code conf 1.00 6 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.
6 files, 6 locations
alembic/versions/0004_fix_source_links_role_check.py:58
alembic/versions/0006_import_jobs.py:91
alembic/versions/0007_feature_merge_history.py:99
alembic/versions/0017_feature_weather_values.py:77
alembic/versions/0018_ops_logs.py:98
alembic/versions/0021_user_feature_versions.py:222
low System graph software Dead code conf 1.00 Possibly dead Python function: kma_short_forecast_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:165
low System graph software Dead code conf 1.00 Possibly dead Python function: kma_ultra_short_forecast_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:270
low System graph software Dead code conf 1.00 Possibly dead Python function: kma_ultra_short_nowcast_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:229
low System graph software Dead code conf 1.00 Possibly dead Python function: kma_weather_alerts_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:1419
low System graph software Dead code conf 1.00 Possibly dead Python function: krex_rest_area_prices_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:602
low System graph software Dead code conf 1.00 Possibly dead Python function: krex_rest_area_weather_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:636
low System graph software Dead code conf 1.00 Possibly dead Python function: krex_rest_areas_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:585
low System graph software Dead code conf 1.00 Possibly dead Python function: krex_traffic_notices_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:660
low System graph software Dead code conf 1.00 Possibly dead Python function: opinet_fuel_station_details_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:904
low System graph software Dead code conf 1.00 Possibly dead Python function: opinet_gas_station_prices_live
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py:930
low System graph software Dead code conf 1.00 7 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.
7 files, 7 locations
alembic/versions/0003_feature_consistency_reports.py:31
alembic/versions/0004_fix_source_links_role_check.py:53
alembic/versions/0006_import_jobs.py:34
alembic/versions/0007_feature_merge_history.py:35
alembic/versions/0017_feature_weather_values.py:25
alembic/versions/0018_ops_logs.py:32
alembic/versions/0021_user_feature_versions.py:27
low System graph quality Complexity conf 1.00 Very large file: packages/kor-travel-map-admin/frontend/e2e/admin-ops.spec.ts (1449 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: packages/kor-travel-map-admin/frontend/src/api/types.ts (9981 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: packages/kor-travel-map-api/src/kortravelmap/api/etl_live.py (1517 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: packages/kor-travel-map-user-client/src/types.ts (2284 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/category/_definitions.py (2126 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/client/__init__.py (1501 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/infra/admin_feature_repo.py (2518 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/infra/curated_repo.py (1891 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/infra/feature_repo.py (1907 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/kortravelmap/infra/models.py (1905 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/f04c657d-1de5-4eb7-a85a-d204837448bf/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/f04c657d-1de5-4eb7-a85a-d204837448bf/

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.