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.

WL131231/Aurora-ICT

https://github.com/WL131231/Aurora-ICT · scanned 2026-06-16 00:59 UTC (2 months, 1 week ago)

211 raw signals (0 security + 211 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 182 actionable findings from 1 signal source. 29 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.7/100 with 100.0% coverage. It contains 3990 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 211 findings — concentrated in quality (87), api (53), security (33). Risk profile is high: 0 critical, 32 high, 21 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 147 of 182 actionable findings. 211 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 api Wiring conf 1.00 Dangling fetch: GET /auth/status (ui_ict/app.js:8)
`ui_ict/app.js:8` calls `GET /auth/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/auth/status` If this points at an external API, prefix it with `https://` so the matcher skips it.
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET http://127.0.0.1:8765/status (ui/js/app.js:57)
`ui/js/app.js:57` calls `GET http://127.0.0.1:8765/status` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/http:/127.0.0.1:8765/status` If this points at an external API, prefix it with `https://` so the matcher skip…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.github.com/repos/WL131231/Aurora-releases/releases/latest (website/app.js:102)
`website/app.js:102` calls `GET https://api.github.com/repos/WL131231/Aurora-releases/releases/latest` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/api.github.com/repos/wl131231/aurora-releases/releases/lat…
Dangling fetchFetch
high System graph security auth conf 1.00 FastAPI DELETE `delete_api_keys_endpoint` without auth dependency — src/aurora_ict/auth/router.py:348
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/auth/router.py:348 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_notice_admin` without auth dependency — src/aurora_ict/api/notice_router.py:103
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/notice_router.py:103 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_force_close` without auth dependency — src/aurora_ict/api/app.py:1321
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1321 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_login` without auth dependency — src/aurora_ict/api/trades_router.py:488
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/trades_router.py:488 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_logout` without auth dependency — src/aurora_ict/api/trades_router.py:519
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/trades_router.py:519 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_rebuild_sqlite` without auth dependency — src/aurora_ict/api/trades_router.py:551
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/trades_router.py:551 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_trades_backfill` without auth dependency — src/aurora_ict/api/app.py:1219
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1219 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `admin_update_license` without auth dependency — src/aurora_ict/api/trades_router.py:619
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/trades_router.py:619 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `apply_ui_update_endpoint` without auth dependency — src/aurora/interfaces/api.py:714
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:714 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cancel_pending` without auth dependency — src/aurora_ict/api/app.py:2176
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:2176 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `close_position` without auth dependency — src/aurora_ict/api/app.py:2111
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:2111 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `create_notice_admin` without auth dependency — src/aurora_ict/api/notice_router.py:74
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/notice_router.py:74 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `relaunch_via_launcher` without auth dependency — src/aurora/interfaces/api.py:1496
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:1496 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `restart_bot` without auth dependency — src/aurora/interfaces/api.py:1483
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:1483 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_api_keys_endpoint` without auth dependency — src/aurora_ict/auth/router.py:307
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/auth/router.py:307 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_credentials` without auth dependency — src/aurora_ict/api/app.py:2086
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:2086 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_daily_loss_limit` without auth dependency — src/aurora_ict/api/app.py:2064
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:2064 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_daily_profit_limit` without auth dependency — src/aurora_ict/api/app.py:2044
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:2044 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_enabled` without auth dependency — src/aurora_ict/api/app.py:1942
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1942 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_run_mode` without auth dependency — src/aurora_ict/api/app.py:1931
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1931 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `set_trade_timeframe` without auth dependency — src/aurora_ict/api/app.py:1994
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1994 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `setup_pin` without auth dependency — src/aurora_ict/auth/router.py:142
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/auth/router.py:142 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `start_bot` without auth dependency — src/aurora/interfaces/api.py:1465
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:1465 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `start_bot` without auth dependency — src/aurora_ict/api/app.py:1908
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1908 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stop_bot` without auth dependency — src/aurora/interfaces/api.py:1474
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:1474 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stop_bot` without auth dependency — src/aurora_ict/api/app.py:1921
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1921 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `test_connection` without auth dependency — src/aurora_ict/api/app.py:1950
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora_ict/api/app.py:1950 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `update_config` without auth dependency — src/aurora/interfaces/api.py:1446
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
src/aurora/interfaces/api.py:1446 securityAuth fastapi unauth mutation
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
superfly/flyctl-actions/setup-flyctl@master can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/fly-deploy.yml:39 CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — ui/js/app.js:919
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 — ui_ict/app.js:8
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 cicd CI/CD security conf 1.00 6 occurrences GitHub Action is tag-pinned rather than SHA-pinned
softprops/action-gh-release@v2 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 160, 178, 199, 208, 308, 322
.github/workflows/release.yml:160, 178, 199, 208, 308, 322 (6 hits)
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 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.
.github/workflows/release.yml CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in src/aurora/interfaces/api.py:573
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
src/aurora/interfaces/api.py:573 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in ui/js/app.js:213
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
ui/js/app.js:213 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in ui_ict/app.js:869
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
ui_ict/app.js:869 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in ui_ict/trades.html:593
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
ui_ict/trades.html:593 Direct innerhtml assignment
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/build_exe.py:143
`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 — scripts/build_launcher.py:102
`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 — src/aurora/updater.py:124
`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 — src/aurora_ict/updater.py:120
`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 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 22 placeholder/mock markers across 14 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 13 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AURORA_DATA_DIR`, `AURORA_FROM_LAUNCHER`, `AURORA_ICT_DATA_DIR`, `AURORA_ICT_FROM_LAUNCHER`, `AURORA_ICT_SECURE_COOKIE`, `AURORA_ICT_TELEGRAM_BOT_TOKEN`, `AURORA_LICENSE_API_BASE`, `AURORA_PLATFORM` + 5 more. Add them (with a placeholder/comment) …
config drift
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 62 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: python:3.11-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:19 containersPinned dependencies
low System graph cicd CI/CD security conf 1.00 8 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.
2 files, 8 locations
.github/workflows/release.yml:62, 81, 217, 244, 257, 329 (6 hits)
.github/workflows/ci.yml:26, 29 (2 hits)
CI/CD securitySupply chainGithub actions
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: scripts/phase_flip_backtest.py:load_slice, scripts/phase_backtest.py:load_slice This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
18 occurrences
repo-level (18 hits)
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/aurora/market/exchanges/binance.py:fetch_snapshot, src/aurora/market/exchanges/bybit.py:fetch_snapshot, src/aurora/market/exchanges/bitget.py:fetch_snapshot, src/aurora/market/exchanges/hyperliquid.py:fetch_snapshot This is *the* AI-coder failure…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: src/aurora/market/exchanges/bitget_series.py:fetch_series, src/aurora/market/exchanges/bybit_series.py:fetch_series, src/aurora/market/exchanges/okx_series.py:fetch_series, src/aurora/market/exchanges/series_base.py:fetch_series This is *the* AI-code…
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 `_detect_obs_legacy` in src/aurora_ict/indicators/order_block.py:198
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 `aurora_latest_release_v1` in website/app.js:73
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 `br_legacy` in tests/test_auth_users_db.py:607
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/aurora_ict/api/app.py:517
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/aurora_ict/bot/multi_user_manager.py:193
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/aurora_ict/saas.py:175
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_ema_recent_weighted_more_than_old` in tests/test_indicators.py:51
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_get_status_returns_copy` in tests/test_apk_updater.py:89
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_subscription_enforces_edge_v2` in tests/test_license_tier_settings.py:84
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: broadcast_log
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/api.py:1589
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_equity
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:432
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_positions
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:400
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_setlev
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:343
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:285
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_status
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:311
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_stop
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:298
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_togglebb
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:382
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_toggleharmonic
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:390
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_toggleichimoku
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:394
low System graph software Dead code conf 1.00 Possibly dead Python function: cmd_togglemacross
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/telegram.py:386
low System graph software Dead code conf 1.00 Possibly dead Python function: emit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/interfaces/log_buffer.py:54
low System graph software Dead code conf 1.00 Possibly dead Python function: is_auto_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora_ict_launcher/launcher.py:1129
low System graph software Dead code conf 1.00 Possibly dead Python function: is_auto_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora_launcher/launcher.py:1048
low System graph software Dead code conf 1.00 Possibly dead Python function: make_coinalyze_timeout
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/timeouts.py:95
low System graph software Dead code conf 1.00 Possibly dead Python function: min_sl_pct_by_leverage
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora/core/risk.py:176
low System graph software Dead code conf 1.00 Possibly dead Python function: quit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora_ict_launcher/launcher.py:1737
low System graph software Dead code conf 1.00 Possibly dead Python function: quit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora_launcher/launcher.py:1454
low System graph software Dead code conf 1.00 Possibly dead Python function: reset_license
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/aurora_ict_launcher/launcher.py:1274
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /api-keys
`src/aurora_ict/auth/router.py` declares `DELETE /api-keys` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`src/aurora/interfaces/api.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/session
`src/aurora_ict/api/trades_router.py` declares `GET /admin/session` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/trades
`src/aurora_ict/api/trades_router.py` declares `GET /admin/trades` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/trades/all_users
`src/aurora_ict/api/trades_router.py` declares `GET /admin/trades/all_users` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/trades/backup
`src/aurora_ict/api/trades_router.py` declares `GET /admin/trades/backup` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/trades/export
`src/aurora_ict/api/trades_router.py` declares `GET /admin/trades/export` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/trades/export-all
`src/aurora_ict/api/trades_router.py` declares `GET /admin/trades/export-all` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /admin/users
`src/aurora_ict/api/trades_router.py` declares `GET /admin/users` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /chart
`src/aurora/interfaces/api.py` declares `GET /chart` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /config
`src/aurora/interfaces/api.py` declares `GET /config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /dashboard-flow
`src/aurora/interfaces/api.py` declares `GET /dashboard-flow` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /dashboard-flow/ratios
`src/aurora/interfaces/api.py` declares `GET /dashboard-flow/ratios` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /dashboard-flow/series
`src/aurora/interfaces/api.py` declares `GET /dashboard-flow/series` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/config
`src/aurora_ict/api/app.py` declares `GET /ict/config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/daily_loss_limit
`src/aurora_ict/api/app.py` declares `GET /ict/daily_loss_limit` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/health
`src/aurora_ict/api/app.py` declares `GET /ict/health` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/markets
`src/aurora_ict/api/app.py` declares `GET /ict/markets` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/running-pairs
`src/aurora_ict/api/app.py` declares `GET /ict/running-pairs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/status
`src/aurora_ict/api/app.py` declares `GET /ict/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/trades
`src/aurora_ict/api/trades_router.py` declares `GET /ict/trades` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ict/trades/export
`src/aurora_ict/api/trades_router.py` declares `GET /ict/trades/export` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /indicators/list
`src/aurora/interfaces/api.py` declares `GET /indicators/list` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /logs
`src/aurora/interfaces/api.py` declares `GET /logs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /market-trend
`src/aurora/interfaces/api.py` declares `GET /market-trend` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /positions
`src/aurora/interfaces/api.py` declares `GET /positions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /release/latest
`src/aurora/interfaces/api.py` declares `GET /release/latest` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /stats
`src/aurora/interfaces/api.py` declares `GET /stats` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /trades
`src/aurora/interfaces/api.py` declares `GET /trades` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/login
`src/aurora_ict/api/trades_router.py` declares `POST /admin/login` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/logout
`src/aurora_ict/api/trades_router.py` declares `POST /admin/logout` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/trades/rebuild
`src/aurora_ict/api/trades_router.py` declares `POST /admin/trades/rebuild` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /admin/user/license
`src/aurora_ict/api/trades_router.py` declares `POST /admin/user/license` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /api-keys
`src/aurora_ict/auth/router.py` declares `POST /api-keys` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /config
`src/aurora/interfaces/api.py` declares `POST /config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/enabled
`src/aurora_ict/api/app.py` declares `POST /ict/enabled` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/run-mode
`src/aurora_ict/api/app.py` declares `POST /ict/run-mode` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/start
`src/aurora_ict/api/app.py` declares `POST /ict/start` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/stop
`src/aurora_ict/api/app.py` declares `POST /ict/stop` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/stop-all
`src/aurora_ict/api/app.py` declares `POST /ict/stop-all` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/test-connection
`src/aurora_ict/api/app.py` declares `POST /ict/test-connection` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /ict/timeframe
`src/aurora_ict/api/app.py` declares `POST /ict/timeframe` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /login
`src/aurora_ict/auth/router.py` declares `POST /login` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /logout
`src/aurora_ict/auth/router.py` declares `POST /logout` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /relaunch
`src/aurora/interfaces/api.py` declares `POST /relaunch` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /restart
`src/aurora/interfaces/api.py` declares `POST /restart` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /setup-pin
`src/aurora_ict/auth/router.py` declares `POST /setup-pin` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /start
`src/aurora/interfaces/api.py` declares `POST /start` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /stop
`src/aurora/interfaces/api.py` declares `POST /stop` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /update/apply_ui
`src/aurora/interfaces/api.py` declares `POST /update/apply_ui` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: src/aurora/core/strategy.py (1310 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora/interfaces/api.py (1647 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora/interfaces/bot_instance.py (1546 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora_ict/api/app.py (2670 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora_ict/auth/users_db.py (1415 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora_ict/bot/bot_ict_instance.py (3797 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora_ict_launcher/launcher.py (1951 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: src/aurora_launcher/launcher.py (1667 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_strategy.py (1619 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: ui/js/app.js (2663 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: ui_ict/app.js (2711 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/c83892de-b5c4-4a9b-8c55-fdb5f235ed70/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/c83892de-b5c4-4a9b-8c55-fdb5f235ed70/

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.