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.

SUNNATBEE/eslatma

https://github.com/SUNNATBEE/eslatma · scanned 2026-06-16 00:29 UTC (2 months, 2 weeks ago)

66 raw signals (0 security + 66 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 2 weeks ago · v1 · 53 actionable findings from 1 signal source. 13 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 68.5/100 with 100.0% coverage. It contains 880 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 66 findings — concentrated in quality (29), software (22), security (9). Risk profile is low: 0 critical, 0 high, 12 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 48 of 53 actionable findings. 66 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.

medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing license. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in webapp/games.html:1146
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
webapp/games.html:1146 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/admin-mini.html:470
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/admin-mini.html:470 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/admin.html:1017
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/admin.html:1017 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/curator.html:1500
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/curator.html:1500 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/games.html:647
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/games.html:647 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/guide.html:522
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/guide.html:522 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'direct_innerhtml_assignment' in webapp/student.html:2874
Found a known-risky pattern (direct_innerhtml_assignment). Review and replace if possible.
webapp/student.html:2874 Direct innerhtml assignment
medium System graph security security conf 1.00 Insecure pattern 'insert_adjacent_html' in webapp/student.html:5157
Found a known-risky pattern (insert_adjacent_html). Review and replace if possible.
webapp/student.html:5157 Insert adjacent html
medium System graph security security conf 1.00 Insecure pattern 'local_storage_auth_token' in webapp/admin-mini.html:431
Found a known-risky pattern (local_storage_auth_token). Review and replace if possible.
webapp/admin-mini.html:431 Local storage auth token
low System graph quality Integrity conf 1.00 36 env vars used in code but missing from .env.example
Drift between code and config docs. The first few: `AI_HOMEWORK_DAILY_LIMIT`, `AI_HOMEWORK_ENABLED`, `AI_HOMEWORK_TRIGGERS`, `AI_MAX_FILE_CHARS`, `AI_MAX_IMAGES`, `AI_MAX_IMAGE_MB`, `AI_MAX_LINK_BYTES`, `AI_MAX_TOKENS` + 28 more. Add them (with a placeholder/comment) to .env.example so onboarding d…
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 hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.12-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:3 containersPinned dependencies
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 14 places
Functions with the same first-5-line body hash: routes/student_routes.py:api_me, routes/student_routes.py:api_tomorrow, routes/student_routes.py:api_homework, routes/student_routes.py:api_hw_history This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 15 places
Functions with the same first-5-line body hash: routes/admin_routes.py:api_admin_toggle_group, routes/admin_routes.py:api_admin_broadcast, routes/admin_routes.py:api_admin_reminder_set, routes/admin_routes.py:api_admin_message_student This is *the* AI-coder failure mode (4× more duplication in vib…
duplicatesduplication
low System graph quality Integrity conf 1.00 7 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scheduler.py:check_homework_prompt, scheduler.py:expire_homeworks_at_class_start 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.
7 occurrences
repo-level (7 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 8 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: scheduler.py:send_daily_reminders, scheduler.py:send_lesson_topic_prompt, scheduler.py:send_daily_leaderboard This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document w…
8 occurrences
repo-level (8 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: handlers/admin_extras.py:student_hw_history, handlers/student.py:student_view_homework, handlers/school.py:student_view_schedule, handlers/school.py:student_ask_start This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see …
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 software Dead code conf 1.00 Possibly dead Python function: approve_referral_student
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:2331
low System graph software Dead code conf 1.00 Possibly dead Python function: available_tracks
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
curriculum.py:148
low System graph software Dead code conf 1.00 Possibly dead Python function: check_class_reminders
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:474
low System graph software Dead code conf 1.00 Possibly dead Python function: check_davomat_notify
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:631
low System graph software Dead code conf 1.00 Possibly dead Python function: check_homework_prompt
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:715
low System graph software Dead code conf 1.00 Possibly dead Python function: check_inactive_students
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1422
low System graph software Dead code conf 1.00 Possibly dead Python function: cleanup_expired_homeworks
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:1186
low System graph software Dead code conf 1.00 Possibly dead Python function: cleanup_scheduler_dedup
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:1517
low System graph software Dead code conf 1.00 Possibly dead Python function: delete_student_credential
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:1586
low System graph software Dead code conf 1.00 Possibly dead Python function: expire_homeworks_at_class_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:863
low System graph software Dead code conf 1.00 Possibly dead Python function: format
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
main.py:75
low System graph software Dead code conf 1.00 Possibly dead Python function: increment_play_count
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:2292
low System graph software Dead code conf 1.00 Possibly dead Python function: is_homework_confirmed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:1854
low System graph software Dead code conf 1.00 Possibly dead Python function: reject_referral_student
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
database.py:2343
low System graph software Dead code conf 1.00 Possibly dead Python function: run_sqlite_backup_job
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1229
low System graph software Dead code conf 1.00 Possibly dead Python function: send_daily_leaderboard
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1258
low System graph software Dead code conf 1.00 Possibly dead Python function: send_homework_deadline_reminders
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:939
low System graph software Dead code conf 1.00 Possibly dead Python function: send_lesson_auto_summary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1166
low System graph software Dead code conf 1.00 Possibly dead Python function: send_lesson_topic_prompt
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:791
low System graph software Dead code conf 1.00 Possibly dead Python function: send_streak_reminders
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1459
low System graph software Dead code conf 1.00 Possibly dead Python function: send_student_homework_reminders
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:982
low System graph software Dead code conf 1.00 Possibly dead Python function: send_weekly_streak_bonus
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
scheduler.py:1498
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 — e2e-tests/webapp.spec.js:102
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: database.py (2804 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: routes/admin_routes.py (1875 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: scheduler.py (1955 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/da904d61-63c1-4d61-a073-9dca727c6503/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/da904d61-63c1-4d61-a073-9dca727c6503/

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.