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

Scan timing: clone 6.72s · analysis 2.07s · 31.9 MB · GitHub API rate-limit (preflight)

synopse/mORMot2

https://github.com/synopse/mORMot2 · scanned 2026-06-05 15:07 UTC (5 days, 1 hour ago) · 10 languages

72 raw signals (48 security + 24 graph) 11/13 scanners ran 10th percentile · C · large (100-500K LoC) System graph score 87 (lower by 32)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 1 hour ago · v2 · 30 actionable findings from 2 signal sources. 30 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 65.0 0.15 9.75
security_score 100.0 0.25 25.00
testing_score 0.0 0.20 0.00
documentation_score 65.0 0.15 9.75
practices_score 40.0 0.15 6.00
code_quality 50.0 0.10 5.00
Overall 1.00 55.5
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade C (56/100). Dimensions: security 100, maintainability 65. 48 findings (3 security). 131,584 lines analyzed.

Showing 22 of 30 actionable findings. 60 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 Security checks quality Quality conf 1.00 ✓ Repobility [MINED017] C System Call: system() invokes shell. command injection if any arg is dynamic.
Review and fix per the pattern semantics. See CWE-78 / for context.
res/static/libzlib/inflate.h:24
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED118] Dockerfile FROM `debian:bookworm-slim` not pinned by digest: `FROM debian:bookworm-slim` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM debian:bookworm-slim@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
ex/ThirdPartyDemos/martin-doyle/07-HttpDockerORM/docker/Dockerfile:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `ex/ThirdPartyDemos/tbo/05-WebMustache/WebView2Loader.dll` committed in source repo: `ex/ThirdPartyDemos/tbo/05-WebMustache/WebView2Loader.dll` is a .dll binary (114,120 bytes) committed to a repo that otherwise has 132 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 executed by build scripts.
Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source.
ex/ThirdPartyDemos/tbo/05-WebMustache/WebView2Loader.dll:1
high Security checks software dependencies conf 0.90 ✓ Repobility [MINED134] Binary file `res/static/delphillvm/delphi-linux-x64.o` committed in source repo: `res/static/delphillvm/delphi-linux-x64.o` is a .o binary (1,520 bytes) committed to a repo that otherwise has 132 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 executed by build scripts.
Audit the binary's provenance. If it's vendored library code, document it in a VENDORED.md. If it's a build artifact, add the extension to .gitignore and rebuild from source.
res/static/delphillvm/delphi-linux-x64.o:1
medium Security checks quality Quality Average file size is 997 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.
medium Security checks cicd CI/CD security conf 0.86 Database dump or local database file is included in Docker build context
Move database dumps outside the Docker build context or exclude them with .dockerignore. Keep backup and restore artifacts in private object storage or a dedicated backup workflow.
.dockerignore CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 Docker build context has no .dockerignore
Add .dockerignore with at least .git, .env, private keys, dependency folders, build outputs, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
ex/ThirdPartyDemos/martin-doyle/07-HttpDockerORM/docker/Dockerfile:1 CI/CD securitycontainers
medium System graph hardware Security conf 1.00 Dockerfile runs as root: ex/ThirdPartyDemos/martin-doyle/07-HttpDockerORM/docker/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph quality Integrity conf 1.00 2 occurrences Frontend route `/customer/:id` has no Link/navigate to it — ex/ThirdPartyDemos/dmvc-ai/51-react/frontend/src/Layout.js
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
2 occurrences
repo-level (2 hits)
Orphan pageWiring
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 data Coverage conf 1.00 ORM models found but no DB engine detected
The repo defines tables/models but no DB connection string was found. Likely lives in env vars or a config file the scanner didn't read.
low Security checks quality Quality conf 0.60 30 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.
12 files, 22 locations
res/static/liblizard/lib/lizard_decompress.c:2, 3, 4 (3 hits)
res/static/liblizard/lib/lizard_decompress.h:1, 4, 5 (3 hits)
res/static/liblizard/lib/fse_decompress.c:2, 3 (2 hits)
res/static/liblizard/lib/huf.h:3, 15 (2 hits)
res/static/liblizard/lib/huf_compress.c:2, 12 (2 hits)
res/static/liblizard/lib/huf_decompress.c:2, 12 (2 hits)
res/static/liblizard/lib/lizard_compress.c:1, 4 (2 hits)
res/static/liblizard/lib/lizard_compress.h:4, 5 (2 hits)
duplicationquality
low Security checks quality Documentation No LICENSE file
Add a LICENSE file to your repository. Use choosealicense.com to pick the right license (MIT for permissive, Apache 2.0 for patent protection, GPL for copyleft).
low Security checks quality Quality conf 0.74 robots.txt does not advertise a sitemap
Add `Sitemap: https://your-domain.example/sitemap.xml` to robots.txt.
ex/ThirdPartyDemos/dmvc-ai/12-middleware/README.md
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: debian:bookworm-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
ex/ThirdPartyDemos/martin-doyle/07-HttpDockerORM/docker/Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: ex/ThirdPartyDemos/dmvc-ai/51-react/frontend/src/services/api.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: ex/ThirdPartyDemos/tbo/05-WebMustache/Assets/ShowAlert.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Tests conf 1.00 Low test-to-source ratio
1 tests / 9 src (ratio 0.11).
low System graph api Wiring conf 1.00 Unused endpoint: GET /customers
`ex/ThirdPartyDemos/dmvc-ai/51-react/frontend/src/components/customers/Customers.js` declares `GET /customers` 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…
Unused endpoint
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/ae7e3a15-b699-45f1-b74a-bff4c8e35f4d/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ae7e3a15-b699-45f1-b74a-bff4c8e35f4d/

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.