Bug 2427941 (CVE-2026-22028)

Summary: CVE-2026-22028 preact: Preact: Arbitrary script execution via JSON serialization protection bypass
Product: [Other] Security Response Reporter: OSIDB Bzimport <bzimport>
Component: vulnerabilityAssignee: Product Security <prodsec-ir-bot>
Status: NEW --- QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: unspecifiedCC: anpicker, bparees, carogers, caswilli, chfoley, erezende, gotiwari, haoli, hasun, hkataria, jajackso, jcammara, jcantril, jfula, jgrulich, jhorak, jkoehler, jmitchel, jneedle, jowilson, jscholz, jwong, kaycoth, kegrant, koliveir, kshier, lphiri, mabashia, mvyas, nyancey, omaciel, ometelka, pbohmill, pbraun, ptisnovs, rojacob, shvarugh, simaishi, smcdonal, stcannon, swoodman, syedriko, teagle, tfister, thavo, tpopela, ttakamiy, xdharmai, yguenane
Target Milestone: ---Keywords: Security
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
A flaw was found in Preact, a lightweight web development framework. A security regression allows an attacker to bypass JSON serialization protection, leading to HTML injection. This vulnerability arises when applications process unsanitized data from external sources, allowing malicious JSON to be interpreted as valid user interface elements. If exploited, this could enable arbitrary script execution, potentially compromising user data or system integrity.
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 2427983, 2427984, 2427985, 2427991, 2427992, 2427993, 2427994, 2427995, 2427996, 2427997, 2428003, 2428004, 2428005, 2428007, 2428008, 2428010, 2427975, 2427976, 2427977, 2427978, 2427979, 2427980, 2427981, 2427982, 2427986, 2427987, 2427988, 2427989, 2427990, 2427998, 2427999, 2428000, 2428001, 2428002    
Bug Blocks:    

Description OSIDB Bzimport 2026-01-08 15:02:13 UTC
Preact, a lightweight web development framework, JSON serialization protection to prevent Virtual DOM elements from being constructed from arbitrary JSON. A regression introduced in Preact 10.26.5 caused this protection to be softened. In applications where values from JSON payloads are assumed to be strings and passed unmodified to Preact as children, a specially-crafted JSON payload could be constructed that would be incorrectly treated as a valid VNode. When this chain of failures occurs it can result in HTML injection, which can allow arbitrary script execution if not mitigated by CSP or other means. Applications using affected Preact versions are vulnerable if they meet all of the following conditions: first, pass unmodified, unsanitized values from user-modifiable data sources (APIs, databases, local storage, etc.) directly into the render tree; second assume these values are strings but the data source could return actual JavaScript objects instead of JSON strings; and third, the data source either fails to perform type sanitization AND blindly stores/returns raw objects interchangeably with strings, OR is compromised (e.g., poisoned local storage, filesystem, or database). Versions 10.26.10, 10.27.3, and 10.28.2 patch the issue. The patch versions restore the previous strict equality checks that prevent JSON-parsed objects from being treated as valid VNodes. Other mitigations are available for those who cannot immediately upgrade. Validate input types, cast or validate network data, sanitize external data, and use Content Security Policy (CSP).