CVE-2026-33418
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 · uneditedDiceBear is an avatar library for designers and developers. Prior to version 9.4.2, the `ensureSize()` function in `@dicebear/converter` used a regex-based approach to rewrite SVG `width`/`height` attributes, capping them at 2048px to prevent denial of service. This size capping could be bypassed by crafting SVG input that causes the regex to match a non-functional occurrence of `<svg` before the actual SVG root element. When the SVG is subsequently rendered via `@resvg/resvg-js` on the Node.js code path, it renders at the attacker-specified dimensions, potentially causing out-of-memory crashes. In version 9.4.2, the regex-based approach has been replaced with XML-aware processing using `fast-xml-parser` to correctly identify and modify the SVG root element's attributes. Additionally, a `fitTo` constraint has been added to the `renderAsync` call as defense-in-depth, ensuring the rendered output is always bounded regardless of SVG content.
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 @dicebear/converter library used a regex-based approach in the ensureSize() function to cap SVG dimensions at 2048px. Attackers bypassed this by crafting malicious SVGs containing a decoy '<svg' tag before the actual root element, causing the regex to match and modify the wrong element. When rendered via @resvg/resvg-js, the SVG renders at attacker-specified dimensions causing potential out-of-memory crashes.
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< 9.4.2CVSS 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.
-
Identify @dicebear/converter versionRun 'npm list @dicebear/converter' or check package.json to see the installed version of @dicebear/converterAffected if The installed version is less than 9.4.2
-
Check for SVG processing codeSearch codebase for imports or usage of @dicebear/converter, specifically look for calls to functions that process SVG imagesAffected if Code imports or uses @dicebear/converter to process SVG files
-
Verify @resvg/resvg-js usageSearch for '@resvg/resvg-js' in dependencies and code that renders SVGs using this libraryAffected if @resvg/resvg-js is used to render SVGs from @dicebear/converter output
-
Check for untrusted SVG inputInspect whether user-supplied or externally-sourced SVG files are being passed to @dicebear/converterAffected if SVGs from untrusted or external sources are processed by the library
-
Inspect ensureSize function implementationExamine the node_modules/@dicebear/converter source code for the ensureSize() function to see if it uses regex-based dimension cappingAffected if The ensureSize() function uses regex rather than XML-aware parsing to limit SVG dimensions
You are affected if @dicebear/converter version is below 9.4.2 and your application processes SVG files (especially from untrusted sources) using the vulnerable regex-based ensureSize() function with @resvg/resvg-js rendering.
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 · scoped9.4.2
Upgrade @dicebear/converter to version 9.4.2 or later, which replaces the regex approach with XML-aware parsing using fast-xml-parser and adds a fitTo constraint as defense-in-depth.
@dicebear/converter version 9.4.2 or later (upgrade entire DiceBear to version 9.4.2 or later for consistency)
- Identify all DiceBear packages in your project that depend on @dicebear/converter using `npm list @dicebear/converter` or `yarn list @dicebear/converter`
- Update the @dicebear/converter package to version 9.4.2 or later by running `npm install @dicebear/converter@^9.4.2` or `yarn add @dicebear/converter@^9.4.2`
- Run `npm install` or `yarn install` to update all transitive dependencies
- Verify the installed version matches 9.4.2 or later using `npm list @dicebear/converter`
- Test your application's avatar rendering functionality to ensure the upgrade does not break existing functionality
- If using a lockfile, commit the updated package-lock.json or yarn.lock
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation1.0 h
- Testing2.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,376.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-33418 — 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-33418 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