CVE-2026-58263
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 · uneditedJodit Editor is a WYSIWYG editor with a built-in file browser & image editor. In versions prior to 4.12.28, the built-in clean-html sanitizer can be bypassed by a MathML/<style> carrier that hides a dangerous element from the sanitizer's element walk, so a no-interaction event handler survives into the editor value, potentially causing Mutation XSS. When an application supplies attacker-influenced HTML to the editor's value-set or insertion paths, the sanitized output still contains a live <img ... onload=...> (or another non-onerror handler such as onfocus). A consumer that renders that output (element.innerHTML = editor.value) executes the handler with no user interaction. This issue has been fixed in version 4.12.28.
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 confidenceJodit Editor's clean-html sanitizer can be bypassed using MathML/<style> constructs that hide malicious elements (specifically event handlers like onload or onfocus) from the sanitizer's element walk. This Mutation XSS allows no-interaction execution when the sanitized output is rendered via innerHTML.
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
- Changed
- Confidentiality
- Low
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
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 Jodit Editor installationSearch your codebase, dependencies, or web application for Jodit Editor files (typically in node_modules/jodit, bower_components/jodit, or loaded via CDN). Check package.json, package-lock.json, or similar dependency files for @jodit/editor or jodit packages.Affected if Jodit Editor is present in the environment
-
Determine Jodit Editor versionExamine the installed version from package.json, package-lock.json, or the jodit.min.js/jodit.js file header. Look for a version string like '4.x.x'.Affected if Version is below 4.12.28 (e.g., 4.12.27, 4.11.x, 4.10.x, etc.)
-
Confirm clean-html sanitizer is in useReview your Jodit Editor configuration. The clean-html sanitizer is enabled by default. Check if you have custom sanitize configuration or if default sanitization is in place. Look for options like sanitize: true or cleaner settings in your editor initialization.Affected if Default sanitization is active (the default behavior)
-
Check output rendering methodSearch your codebase where Jodit Editor content is displayed. Look for uses of innerHTML, outerHTML, or document.write to render the sanitized HTML output. Also check if Content-Security-Policy headers restrict unsafe-inline.Affected if Editor output is rendered using innerHTML or outerHTML without additional output encoding
You are affected if Jodit Editor version is below 4.12.28 AND the clean-html sanitizer is enabled AND the sanitized output is rendered via innerHTML, allowing event handlers hidden in MathML/style constructs to execute.
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 Jodit Editor to version 4.12.28 or later to patch the sanitizer bypass. Additionally, validate that any downstream rendering of editor output uses safe DOM methods (e.g., textContent) or additional output sanitization.
4.12.28
- Upgrade Jodit Editor to version 4.12.28 or later to resolve the Mutation XSS vulnerability in the clean-html sanitizer
- After upgrading, verify that user-supplied HTML is properly sanitized and does not contain any event handlers (onload, onfocus, etc.) in the sanitized output
- If using a package manager, update the dependency: npm install jodit@^4.12.28 or yarn add jodit@^4.12.28
- Test the editor's value-set and insertion paths to confirm the sanitization properly blocks event handlers
- Verify that any downstream consumers of editor value (e.g., element.innerHTML = editor.value) do not execute any injected event handlers
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation2.0 h
- Testing4.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,752.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-58263 — 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-58263 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