protobufjs: Denial of Service via infinite loop in .proto option parsing
Moderate severity
GitHub Reviewed
Published
Jul 4, 2026
in
protobufjs/protobuf.js
•
Updated Jul 20, 2026
Package
Affected versions
>= 7.5.0, <= 7.6.4
>= 8.0.0, <= 8.6.5
Patched versions
7.6.5
8.6.6
Description
Published by the National Vulnerability Database
Jul 8, 2026
Published to the GitHub Advisory Database
Jul 20, 2026
Reviewed
Jul 20, 2026
Last updated
Jul 20, 2026
Summary
protobufjs parsed option names by advancing through schema tokens until it reached an
=token, without checking for end of input. A crafted.protoschema that opens an option declaration but ends prematurely could cause the option parser to loop without ever terminating.This affects the reflection parsing path (
parse,Root.load,Root.loadSync).Impact
An attacker who can provide or influence
.protoschema text parsed by an application may be able to cause the parsing call to never return. Because Node.js is single-threaded, the blocked event loop prevents all other work in the process, resulting in a denial of service that persists until the process is externally terminated.Applications that only encode or decode protobuf binary data with trusted schemas are not directly affected.
Preconditions
.protoschema text influenced by an attacker.parse,Root.load, orRoot.loadSync.=assignment.Workarounds
Do not parse
.protoschemas from untrusted sources with affected versions. If untrusted schema text must be accepted, isolate parsing in a process or worker that can be safely terminated and bound it with a timeout, so a non-returning parse call cannot deny service to the rest of the application.References