VYPR
Critical severityCISA KEVNVD Advisory· Published Apr 1, 2022· Updated Oct 21, 2025

CVE-2022-22965

CVE-2022-22965

Description

A Spring MVC or Spring WebFlux application running on JDK 9+ may be vulnerable to remote code execution (RCE) via data binding. The specific exploit requires the application to run on Tomcat as a WAR deployment. If the application is deployed as a Spring Boot executable jar, i.e. the default, it is not vulnerable to the exploit. However, the nature of the vulnerability is more general, and there may be other ways to exploit it.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
org.springframework:spring-beansMaven
< 5.2.20.RELEASE5.2.20.RELEASE
org.springframework:spring-beansMaven
>= 5.3.0, < 5.3.185.3.18
org.springframework:spring-webmvcMaven
< 5.2.20.RELEASE5.2.20.RELEASE
org.springframework:spring-webmvcMaven
>= 5.3.0, < 5.3.185.3.18
org.springframework.boot:spring-boot-starter-webMaven
< 2.5.122.5.12
org.springframework.boot:spring-boot-starter-webMaven
>= 2.6.0, < 2.6.62.6.6
org.springframework:spring-webfluxMaven
< 5.2.20.RELEASE5.2.20.RELEASE
org.springframework:spring-webfluxMaven
>= 5.3.0, < 5.3.185.3.18
org.springframework.boot:spring-boot-starter-webfluxMaven
< 2.5.122.5.12
org.springframework.boot:spring-boot-starter-webfluxMaven
>= 2.6.0, < 2.6.62.6.6

Affected products

1
  • Spring/Spring MVCdescription

Patches

1
002546b3e4b8

Refine PropertyDescriptor filtering

1 file changed · +14 4
  • spring-beans/src/main/java/org/springframework/beans/CachedIntrospectionResults.java+14 4 modified
    @@ -1,5 +1,5 @@
     /*
    - * Copyright 2002-2020 the original author or authors.
    + * Copyright 2002-2022 the original author or authors.
      *
      * Licensed under the Apache License, Version 2.0 (the "License");
      * you may not use this file except in compliance with the License.
    @@ -22,6 +22,7 @@
     import java.beans.PropertyDescriptor;
     import java.lang.reflect.Method;
     import java.lang.reflect.Modifier;
    +import java.security.ProtectionDomain;
     import java.util.Collections;
     import java.util.HashSet;
     import java.util.LinkedHashMap;
    @@ -286,9 +287,13 @@ private CachedIntrospectionResults(Class<?> beanClass) throws BeansException {
     			// This call is slow so we do it once.
     			PropertyDescriptor[] pds = this.beanInfo.getPropertyDescriptors();
     			for (PropertyDescriptor pd : pds) {
    -				if (Class.class == beanClass &&
    -						("classLoader".equals(pd.getName()) ||  "protectionDomain".equals(pd.getName()))) {
    -					// Ignore Class.getClassLoader() and getProtectionDomain() methods - nobody needs to bind to those
    +				if (Class.class == beanClass && (!"name".equals(pd.getName()) && !pd.getName().endsWith("Name"))) {
    +					// Only allow all name variants of Class properties
    +					continue;
    +				}
    +				if (pd.getPropertyType() != null && (ClassLoader.class.isAssignableFrom(pd.getPropertyType())
    +						|| ProtectionDomain.class.isAssignableFrom(pd.getPropertyType()))) {
    +					// Ignore ClassLoader and ProtectionDomain types - nobody needs to bind to those
     					continue;
     				}
     				if (logger.isTraceEnabled()) {
    @@ -337,6 +342,11 @@ private void introspectInterfaces(Class<?> beanClass, Class<?> currClass, Set<St
     						// GenericTypeAwarePropertyDescriptor leniently resolves a set* write method
     						// against a declared read method, so we prefer read method descriptors here.
     						pd = buildGenericTypeAwarePropertyDescriptor(beanClass, pd);
    +						if (pd.getPropertyType() != null && (ClassLoader.class.isAssignableFrom(pd.getPropertyType())
    +								|| ProtectionDomain.class.isAssignableFrom(pd.getPropertyType()))) {
    +							// Ignore ClassLoader and ProtectionDomain types - nobody needs to bind to those
    +							continue;
    +						}
     						this.propertyDescriptors.put(pd.getName(), pd);
     						Method readMethod = pd.getReadMethod();
     						if (readMethod != null) {
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

18

News mentions

0

No linked articles in our index yet.