CVE-2026-46385
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditediskorotkov/avro is a fast Go Avro codec. Prior to 2.33.0, the Avro array and map decoders looped over an attacker-controlled block-count value without checking the underlying reader's error state inside the loop body. Reader.ReadBlockHeader returns the count as a Go int, which is 64-bit on amd64 / arm64 targets — so a producer can declare a block of up to math.MaxInt64 (~9.2 × 10¹⁸) elements followed by EOF (or any truncated payload), and the decoder will attempt that many no-op iterations before propagating the error. The realistic ceiling is "indefinite until the worker is killed externally" — a single hostile payload pins a CPU core until the process is OOM-killed, deadline-cancelled, or terminated. Remote, unauthenticated denial-of-service. This vulnerability is fixed in 2.33.0.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe iskorotkov/avro Go library versions prior to 2.33.0 contain a denial-of-service vulnerability in Avro array and map decoders. The decoder loops over an attacker-controlled block-count value from Reader.ReadBlockHeader without checking the underlying reader's error state inside the loop body. Since ReadBlockHeader returns count as a 64-bit int, a malicious producer can declare up to math.MaxInt64 elements, causing the decoder to attempt billions of no-op iterations before propagating any error, effectively pinning a CPU core until the process is OOM-killed, deadline-cancelled, or terminated.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- None
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Locate iskorotkov/avro in your codebaseSearch your go.mod file or run 'go list -m all | grep avro' to find the iskorotkov/avro package and its versionAffected if The package is present with a version lower than 2.33.0
-
Verify the exact version numberInspect your go.mod file for the version after 'iskorotkov/avro' (e.g., 'iskorotkov/avro v2.32.0') or run 'go list -m -json iskorotkov/avro' to retrieve the version fieldAffected if Version is listed as anything below 2.33.0 (e.g., 2.32.0, 2.31.0, etc.)
-
Confirm Avro deserialization is in useSearch your codebase for usage of avro.NewDecoder, avro.Decoder, or any type that decodes Avro data (particularly reading from untrusted sources)Affected if Code deserializes Avro data from potentially untrusted producers using array or map types
-
Identify array and map decoding pathsReview code that decodes Avro records containing array or map fields, as these trigger the vulnerable decoder loopsAffected if Your application decodes Avro schemas with array or map fields from external sources
You are affected if you use iskorotkov/avro version below 2.33.0 and decode Avro data from untrusted sources containing array or map structures.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade to iskorotkov/avro version 2.33.0 or later, which includes proper error checking within the decoder loop to prevent this DoS vector.
v2.33.0
- Identify all applications and services that import the iskorotkov/avro Go library (e.g., search go.mod files, dependency scans)
- Check the current version of iskorotkov/avro in use (run 'go list -m all' or inspect go.mod)
- Upgrade to version 2.33.0 or later (run 'go get github.com/iskorotkov/[email protected]' or 'go get github.com/iskorotkov/avro@latest')
- Run 'go mod tidy' to update go.sum and remove unused dependencies
- Verify the upgrade by running 'go list -m github.com/iskorotkov/avro' to confirm the installed version
- Run existing test suites to ensure the upgrade does not break functionality
- Redeploy updated services to production
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation2.0 h
- Testing1.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,424.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-46385 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-46385 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data