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.

igorbevilaqua/vm-revisor

https://github.com/igorbevilaqua/vm-revisor · scanned 2026-06-16 02:54 UTC (2 months, 1 week ago)

41 raw signals (0 security + 41 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v2 · 41 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 59.3/100 with 88.9% coverage. It contains 222 nodes across 14 cross-layer flows, written primarily in mixed languages. Engine surfaced 41 findings — concentrated in api (14), quality (11), security (11). Risk profile is high: 0 critical, 11 high, 6 medium. Recommended next step: open the api layer findings first — that's where the highest-impact wins live.

Showing 38 of 41 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 security auth conf 1.00 Flask mutation route `api_apply` without `@login_required` — tabela_interativa.py:633
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:633 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_aprendizados_candidatos` without `@login_required` — tabela_interativa.py:754
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:754 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_aprendizados_promocoes` without `@login_required` — tabela_interativa.py:800
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:800 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_aprendizados_promover` without `@login_required` — tabela_interativa.py:813
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:813 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_aprendizados_salvar` without `@login_required` — tabela_interativa.py:779
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:779 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_bob` without `@login_required` — tabela_interativa.py:712
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:712 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_continuar` without `@login_required` — tabela_interativa.py:695
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:695 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_decisao` without `@login_required` — tabela_interativa.py:659
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:659 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_iniciar` without `@login_required` — interface.py:267
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
interface.py:267 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_navegar` without `@login_required` — tabela_interativa.py:677
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:677 securityAuth flask unauth route
high System graph security auth conf 1.00 Flask mutation route `api_pular` without `@login_required` — tabela_interativa.py:706
Flask route declares POST/PUT/DELETE/PATCH methods without an auth decorator. Add `@login_required` (Flask-Login) or equivalent.
tabela_interativa.py:706 securityAuth flask unauth route
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, ci, tests. 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 Production readiness conf 1.00 Composite production-readiness gap
Multiple low-cost hardening controls are missing together: license, ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — revisar_dinamico.py:526
`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 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 14 source file(s) (ratio 0.00). 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 249 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 quality Integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: relatorio_gdocs.py:gerar_doc, relatorio_gdocs.py:gerar_doc_lista 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.
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: corpo_para_prompt
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
aprendizados.py:221
low System graph software Dead code conf 1.00 Possibly dead Python function: gerar_doc
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
relatorio_gdocs.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: sym
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
terminal.py:127
low System graph api Wiring conf 1.00 Unused endpoint: ANY /
`tabela_interativa.py` declares `ANY /` 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 /api/apply
`tabela_interativa.py` declares `ANY /api/apply` 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 /api/aprendizados/candidatos
`tabela_interativa.py` declares `ANY /api/aprendizados/candidatos` 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 /api/aprendizados/promocoes
`tabela_interativa.py` declares `ANY /api/aprendizados/promocoes` 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 /api/aprendizados/promover
`tabela_interativa.py` declares `ANY /api/aprendizados/promover` 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 /api/aprendizados/salvar
`tabela_interativa.py` declares `ANY /api/aprendizados/salvar` 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 /api/bob
`tabela_interativa.py` declares `ANY /api/bob` 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 /api/continuar
`tabela_interativa.py` declares `ANY /api/continuar` 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 /api/dados
`tabela_interativa.py` declares `ANY /api/dados` 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 /api/decisao
`tabela_interativa.py` declares `ANY /api/decisao` 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 /api/iniciar
`interface.py` declares `ANY /api/iniciar` 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 /api/navegar
`tabela_interativa.py` declares `ANY /api/navegar` 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 /api/pular
`tabela_interativa.py` declares `ANY /api/pular` 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 /api/status
`interface.py` declares `ANY /api/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 quality Complexity conf 1.00 Very large file: tabela_interativa.py (2739 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/58f9c16c-61f6-4ed3-8424-0837b07cf9cb/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/58f9c16c-61f6-4ed3-8424-0837b07cf9cb/

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.