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

Scan timing: clone 25.93s · analysis 14.51s · 46.7 MB · GitHub preflight 441ms

iluwatar/java-design-patterns

https://github.com/iluwatar/java-design-patterns · scanned 2026-06-05 06:51 UTC (6 days ago) · 10 languages

71 raw signals (45 security + 26 graph) 11/13 scanners ran 71st percentile · Java · large (100-500K LoC) System graph score 74 (higher by 7)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 6 days ago · v2 · 29 actionable findings from 2 signal sources. 29 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 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 80.0 0.20 16.00
documentation_score 73.0 0.15 10.95
practices_score 79.0 0.15 11.85
code_quality 80.0 0.10 8.00
Overall 1.00 80.8
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 A- (81/100). Dimensions: security 100, maintainability 60. 45 findings (14 security). 122,860 lines analyzed.

Showing 14 of 29 actionable findings. 58 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 security Deserialization conf 1.00 3 occurrences [SEC101] Unsafe Java object deserialization (ObjectInputStream): Java ObjectInputStream deserializes untrusted bytes into objects. Attacker-controlled streams trigger gadget chains (Apache Commons Collections, etc.) leading to RCE.
Avoid native Java serialization entirely. Use JSON (Jackson with default-typing OFF) or a length-limited Protobuf. If you must, set up a SerialKiller / lookahead-deserializer with a class allowlist.
3 files, 3 locations
serialized-entity/src/main/java/com/iluwatar/serializedentity/CountrySchemaSql.java:111
serialized-lob/src/main/java/com/iluwatar/slob/serializers/BlobSerializer.java:78
tolerant-reader/src/main/java/com/iluwatar/tolerantreader/RainbowFishSerializer.java:96
critical Security checks cicd CI/CD security conf 0.96 Compose service contains a literal secret environment value
Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file.
caching/docker-compose.yml:27 CI/CD securitycontainers
critical System graph security Secrets conf 1.00 Possible secret in caching/src/main/java/com/iluwatar/caching/database/MongoDb.java
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
caching/src/main/java/com/iluwatar/caching/database/MongoDb.java:48
critical System graph security Secrets conf 1.00 Possible secret in monolithic-architecture/src/main/java/com/iluwatar/monolithic/EcommerceApp.java
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
monolithic-architecture/src/main/java/com/iluwatar/monolithic/EcommerceApp.java:109
high Security checks cicd CI/CD security conf 0.84 Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
caching/docker-compose.yml:27 CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 15 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v4`: `uses: actions/checkout@v4` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
3 files, 15 locations
.github/workflows/maven-ci.yml:16, 22, 29, 38 (8 hits)
.github/workflows/maven-pr-builder.yml:19, 22, 29 (6 hits)
.github/workflows/stale.yml:10
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
[MINED115] Action `presubmit/ai-reviewer` pinned to mutable ref `@latest`: `uses: presubmit/ai-reviewer@latest` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-ch…
.github/workflows/presubmit.yml:24 CI/CD securitySupply chainGitHub Actions
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
medium Security checks cicd CI/CD security conf 0.94 Compose service `mongodb_container` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
caching/docker-compose.yml:27 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.84 Database data bind mount is inside the Docker build context
Prefer a named volume or a host path outside the build context. If a repo-local path is required, add it to .dockerignore and .gitignore and verify backups separately.
caching/docker-compose.yml:27 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.88 Database service has no healthcheck
Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command.
caching/docker-compose.yml:27 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
low Security checks quality Quality conf 0.60 4 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.
4 files, 4 locations
data-bus/src/main/java/com/iluwatar/databus/DataType.java:1
data-bus/src/main/java/com/iluwatar/databus/Member.java:1
layered-architecture/src/main/java/entity/CakeTopping.java:8
leader-election/src/main/java/com/iluwatar/leaderelection/ring/RingApp.java:22
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
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/9c02c8fa-24bc-46a7-941f-68d2483ff3fb/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/9c02c8fa-24bc-46a7-941f-68d2483ff3fb/

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.