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.

yosoyluisfernando/lf-automatizador

https://github.com/yosoyluisfernando/lf-automatizador · scanned 2026-06-16 01:07 UTC (2 months, 1 week ago)

106 raw signals (0 security + 106 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

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

Showing 78 of 106 actionable findings. 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 https://api.github.com/repos/yosoyluisfernando/lf-automatizador/releases/latest (frontend/render.js:15715)
`frontend/render.js:15715` calls `GET https://api.github.com/repos/yosoyluisfernando/lf-automatizador/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/yosoyluisfernando/lf-…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.open-meteo.com/v1/forecast?latitude=${latitude}&longitude=${longitude}&current=temperature_2m,relative_humidity_2m&temperature_unit=${unitStr} (frontend/render.js:11741)
`frontend/render.js:11741` calls `GET https://api.open-meteo.com/v1/forecast?latitude=${latitude}&longitude=${longitude}&current=temperature_2m,relative_humidity_2m&temperature_unit=${unitStr}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://api.open-meteo.com/v1/forecast?latitude=${latitude}&longitude=${longitude}&current=temperature_2m,relative_humidity_2m&temperature_unit=${unitStr} (frontend/settings.js:299)
`frontend/settings.js:299` calls `GET https://api.open-meteo.com/v1/forecast?latitude=${latitude}&longitude=${longitude}&current=temperature_2m,relative_humidity_2m&temperature_unit=${unitStr}` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized …
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(query)}&count=5&language=es&format=json (frontend/settings.js:248)
`frontend/settings.js:248` calls `GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(query)}&count=5&language=es&format=json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/geocoding…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(queryCity)}&count=1&language=es&format=json (frontend/render.js:11723)
`frontend/render.js:11723` calls `GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(queryCity)}&count=1&language=es&format=json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/geoco…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(queryCity)}&count=1&language=es&format=json (frontend/settings.js:282)
`frontend/settings.js:282` calls `GET https://geocoding-api.open-meteo.com/v1/search?name=${encodeURIComponent(queryCity)}&count=1&language=es&format=json` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/geoco…
Dangling fetchFetch
high System graph api Wiring conf 1.00 Dangling fetch: POST https://accounts.spotify.com/api/token (main.js:1638)
`main.js:1638` calls `POST https://accounts.spotify.com/api/token` but no backend route matches that path. This is a runtime 404 waiting to happen. Tool: fetch Normalized path used for matching: `/https:/accounts.spotify.com/api/token` If this points at an external API, prefix it with `https://` s…
Dangling fetchFetch
high System graph security auth conf 1.00 Flask mutation route `metadata` without `@login_required` — backend/engine.py:41
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
backend/engine.py:41 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `pause` without `@login_required` — backend/engine.py:31
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
backend/engine.py:31 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `play` without `@login_required` — backend/engine.py:17
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
backend/engine.py:17 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `stop` without `@login_required` — backend/engine.py:36
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
backend/engine.py:36 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `volume` without `@login_required` — backend/engine.py:60
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
backend/engine.py:60 securityAuth flask unauth route
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — backend/meta_net_worker.js:100
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 — backend/services/artists.js:792
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 — frontend/render.js:11723
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 — frontend/settings.js:282
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 — main.js:1638
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 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 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 'direct_innerhtml_assignment' in frontend/artist_card.js:150
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/artist_card.js:150 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/artist_catalog.js:56
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/artist_catalog.js:56 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/audio_editor.js:64
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/audio_editor.js:64 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/auxiliary_playlists.js:1247
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/auxiliary_playlists.js:1247 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/calendar.js:144
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/calendar.js:144 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/cartwall.js:320
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/cartwall.js:320 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/commercial_manager.js:289
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/commercial_manager.js:289 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/consola.js:49
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/consola.js:49 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/encoder.js:260
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/encoder.js:260 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/event_editor.js:37
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/event_editor.js:37 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/event_groups.js:62
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/event_groups.js:62 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/file_types_manager.js:97
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/file_types_manager.js:97 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/genre_editor.js:105
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/genre_editor.js:105 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/i18n.js:109
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/i18n.js:109 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/libreria.js:575
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/libreria.js:575 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/main_library_search.js:77
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/main_library_search.js:77 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/playlist_generator.js:90
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/playlist_generator.js:90 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/render.js:780
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/render.js:780 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/reportes.js:67
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/reportes.js:67 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/separacion_musical.js:60
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/separacion_musical.js:60 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/settings.js:84
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/settings.js:84 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in frontend/task_manager.js:33
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
frontend/task_manager.js:33 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/audio_analysis_worker.js:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/audio_analysis_worker.js:2 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/commercial_scan_worker.js:4
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/commercial_scan_worker.js:4 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/stream_proxy.js:70
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/stream_proxy.js:70 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/utils/ffmpeg_resolver.js:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/utils/ffmpeg_resolver.js:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/utils/windows_authenticode.js:3
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/utils/windows_authenticode.js:3 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in backend/waveform_worker.js:2
Found a known-risky pattern (node_child_process). Review and replace if possible.
backend/waveform_worker.js:2 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in main.js:5
Found a known-risky pattern (node_child_process). Review and replace if possible.
main.js:5 Node child process
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 33 placeholder/mock markers across 8 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
6 test file(s) for 97 source file(s) (ratio 0.06). Consider adding integration or unit tests for critical paths.
Coverage
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 9 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 security security conf 1.00 Insecure pattern 'document_write' in raw_player.html:320
Found a known-risky pattern (document_write). Review and replace if possible.
raw_player.html:320 Document write
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `isVeryOld` in frontend/render.js:5433
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 `needsLegacy` in backend/ipc/windows.js:586
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 `rest_v1` in main.js:1803
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 `shoutcast2_legacy` in backend/encoder/config.js:3
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 `srv_legacy` in frontend/encoder.js:283
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 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 frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — backend/services/genres.js:22
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — database.js:643
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — fix_render.js:51
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/render.js:3904
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — patch_locales.js:261
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph api Wiring conf 1.00 Unused endpoint: ANY /metadata
`backend/engine.py` declares `ANY /metadata` 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: ANY /pause
`backend/engine.py` declares `ANY /pause` 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: ANY /play
`backend/engine.py` declares `ANY /play` 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: ANY /stop
`backend/engine.py` declares `ANY /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: ANY /volume
`backend/engine.py` declares `ANY /volume` 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: audio-engine-rust/src/main.rs (5428 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: backend/ipc/windows.js (1642 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/audio_editor.js (1268 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/auxiliary_playlists.js (1883 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/consola.js (1622 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/libreria.js (1835 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/render.js (16742 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: frontend/settings.js (1454 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: main.js (2948 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/445c2fff-68ec-492b-a3a1-9dfcebe09507/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/445c2fff-68ec-492b-a3a1-9dfcebe09507/

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.