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.
13 of your 44 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 11.15s · analysis 2.48s · 16.2 MB · GitHub API rate-limit (preflight)

CDrummond/lms-material

https://github.com/CDrummond/lms-material · scanned 2026-06-05 18:35 UTC (4 days, 17 hours ago) · 10 languages

197 raw signals (43 security + 154 graph) 17th percentile · Javascript · medium (20-100K LoC) System graph score 98 (lower by 46)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 17 hours ago · v2 · 104 actionable findings from 2 signal sources. 16 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 55.0 0.15 8.25
security_score 87.2 0.25 21.80
testing_score 0.0 0.20 0.00
documentation_score 80.0 0.15 12.00
practices_score 40.0 0.15 6.00
code_quality 37.9 0.10 3.79
Overall 1.00 51.8
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C- (52/100). Dimensions: security 87, maintainability 55. 43 findings (7 security). 51,038 lines analyzed.

Showing 81 of 104 actionable findings. 120 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED024] Js Eval Usage: eval() executes arbitrary code. Code injection risk.
Review and fix per the pattern semantics. See CWE-95 / for context.
3 files, 3 locations
MaterialSkin/HTML/material/html/js/constants.js:200
MaterialSkin/HTML/material/html/js/customactions.js:26
MaterialSkin/HTML/material/html/js/icon-mapping.js:31
critical Security checks security secrets conf 0.95 Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
MaterialSkin/Plugin.pm:68
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED036] Python Os System Call: os.system() invokes shell with no escaping.
Review and fix per the pattern semantics. See CWE-78 / for context.
tools/vuetify/trim.py:80
high Security checks software dependencies conf 0.90 ✓ Repobility Binary file `tools/closure-compiler/closure-compiler-v20181008.jar` committed in source repo
`tools/closure-compiler/closure-compiler-v20181008.jar` is a .jar binary (7,765,647 bytes) committed to a repo that otherwise has 72 source files. Trojan binaries inside otherwise-normal source repos are a known supply-chain attack: a compromised dependency or PR slips in a binary that gets execute…
tools/closure-compiler/closure-compiler-v20181008.jar:1
high Security checks security auth conf 0.83 Secret-like setting is echoed into a password input value
Settings screens sometimes render API keys, tokens, or passwords back into HTML/JSX password fields. That still exposes the secret to page source, browser extensions, screenshots, and DOM scraping.
MaterialSkin/HTML/EN/plugins/MaterialSkin/settings/basic.html:8
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/js/customactions.js:26
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/js/customactions.js:26 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/js/icon-mapping.js:31
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/js/icon-mapping.js:31 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/js/information.js:169
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/js/information.js:169 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/js/main.js:572
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/js/main.js:572 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/js/server.js:374
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/js/server.js:374 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in MaterialSkin/HTML/material/html/prototype.js:640
Found a known-risky pattern (eval_used). Review and replace if possible.
MaterialSkin/HTML/material/html/prototype.js:640 Eval used
low Security checks quality Error handling conf 1.00 [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
update-lang.py:93
medium Security checks quality Error handling conf 1.00 3 occurrences [ERR002] Empty Catch Block: Empty catch blocks hide errors.
Log the error or rethrow it. Use console.error() at minimum.
3 files, 3 locations
MaterialSkin/HTML/material/html/js/bottomnav.js:81
MaterialSkin/HTML/material/html/js/constants.js:200
MaterialSkin/HTML/material/html/js/currentcover.js:127
medium Security checks quality Quality Average file size is 526 lines (recommend <300)
Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle — each module should have one clear purpose.
low Security checks quality Error handling conf 0.55 ✓ Repobility 2 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
lines 53, 129
mkrel.py:53, 129 (2 hits)
Error handlingquality
high Security checks quality Quality conf 0.80 localStorage write failures are swallowed silently
localStorage quotas are small and writes can fail. Catching storage errors without a user-visible warning causes silent data loss when notes, images, or snapshots exceed quota.
MaterialSkin/HTML/material/html/js/utils.js:501
medium Security checks quality Quality conf 0.78 React interval is created without an explicit cleanup
Intervals created in React hooks or components should be cleared on unmount. Missing cleanup can keep stale callbacks alive after recording, polling, or overlay components close.
MaterialSkin/HTML/material/html/js/server.js:67
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — MaterialSkin/HTML/material/html/js/file-dialog.js:50
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 — MaterialSkin/HTML/material/html/js/player-settings-plugin.js:50
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 security conf 1.00 Insecure pattern 'weak_hash' in mkrel.py:396
Found a known-risky pattern (weak_hash). Review and replace if possible.
mkrel.py:396 Weak hash
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.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 97 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks quality Quality conf 0.60 7 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
7 files, 7 locations
MaterialSkin/HTML/material/html/js/groupplayers-dialog.js:204
MaterialSkin/HTML/material/html/js/icon-dialog.js:16
MaterialSkin/HTML/material/html/js/info-dialog.js:71
MaterialSkin/HTML/material/html/js/rating-dialog.js:99
MaterialSkin/HTML/material/html/js/savequeue-dialog.js:25
MaterialSkin/HTML/material/html/js/toolbar.js:156
MaterialSkin/HTML/material/html/js/volume.js:133
duplicationquality
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/addtoplaylist-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/advancedsearch-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/bottomnav.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/dstm-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/favorite-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/gallery.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/groupplayers-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/icon-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/info-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/mediasession.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/other/np-only.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/player-settings-plugin.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/playerlist-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/progressbar.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/randommix-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/rating-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/resizer.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/savequeue-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/splitter.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/switch.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/sync-dialog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/text-field.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/toolbar.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/ui-settings.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/volume-control.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/volume-overlay.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/volume.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/js/windowcontrols.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/clickoutside.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/clickoutside.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/intersection-observer.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/libcometd.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/longpress.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/mousetrap.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/photoswipe/photoswipe-ui-default.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/photoswipe/photoswipe.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: MaterialSkin/HTML/material/html/lib/vibrant.min.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/vuetify/VMenu.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: mkrel.py:minifyJs, mkrel.py:minify 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.
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `content_copy` in MaterialSkin/HTML/material/html/js/actions.js:158
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 frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — MaterialSkin/HTML/material/html/js/browse-functions.js:939
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 — MaterialSkin/HTML/material/html/js/rating-dialog.js:52
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 — MaterialSkin/HTML/material/html/js/utils.js:131
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 — MaterialSkin/HTML/material/html/lib/vue-lazyload.js:6
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 — MaterialSkin/HTML/material/html/lib/vue-virtual-scroller.min.js:1
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 — MaterialSkin/HTML/material/html/lib/vuetify.min.js:6
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/browse-functions.js (3506 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/browse-page.js (2742 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/browse-resp.js (2789 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/nowplaying-functions.js (1301 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/nowplaying-page.js (1614 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/queue-page.js (1882 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/server.js (1294 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/js/ui-settings.js (1202 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/lib/libcometd.js (3417 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/lib/libcometd.orig.js (3405 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: MaterialSkin/HTML/material/html/prototype.js (7594 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/6cf1c31a-1c57-4610-8f2c-949c9c02a9d6/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/6cf1c31a-1c57-4610-8f2c-949c9c02a9d6/

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.