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

Scan timing: clone 2.64s · analysis 2.51s · 0.5 MB · GitHub API rate-limit (preflight)

efureev/laravel-trees

https://github.com/efureev/laravel-trees · scanned 2026-06-05 13:27 UTC (5 days, 6 hours ago) · 10 languages

79 raw signals (53 security + 26 graph) 71st percentile · Php · small (2-20K LoC) System graph score 90 (lower by 13)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 6 hours ago · v2 · 22 actionable findings from 2 signal sources. 44 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 80.0 0.15 12.00
security_score 75.0 0.25 18.75
testing_score 85.0 0.20 17.00
documentation_score 70.0 0.15 10.50
practices_score 85.0 0.15 12.75
code_quality 61.9 0.10 6.19
Overall 1.00 77.2
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B+ (77/100). Dimensions: security 75, maintainability 80. 53 findings (12 security). 11,419 lines analyzed.

Showing 20 of 22 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.

critical Security checks cicd CI/CD security conf 0.96 3 occurrences Compose service contains a literal secret environment value
Literal secrets in Compose files are committed to source and exposed through container inspection.
lines 18, 23, 27
docker-compose.yml:18, 23, 27 (3 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.90 Database service has no persistent data volume
Database containers store data in the writable container layer unless a volume or bind mount is attached to the image's data directory. Recreating the container can lose state.
docker-compose.yml:27 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.84 Database service publishes a host port
Publishing database ports to the host increases exposure. Internal Compose networking usually only needs expose, not ports.
docker-compose.yml:27 CI/CD securitycontainers
high Security checks software dependencies conf 0.90 ✓ Repobility Dockerfile FROM `php:8.4-cli-alpine` not pinned by digest
`FROM php:8.4-cli-alpine` 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.
.docker/Dockerfile:1
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 9 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `shivammathur/setup-php` pinned to mutable ref `@v2` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
2 files, 9 locations
.github/workflows/php.yml:16, 70, 117, 122 (7 hits)
.github/workflows/release.yml:17 (2 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@master` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
.github/workflows/release.yml:14 CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 6 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@v6` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
lines 13, 28, 67, 82
.github/workflows/php.yml:13, 28, 67, 82 (6 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks software dependencies conf 0.90 ✓ Repobility Workflow container/services image `postgres:18` unpinned
`container/services image: postgres:18` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
.github/workflows/php.yml:57
high System graph cicd CI/CD security conf 1.00 GitHub Action tracks a moving branch
actions/checkout@master can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/release.yml:14 CI/CD securitySupply chainGithub actions
high Security checks cicd CI/CD security conf 0.82 Docker final stage has no non-root USER
Docker images run as root unless the image or Dockerfile switches to a non-root user.
.docker/Dockerfile:1 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
COPY . or ADD . is safer when .dockerignore excludes secrets, git history, keys, and generated artifacts.
.docker/Dockerfile:30 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.90 Dockerfile installs dependencies after copying the full source tree
When dependency installation comes after COPY ., any source change invalidates the dependency layer and makes Docker rebuild much more slowly.
.docker/Dockerfile:32 CI/CD securitycontainers
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 quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 1 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
.dockerignore exists but does not cover common secret or VCS patterns.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 2 occurrences Compose service does not declare a runtime user
If the image does not define USER internally, this service may run as root.
lines 18, 23
docker-compose.yml:18, 23 (2 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 2 occurrences Compose service lacks no-new-privileges hardening
no-new-privileges prevents processes from gaining additional privileges through setuid binaries or file capabilities.
lines 18, 23
docker-compose.yml:18, 23 (2 hits)
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 28 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, 16 locations
tests/Functional/Tree/Multi/Uuid/DeletionTest.php:22, 24 (2 hits)
tests/Functional/Tree/Multi/Uuid/MovementTest.php:12, 43 (2 hits)
tests/Functional/Tree/Uno/Ulid/DeleteTest.php:13, 25 (2 hits)
tests/Functional/Tree/Uno/Uuid/ParentsTest.php:12, 14 (2 hits)
tests/Functional/AbstractFunctionalTestCase.php:9
tests/Functional/CollectionTest.php:79
tests/Functional/Tree/Multi/PrependTest.php:22
tests/Functional/Tree/Multi/Ulid/DeletionTest.php:24
duplicationquality
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 software Dead code candidate conf 1.00 File has no detected symbols: .github/workflows/lint/rules/changelog.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
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/5c76b7da-bb5c-4354-94b3-2854b6e71199/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/5c76b7da-bb5c-4354-94b3-2854b6e71199/

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.