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

Scan timing: clone 5.3s · analysis 20.28s · 34.8 MB · GitHub API rate-limit (preflight)

google/guava

https://github.com/google/guava · scanned 2026-06-05 11:34 UTC (5 days, 11 hours ago) · 10 languages

158 raw signals (48 security + 110 graph) 11/13 scanners ran 73rd percentile · Java · huge (>500K LoC) System graph score 92 (lower by 11)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 11 hours ago · v2 · 69 actionable findings from 2 signal sources. 34 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 89.0 0.15 13.35
practices_score 71.0 0.15 10.65
code_quality 70.0 0.10 7.00
Overall 1.00 81.0
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. 48 findings (3 security). 826,032 lines analyzed.

Showing 57 of 69 actionable findings. 103 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.

low Security checks quality Quality conf 1.00 ✓ Repobility [MINED013] Password In Url: https://user:password@host — leaks creds via logs, referrer, error messages.
Review and fix per the pattern semantics. See CWE-200 / A07:2021 for context.
util/update_snapshot_docs.sh:8
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 2 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
lines 92, 93
.github/workflows/ci.yml:92, 93 (2 hits)
CI/CD securityworkflow secretsGitHub Actions
high Security checks software Resource exhaustion conf 1.00 3 occurrences [SEC035] Unbounded Resource Allocation — DoS risk: Allocating resources (buffers, recursion stack, large ranges) based on user input without an upper bound. Attackers send `size=10000000` to exhaust memory, or trigger expensive computation. CWE-770/400. Examples: CVE-2023-44487 (HTTP/2 Rapid Reset), countless YAML/XML billion-laughs variants.
Cap user-controlled sizes BEFORE allocation: size = min(int(request.args.get('n', 100)), MAX_SIZE) Set framework-level limits: Flask: app.config['MAX_CONTENT_LENGTH'] = 10 * 1024 * 1024 FastAPI: use middleware to enforce request size Django: DATA_UPLOAD_MAX_MEMORY_SIZE in settings.py …
3 files, 3 locations
android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java:65
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java:199
guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java:65
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/scorecard.yml CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
.github/workflows/ci.yml CI/CD securitySupply chainGithub actions
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 2 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks quality Quality conf 0.60 24 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, 13 locations
android/guava-testlib/src/com/google/common/collect/testing/google/TestStringSetMultimapGenerator.java:15, 49 (2 hits)
android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java:100
android/guava-testlib/src/com/google/common/collect/testing/ReserializingTestCollectionGenerator.java:35
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java:171
android/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java:69
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java:45
android/guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java:121
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapGetTester.java:81
duplicationquality
low System graph quality Maintenance conf 1.00 356 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.native.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: guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.native.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java (2360 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java (2428 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/cache/LocalCacheTest.java (3117 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/collect/IteratorsTest.java (1626 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/collect/MapsTest.java (1557 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java (2037 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java (1507 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java (3414 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/base/CharMatcher.java (1820 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/base/Preconditions.java (1540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/cache/CacheBuilder.java (1151 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/cache/LocalCache.java (4812 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/ImmutableSortedMap.java (1530 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/Iterators.java (1467 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/MapMakerInternalMap.java (2905 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/Maps.java (4302 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/Multimaps.java (2225 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/Sets.java (2263 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/collect/Synchronized.java (2058 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/net/MediaType.java (1399 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/reflect/TypeToken.java (1476 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/util/concurrent/ClosingFuture.java (2425 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: android/guava/src/com/google/common/util/concurrent/Futures.java (1397 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java (2360 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/cache/CacheLoadingTest.java (2428 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/cache/LocalCacheTest.java (3163 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/collect/IteratorsTest.java (1626 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/collect/MapsTest.java (1575 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/reflect/TypeTokenTest.java (2037 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java (1507 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava-tests/test/com/google/common/util/concurrent/FuturesTest.java (3414 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/base/CharMatcher.java (1836 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/base/Preconditions.java (1540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/cache/CacheBuilder.java (1147 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/cache/LocalCache.java (4985 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/AbstractMapBasedMultimap.java (1713 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/ImmutableSortedMap.java (1491 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/Iterators.java (1467 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/MapMakerInternalMap.java (2905 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/Maps.java (4504 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/Multimaps.java (2242 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/Sets.java (2330 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/collect/Synchronized.java (2209 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/net/MediaType.java (1399 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/reflect/TypeToken.java (1476 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/util/concurrent/ClosingFuture.java (2440 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: guava/src/com/google/common/util/concurrent/Futures.java (1394 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/43da04cc-e16b-4968-b120-70ab1651e071/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/43da04cc-e16b-4968-b120-70ab1651e071/

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.