Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-54512

jackson-databind has a PolymorphicTypeValidator bypass via generic type parameters that allows arbitrary class instantiation
Back to all
CVE

CVE-2026-54512

jackson-databind has a PolymorphicTypeValidator bypass via generic type parameters that allows arbitrary class instantiation

jackson-databind's PolymorphicTypeValidator (PTV) is the primary safety mechanism guarding polymorphic deserialization. When polymorphic typing is enabled and a type identifier contains generic parameters (i.e. the type ID string contains <), DatabindContext._resolveAndValidateGeneric() validates only the raw container class name (the substring before <) against the configured PTV.

If the container type is approved, the method parses the full canonical type string via TypeFactory.constructFromCanonical() and returns the fully parameterized type without ever validating the nested type arguments against the PTV. The nested type arguments are then resolved, instantiated, and populated as beans during deserialization.

An attacker who controls the type ID can therefore place a denied class as a generic type parameter of an allowed container — for example java.util.ArrayList<com.evil.Gadget> when only java.util.ArrayList is allow-listed. The container passes the PTV check; com.evil.Gadget is loaded via Class.forName(name, true, loader), instantiated, and its properties are set from attacker-controlled JSON. This completely bypasses an explicitly configured PTV allow-list.

This is the same vulnerability class responsible for the historical sequence of jackson-databind deserialization CVEs; here it manifests as a validator bypass rather than a missing deny-list entry.

Impact

  • Bypass of the PTV allow-list, including the recommended BasicPolymorphicTypeValidator configured with name-prefix allow rules.
  • Arbitrary class instantiation of any type assignable to the container's element/parameter position, with attacker-controlled property values (setter/field injection).
  • Potential unauthenticated remote code execution when a class with exploitable side effects (JNDI lookup, JDBC/connection-pool gadgets,TemplatesImpl-style loaders, etc.) is present on the classpath.

Applications that accept untrusted JSON and rely on a configured PTV — the documented, security-conscious configuration — are affected.

Proof of Concept

Configuration restricting polymorphic deserialization to a single safe container:

BasicPolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder()
        .allowIfSubType("java.util.ArrayList")
        .build();
ObjectMapper mapper = JsonMapper.builder()
        .polymorphicTypeValidator(ptv)
        .build();

Malicious payload (Wrapper.value is Object with @JsonTypeInfo(use = Id.CLASS, include = As.WRAPPER_ARRAY)):

{"value":["java.util.ArrayList<com.evil.EvilGadget>",[{"cmd":"calc.exe"}]]}

On vulnerable versions, com.evil.EvilGadget is instantiated and its cmd property is set, despite only java.util.ArrayList being allow-listed. On 2.18.8 / 2.21.4 / 3.1.4 the deserialization throws InvalidTypeIdException before instantiation.

Variant payloads (all bypass an ArrayList/HashMap allow-list):

| Type ID | Smuggled type position |

|---|---|

java.util.ArrayList<Evil> | list element |

java.util.HashMap<Evil,String> | map key |

java.util.HashMap<String,Evil> | map value |

java.util.ArrayList<java.util.ArrayList<Evil>> | nested element |

java.util.ArrayList<Evil[]> | array element |

---

Patches

Fixed in 2.18.82.21.4 and 3.1.4 via the changes for FasterXML/jackson-databind#5988, commit 434d6c511. The fix adds recursive validation of each non-trivial type parameter (and array element types appearing as parameters) through the full PTV chain, with documented exemptions for Object (wildcard resolution) and Enum types.

PolymorphicTypeValidator was added in 2.10.0 so vulnerability N/A for versions prior to that.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
8.1
-
3.1
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
8.1
-
3.1
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Related Resources

No items found.

References

https://github.com/FasterXML/jackson-databind/security/advisories/GHSA-j3rv-43j4-c7qm, https://nvd.nist.gov/vuln/detail/CVE-2026-54512, https://github.com/FasterXML/jackson-databind/issues/5988, https://github.com/FasterXML/jackson-databind/commit/434d6c511de7fdd9872f29157aafb6162d12d8d5, https://github.com/FasterXML/jackson-databind

Severity

8.1

CVSS Score
0
10

Basic Information

Base CVSS
8.1
EPSS Probability
0.00873%
EPSS Percentile
0.56883%
Introduced Version
3.0.0,2.10.0,3.0.0-rc1,2.19.0-rc2,2.10.0.pr1,0
Fix Available
3.1.4,2.18.8,2.21.4,2.0.0-r3,3.3.0-r3,0.27.1-r5,5.19.8-r1,6.1.8-r8,6.2.7-r1,6.1.8-r11,4.18.1-r6,2.18.1-r2,2.11.0-r6,4.0.11-r4,4.2.3-r1,4.2.2-r4,2.9.4-r17,3.0.0-r27,3.1.0-r33,3.2.3-r13,3.3.1-r5,2.9.4-r9,3.0.0-r9,3.1.0-r11,3.2.3-r9,3.3.1-r2,10.1.5-r1,3.3.0-r6,4.0.20-r1,4.1.11-r1,5.0.8-r7,4.0.20-r3,5.0.8-r2,4.2.5-r3,0.5.4-r28,0.6.3-r9,8.19.19-r0,9.3.8-r0,9.4.4-r0,3.31.0-r1,7.6.9-r6,8.4.0.253-r2,8.4.0.253-r1,4.14.2-r3,5.0.2-r1,37.0.0-r19,8.19.17-r1,9.2.8-r13,9.4.5-r3,9.5.2-r6,9.4.5-r5,9.5.2-r5,13.0.0-r1,12.9.0-r1,2.27.5-r14,2.28.4-r3,3.0.0-r1,8.14.5-r1,9.6.1-r1,1.6.0-r10,3.3.6-r14,3.3.6-r23,3.5.0-r8,2.7.0-r26,15.0.22-r13,15.1.7-r24,15.2.6-r22,16.0.13-r2,16.1.4-r5,2.572-r0,2.555.3-r2,2.568.1-r2,2.15.0-r4,5.6.3-r2,1.5.0-r3,1.5.0-r2,3.7.2-r57,3.8.1-r57,3.9.2-r8,4.0.2-r4,4.1.2-r3,4.2.1-r3,4.3.1-r1,1.0.0-r7,1.0.0-r4,4.1.2-r4,2025.4.6-r4,2026.0.4-r6,2026.1.1-r2,2025.4.6-r1,2026.0.4-r3,26.6.4-r1,6.5.1-r5,1.21.4-r9,1.22.1-r10,1.21.4-r2,1.22.1-r6,0.12.0-r36,0.5.4-r0,4.14.0-r16,9.4.2-r7,9.4.2-r6,0.1.122-r1,3.2.2-r3,3.2.2-r1,2026.05.0-r6,5.26.27-r3,26.04.4-r1,2023.40-r8,5.5.0-r11,5.5.0-r7,2.19.6-r2,3.7.0-r13,3.7.0-r12,1.5.1-r1,3.5.28-r5,26.4.7-r19,26.5.7-r9,0.5.2-r0,0.5.0-r1,3.2.0-r3,3.2.0-r4,3.3.8-r2,3.8.4-r6,2.6.0-r19,10.0.0-r6,9.10.1-r10,26.8.0.126808-r1,3.5.8-r16,4.0.3-r2,4.1.3-r3,4.2.0-r8,3.5.8-r4,0.9.0-r4,0.9.0-r3,2.0.6-r5,1.0.1-r2,1.0.1-r1,0.10.5-r17,4.3.1.2-r12,482-r0,13.9-r21,4.14.5-r4,7.3.0-r3,3.6.1-r15,3.8.6-r8,3.9.5-r8,3.9.5-r5

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading