jackson-databind's renamed @JsonIgnore'd setters can deserialize via private fields
Moderate severity
GitHub Reviewed
Published
Jun 16, 2026
in
FasterXML/jackson-databind
•
Updated Jun 23, 2026
Description
Published to the GitHub Advisory Database
Jun 23, 2026
Reviewed
Jun 23, 2026
Last updated
Jun 23, 2026
Summary
POJOPropertiesCollector._renameProperties()allows a property with@JsonProperty("renamed")on the getter and@JsonIgnoreon the setter to be renamed rather than dropped. WithMapperFeature.INFER_PROPERTY_MUTATORSenabled (default), the private backing field is retained; during deserializationBeanDeserializerFactory.addBeanProps()seeshasField()==true, builds aFieldProperty, and makes the backing field writable. An attacker supplying the renamed JSON key writes the backing field directly, bypassing the@JsonIgnoreon the setter.Impact
POJOs combining a renamed getter with an ignored setter (a read-only-over-the-wire pattern) have that field silently set from attacker input (property tampering / mass assignment). Not a general gadget; no RCE.
Affected / Patched (verified via
git tag --contains)>= 2.21.0, < 2.21.4-> fixed in 2.21.4 (backportc3d56dd, #5968)>= 3.0.0, < 3.1.4-> fixed in 3.1.4 (#5967,e88cb17)Severity / CWE
Maintainer: minor. Reporter: HIGH. CWE-915.
Credits
Omkhar Arasaratnam (@omkhar) - finder.
References