CVE-2023-45675
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 · uneditedstb_vorbis is a single file MIT licensed library for processing ogg vorbis files. A crafted file may trigger out of bounds write in `f->vendor[len] = (char)'\0';`. The root cause is that if the len read in `start_decoder` is `-1` and `len + 1` becomes 0 when passed to `setup_malloc`. The `setup_malloc` behaves differently when `f->alloc.alloc_buffer` is pre-allocated. Instead of returning `NULL` as in `malloc` case it shifts the pre-allocated buffer by zero and returns the currently available memory block. This issue may lead to code execution.
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 confidencestb_vorbis library contains an out-of-bounds write vulnerability in the start_decoder function. When processing a crafted Ogg Vorbis file with len=-1, the calculation len+1=0 causes setup_malloc to behave differently with pre-allocated buffers versus malloc—returning an available memory block instead of NULL, leading to memory corruption and potential code execution.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data= 1.22CVSS 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
- Local
- Complexity
- Low
- Privileges
- None
- User interaction
- Required
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/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 stb_vorbis.c in your codebaseSearch your project files for 'stb_vorbis.c' or 'stb_vorbis.h'. Check the file header comments for version information near the top of the source file.Affected if The file exists and the version is exactly 1.22, or the version string is not visible but the file is present in a project using stb_vorbis.
-
Identify if pre-allocated buffer mode is usedSearch your code for calls to stb_vorbis_open_memory or stb_vorbis_alloc. Look for patterns where a stb_vorbis_alloc structure is populated and passed to stb_vorbis_open functions, indicating pre-allocated memory is being used rather than default malloc behavior.Affected if Your code uses stb_vorbis_open_memory or manually allocates a stb_vorbis_alloc structure and passes it to stb_vorbis functions, enabling the pre-allocated buffer code path.
-
Check for Ogg Vorbis file input handlingSearch for code paths that call stb_vorbis functions like stb_vorbis_open_filename, stb_vorbis_open_memory, or stb_vorbis_decode_file with external input.Affected if Your application processes Ogg Vorbis files from external or untrusted sources through stb_vorbis.
-
Review version in dependency manifestsCheck package managers, dependency files (like package.json, conanfile.txt, CMakeLists.txt), or submodule references for stb_vorbis version 1.22.Affected if Your dependency manifest specifies stb_vorbis version 1.22 specifically.
You are affected if stb_vorbis version 1.22 is in use AND your code processes Ogg Vorbis files using pre-allocated buffers via stb_vorbis_alloc or stb_vorbis_open_memory.
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 · scopedUpdate stb_vorbis to a patched version that properly validates the length parameter and handles the zero-size allocation case. If update is not possible, avoid using pre-allocated buffers and implement input validation on Ogg Vorbis files before processing.
latest stable release of stb_vorbis from github.com/nothings/stb (post-CVE-2023-45675 fix)
- 1. Identify all files in your project that include stb_vorbis.c (or stb_vorbis.h) version 1.22
- 2. Locate the stb_vorbis source on the official repository at github.com/nothings/stb
- 3. Download or clone the latest version of stb_vorbis.c (or stb_vorbis.h) from the repository
- 4. Replace the vulnerable stb_vorbis.c version 1.22 with the latest version in your project
- 5. Rebuild and test your application to ensure the library functions correctly with the updated code
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing6.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $6,176.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2023-45675 — 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-2023-45675 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