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

Scan timing: clone 7.51s · analysis 15.59s · 101.7 MB · GitHub API rate-limit (preflight)

protocolbuffers/protobuf

https://github.com/protocolbuffers/protobuf · scanned 2026-06-05 08:30 UTC (5 days, 19 hours ago) · 10 languages

678 raw signals (196 security + 482 graph) 11/13 scanners ran 69th percentile · C · huge (>500K LoC) System graph score 90 (lower by 14)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 19 hours ago · v2 · 191 actionable findings from 2 signal sources. 221 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 58.0 0.20 11.60
documentation_score 99.0 0.15 14.85
practices_score 79.0 0.15 11.85
code_quality 26.0 0.10 2.60
Overall 1.00 75.6
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 B+ (76/100). Dimensions: security 100, maintainability 65. 196 findings (53 security). 928,086 lines analyzed.

Showing 107 of 191 actionable findings. 412 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 3 occurrences [MINED107] Missing import: `enum` used but not imported: The file uses `enum.something(...)` but never imports `enum`. This raises NameError at runtime the first time the line executes.
Add `import enum` at the top of the file.
3 files, 3 locations
python/google/protobuf/descriptor_database.py:65
python/google/protobuf/descriptor_pool.py:1049
python/google/protobuf/internal/wire_format.py:159
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
benchmarks/compare.py:59
high Security checks software dependencies conf 0.90 ✓ Repobility 25 occurrences [MINED126] Workflow container/services image `us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:9.0.0-7932bf8b25fb76a111e7257d151a6a58d5c3c671` unpinned: `container/services image: us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:9.0.0-7932bf8b25fb76a111e7257d151a6a58d5c3c671` without `@sha256:...` pulls a mutable tag at workflow-run time. Treat workflow container references with the same supply-chain discipline as Dockerfile FROM lines.
Replace with `us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:9.0.0-7932bf8b25fb76a111e7257d151a6a58d5c3c671@sha256:<digest>`. Re-pin via Dependabot Docker scope.
8 files, 25 locations
.github/workflows/test_cpp.yml:45, 49, 53, 58, 125, 191, 234, 332, +1 more (9 hits)
.github/workflows/test_java.yml:33, 40, 45, 49, 53, 108 (6 hits)
.github/workflows/test_ruby.yml:85, 92, 118, 126 (4 hits)
.github/workflows/test_php.yml:118, 150 (2 hits)
.github/workflows/test_bazel.yml:127
.github/workflows/test_python.yml:53
.github/workflows/test_rust.yml:34
.github/workflows/test_upb.yml:120
high Security checks software File upload conf 1.00 [SEC032] Unrestricted File Upload — no extension/MIME validation: File upload accepts the user's filename without validating extension, content-type, or magic bytes. Attackers upload `.php`, `.jsp`, or executable files to a web-served directory, then visit the URL to trigger RCE. CWE-434. Examples: Apache Struts (CVE-2017-9805), countless WordPress plugin RCEs.
Validate THREE things server-side: 1. Extension allowlist: ALLOWED = {'.png', '.jpg', '.pdf'} ext = Path(file.filename).suffix.lower() if ext not in ALLOWED: abort(400) 2. Magic-byte check (don't trust the extension): import magic mime = magic.from_buffer(file…
conformance/update_failure_list.py:52
high Security checks quality Quality conf 1.00 [SEC131] Eval/exec on input — Stack Overflow snippet shape (AI copy-paste): eval/exec invoked on user-controllable input — the shape of a Stack Overflow answer that an AI copy-pasted without realizing the input side became attacker-controlled. RCE. CWE-95 / CWE-94. The comment trail in AI-pasted code often retains the SO attribution comment, making this distinguishable from intentional eval.
Never eval/exec request input. For parsing structured input use `json.loads()`, `ast.literal_eval()`, or a real parser. For dynamic expressions, use a sandboxed expression library (asteval, simpleeval) with a whitelist of operations.
cmake/dependencies_generator.py:155
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 123 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml` pinned to mutable ref `@v1.0.0`: `uses: bazel-contrib/publish-to-bcr/.github/workflows/[email protected]` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions…
12 files, 115 locations
.github/workflows/test_cpp.yml:64, 69, 91, 96, 117, 123, 130, 136, +12 more (28 hits)
.github/workflows/test_objectivec.yml:53, 59, 66, 106, 114, 157, 162 (14 hits)
.github/workflows/test_php.yml:61, 66, 109, 116, 124, 142, 148, 155, +4 more (12 hits)
.github/workflows/test_ruby.yml:52, 57, 77, 83, 90, 109, 116, 124, +4 more (12 hits)
.github/workflows/test_upb.yml:47, 52, 67, 71, 91, 101, 114, 118, +1 more (9 hits)
.github/workflows/test_bazel.yml:46, 75, 99, 105, 121, 125, 141, 145 (8 hits)
.github/workflows/test_csharp.yml:22, 28, 44, 56, 66, 79, 86, 103 (8 hits)
.github/workflows/test_java.yml:65, 70, 102, 106 (8 hits)
CI/CD securitySupply chainGitHub Actions
high System graph security security conf 1.00 Insecure pattern 'exec_used' in cmake/dependencies_generator.py:155
Found a known-risky pattern (exec_used). Review and replace if possible.
cmake/dependencies_generator.py:155 Exec used
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
benchmarks/compare.py:59
medium Security checks quality Quality Average file size is 559 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.
low Security checks quality Error handling conf 0.55 ✓ Repobility 9 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
5 files, 9 locations
conformance/conformance_python.py:80, 87, 103, 112 (4 hits)
python/google/protobuf/descriptor_pool.py:652, 660 (2 hits)
python/google/protobuf/internal/python_message.py:585
python/google/protobuf/internal/testing_refleaks.py:95
python/google/protobuf/text_format.py:529
Error handlingquality
medium System graph cicd CI/CD security conf 1.00 5 occurrences 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.
5 files, 5 locations
.github/workflows/janitor.yml
.github/workflows/publish_to_bcr.yaml
.github/workflows/release_bazel_module.yaml
.github/workflows/scorecard.yml
.github/workflows/staleness_refresh.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in benchmarks/compare.py:59
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
benchmarks/compare.py:59 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — docs/upb/render.py:67
`subprocess.check_output(...)` 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 quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — python/protobuf_distutils/protobuf_distutils/generate_py_protobufs.py:130
`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 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 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, 17 locations
csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.pb.cs:38, 93, 151 (3 hits)
csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.pb.cs:47, 102 (2 hits)
csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.pb.cs:107, 165 (2 hits)
csharp/src/Google.Protobuf.Test.TestProtos/UnittestLegacyFeatures.pb.cs:133, 210 (2 hits)
conformance/ConformanceJavaLite.java:23
csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/SampleMessages.cs:11
csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs:27
csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.pb.cs:120
duplicationquality
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
upb/wire/decode_fast/field_fixed.c:1
low System graph quality Maintenance conf 1.00 232 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: conformance/update_failure_list.py
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: docs/upb/render.py
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: python/google/protobuf/reflection.py
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: python/protobuf_distutils/setup.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: python/google/protobuf/message.py:ClearField, python/google/protobuf/proto.py:clear_field 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.
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: python/minimal_test.py:testExtensionIter, python/google/protobuf/internal/reflection_test.py:testExtensionDelete, python/google/protobuf/internal/reflection_test.py:testExtensionIter This is *the* AI-coder failure mode (4× more duplication in vibe-co…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: python/google/protobuf/text_format.py:PrintField, python/google/protobuf/text_format.py:PrintFieldValue, python/google/protobuf/text_format.py:PrintField, python/google/protobuf/text_format.py:PrintFieldValue This is *the* AI-coder failure mode (4× m…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: python/google/protobuf/descriptor.py:CopyToProto, python/google/protobuf/descriptor.py:CopyToProto, python/google/protobuf/descriptor.py:CopyToProto, python/google/protobuf/descriptor.py:CopyToProto This is *the* AI-coder failure mode (4× more duplic…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_Deprecated` in python/google/protobuf/descriptor.py:77
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `field_copy` in python/google/protobuf/internal/python_message.py:627
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `is_deprecated` in python/google/protobuf/internal/descriptor_test.py:151
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `js_dict_copy` in python/google/protobuf/internal/json_format_test.py:1682
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: archive_override
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:108
low System graph software Dead code conf 1.00 Possibly dead Python function: bazel_dep
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: bundle_fetch
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:47
low System graph software Dead code conf 1.00 Possibly dead Python function: defaults
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:29
low System graph software Dead code conf 1.00 Possibly dead Python function: empty_func
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:60
low System graph software Dead code conf 1.00 Possibly dead Python function: from_specs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: git_override
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:105
low System graph software Dead code conf 1.00 Possibly dead Python function: init
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:572
low System graph software Dead code conf 1.00 Possibly dead Python function: install
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:44
low System graph software Dead code conf 1.00 Possibly dead Python function: local_path_override
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:102
low System graph software Dead code conf 1.00 Possibly dead Python function: MakeMessageMapDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:448
low System graph software Dead code conf 1.00 Possibly dead Python function: MakePrimitiveMapDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:460
low System graph software Dead code conf 1.00 Possibly dead Python function: MakeRepeatedMessageDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:499
low System graph software Dead code conf 1.00 Possibly dead Python function: MakeRepeatedScalarDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:508
low System graph software Dead code conf 1.00 Possibly dead Python function: MakeScalarDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:534
low System graph software Dead code conf 1.00 Possibly dead Python function: MakeSubMessageDefault
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/internal/python_message.py:518
low System graph software Dead code conf 1.00 Possibly dead Python function: module
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:70
low System graph software Dead code conf 1.00 Possibly dead Python function: nuget_package
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:56
low System graph software Dead code conf 1.00 Possibly dead Python function: register_toolchains
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:87
low System graph software Dead code conf 1.00 Possibly dead Python function: ReplaceHex
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/text_encoding.py:94
low System graph software Dead code conf 1.00 Possibly dead Python function: single_version_override
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:96
low System graph software Dead code conf 1.00 Possibly dead Python function: source_archive
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:53
low System graph software Dead code conf 1.00 Possibly dead Python function: spec
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:38
low System graph software Dead code conf 1.00 Possibly dead Python function: toolchain
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:32
low System graph software Dead code conf 1.00 Possibly dead Python function: TryConsumeIdentifierOrNumber
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/text_format.py:1622
low System graph software Dead code conf 1.00 Possibly dead Python function: TryConsumeUrlChars
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/text_format.py:1794
low System graph software Dead code conf 1.00 Possibly dead Python function: UnknownFields
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
python/google/protobuf/message.py:368
low System graph software Dead code conf 1.00 Possibly dead Python function: use_extension
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:99
low System graph software Dead code conf 1.00 Possibly dead Python function: use_repo
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:90
low System graph software Dead code conf 1.00 Possibly dead Python function: use_repo_rule
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cmake/dependencies_generator.py:93
low System graph quality Integrity conf 1.00 Stub function `_LogSilentMarker` (body is just `pass`/`return`) — python/google/protobuf/text_format.py:1139
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_parent` (body is just `pass`/`return`) — python/google/protobuf/descriptor.py:149
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `addSkip` (body is just `pass`/`return`) — python/google/protobuf/internal/testing_refleaks.py:37
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `defaults` (body is just `pass`/`return`) — cmake/dependencies_generator.py:29
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `DoNothing` (body is just `pass`/`return`) — python/google/protobuf/internal/thread_safe_test.py:247
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `Modified` (body is just `pass`/`return`) — python/google/protobuf/internal/message_listener.py:55
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v21.12/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25205 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v25.8/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25655 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v26.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25472 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v3.0.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (21333 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v3.11.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (24832 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v3.19.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25424 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v3.20.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25452 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v3.8.0/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (21369 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: compatibility/smoke/v32.1/legacy_gencode_test/proto3/Proto3GencodeTestProto.java (25457 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/BinaryReader.java (1720 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/ByteString.java (1867 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/CodedInputStream.java (2743 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/CodedOutputStream.java (2336 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/Descriptors.java (3780 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/FieldSet.java (1465 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/GeneratedMessage.java (3562 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java (1825 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/MessageSchema.java (4387 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/main/java/com/google/protobuf/TextFormat.java (3110 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java (1929 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/DescriptorsTest.java (1929 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java (2092 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/LargeEnumLiteTest.java (2053 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/LargeEnumTest.java (2110 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/MapForProto2Test.java (1251 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/MapTest.java (1629 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/TestUtil.java (4165 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/core/src/test/java/com/google/protobuf/TextFormatTest.java (2291 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/lite/src/test/java/com/google/protobuf/LiteTest.java (3155 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/util/src/main/java/com/google/protobuf/util/JsonFormat.java (2254 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java (2325 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/descriptor.py (1663 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/descriptor_pool_test.py (1990 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/descriptor_test.py (2008 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/json_format_test.py (1987 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/message_test.py (3403 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/python_message.py (1773 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/reflection_test.py (3619 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/internal/text_format_test.py (3465 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: python/google/protobuf/text_format.py (2089 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java (1517 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/e1cb783f-3f7f-43d8-b2ed-ab3d67b65489/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/e1cb783f-3f7f-43d8-b2ed-ab3d67b65489/

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.