Import from CS git
This commit is contained in:
parent
f04262fe02
commit
d63502777e
25
SOURCES/0001-Fix-CVE-2019-10086.patch
Normal file
25
SOURCES/0001-Fix-CVE-2019-10086.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
From a5be4419e2753593ddac1f7948f0731a2ce0a843 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Rob Tompkins <chtompki@gmail.com>
|
||||||
|
Date: Wed, 5 Jun 2019 20:38:37 -0400
|
||||||
|
Subject: [PATCH 1/2] Fix CVE-2019-10086
|
||||||
|
|
||||||
|
Backported from upstream commit 62e82ad92cf4818709d6044aaf257b73d42659a4
|
||||||
|
---
|
||||||
|
.../java/org/apache/commons/beanutils/PropertyUtilsBean.java | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java b/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
index 5e76d97b..36eb7f57 100644
|
||||||
|
--- a/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
+++ b/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
@@ -188,6 +188,7 @@ public class PropertyUtilsBean {
|
||||||
|
public final void resetBeanIntrospectors() {
|
||||||
|
introspectors.clear();
|
||||||
|
introspectors.add(DefaultBeanIntrospector.INSTANCE);
|
||||||
|
+ introspectors.add(SuppressPropertiesBeanIntrospector.SUPPRESS_CLASS);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
--
|
||||||
|
2.49.0
|
||||||
|
|
66
SOURCES/0002-Fix-CVE-2025-48734.patch
Normal file
66
SOURCES/0002-Fix-CVE-2025-48734.patch
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
From 863e08bed2a0ce1a6df37c4fd28482cfbc614a99 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Gary Gregory <garydgregory@gmail.com>
|
||||||
|
Date: Sun, 25 May 2025 09:07:32 -0400
|
||||||
|
Subject: [PATCH 2/2] Fix CVE-2025-48734
|
||||||
|
|
||||||
|
Backported from upstream commit 28ad955a1613ed5885870cc7da52093c1ce739dc
|
||||||
|
---
|
||||||
|
.../apache/commons/beanutils/PropertyUtilsBean.java | 1 +
|
||||||
|
.../beanutils/SuppressPropertiesBeanIntrospector.java | 11 +++++++++++
|
||||||
|
.../org/apache/commons/beanutils/package-info.java | 6 ++++++
|
||||||
|
3 files changed, 18 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java b/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
index 36eb7f57..04d99576 100644
|
||||||
|
--- a/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
+++ b/src/main/java/org/apache/commons/beanutils/PropertyUtilsBean.java
|
||||||
|
@@ -189,6 +189,7 @@ public class PropertyUtilsBean {
|
||||||
|
introspectors.clear();
|
||||||
|
introspectors.add(DefaultBeanIntrospector.INSTANCE);
|
||||||
|
introspectors.add(SuppressPropertiesBeanIntrospector.SUPPRESS_CLASS);
|
||||||
|
+ introspectors.add(SuppressPropertiesBeanIntrospector.SUPPRESS_DECLARING_CLASS);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
diff --git a/src/main/java/org/apache/commons/beanutils/SuppressPropertiesBeanIntrospector.java b/src/main/java/org/apache/commons/beanutils/SuppressPropertiesBeanIntrospector.java
|
||||||
|
index bd6b2cdc..cff34969 100644
|
||||||
|
--- a/src/main/java/org/apache/commons/beanutils/SuppressPropertiesBeanIntrospector.java
|
||||||
|
+++ b/src/main/java/org/apache/commons/beanutils/SuppressPropertiesBeanIntrospector.java
|
||||||
|
@@ -48,6 +48,17 @@ public class SuppressPropertiesBeanIntrospector implements BeanIntrospector {
|
||||||
|
public static final SuppressPropertiesBeanIntrospector SUPPRESS_CLASS =
|
||||||
|
new SuppressPropertiesBeanIntrospector(Collections.singleton("class"));
|
||||||
|
|
||||||
|
+ /**
|
||||||
|
+ * A specialized instance which is configured to suppress the special {@code class} properties of Java beans. Unintended access to the call for
|
||||||
|
+ * {@code declaringClass} (which is common to all Java {@code enum}) can be a security risk because it also allows access to the class loader. Adding this
|
||||||
|
+ * instance as {@code BeanIntrospector} to an instance of {@code PropertyUtilsBean} suppresses the {@code class} property; it can then no longer be
|
||||||
|
+ * accessed.
|
||||||
|
+ *
|
||||||
|
+ * @since 1.11.0
|
||||||
|
+ */
|
||||||
|
+ public static final SuppressPropertiesBeanIntrospector SUPPRESS_DECLARING_CLASS = new SuppressPropertiesBeanIntrospector(
|
||||||
|
+ Collections.singleton("declaringClass"));
|
||||||
|
+
|
||||||
|
/** A set with the names of the properties to be suppressed. */
|
||||||
|
private final Set<String> propertyNames;
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/apache/commons/beanutils/package-info.java b/src/main/java/org/apache/commons/beanutils/package-info.java
|
||||||
|
index 3cb9d34c..ac8d2a1f 100644
|
||||||
|
--- a/src/main/java/org/apache/commons/beanutils/package-info.java
|
||||||
|
+++ b/src/main/java/org/apache/commons/beanutils/package-info.java
|
||||||
|
@@ -444,6 +444,12 @@
|
||||||
|
* <code>SUPPRESS_CLASS</code> constant of
|
||||||
|
* <code>SuppressPropertiesBeanIntrospector</code>.</p>
|
||||||
|
*
|
||||||
|
+ * <p>Another problematic property is the {@code enum} "declaredClass" property,
|
||||||
|
+ * through which you can also access that class' class loader. The {@code SuppressPropertiesBeanIntrospector}
|
||||||
|
+ * provides {@code SUPPRESS_DECLARING_CLASS} to workaround this issue.</p>
|
||||||
|
+ *
|
||||||
|
+ * <p>Both {@code SUPPRESS_CLASS} and {@code SUPPRESS_DECLARING_CLASS} are enabled by default.</p>
|
||||||
|
+ *
|
||||||
|
* <a name="dynamic"></a>
|
||||||
|
* <h1>3. Dynamic Beans (DynaBeans)</h1>
|
||||||
|
*
|
||||||
|
--
|
||||||
|
2.49.0
|
||||||
|
|
@ -3,13 +3,17 @@
|
|||||||
|
|
||||||
Name: apache-%{short_name}
|
Name: apache-%{short_name}
|
||||||
Version: 1.9.3
|
Version: 1.9.3
|
||||||
Release: 4%{?dist}
|
Release: 5%{?dist}
|
||||||
Summary: Java utility methods for accessing and modifying the properties of arbitrary JavaBeans
|
Summary: Java utility methods for accessing and modifying the properties of arbitrary JavaBeans
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: http://commons.apache.org/%{base_name}
|
URL: http://commons.apache.org/%{base_name}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Source0: http://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
Source0: http://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||||||
|
|
||||||
|
Patch0: 0001-Fix-CVE-2019-10086.patch
|
||||||
|
Patch1: 0002-Fix-CVE-2025-48734.patch
|
||||||
|
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
BuildRequires: mvn(commons-collections:commons-collections)
|
BuildRequires: mvn(commons-collections:commons-collections)
|
||||||
BuildRequires: mvn(commons-collections:commons-collections-testframework)
|
BuildRequires: mvn(commons-collections:commons-collections-testframework)
|
||||||
@ -30,6 +34,8 @@ Summary: Javadoc for %{name}
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{short_name}-%{version}-src
|
%setup -q -n %{short_name}-%{version}-src
|
||||||
|
%patch -P0 -p1
|
||||||
|
%patch -P1 -p1
|
||||||
sed -i 's/\r//' *.txt
|
sed -i 's/\r//' *.txt
|
||||||
|
|
||||||
%pom_remove_plugin :maven-assembly-plugin
|
%pom_remove_plugin :maven-assembly-plugin
|
||||||
@ -54,6 +60,10 @@ sed -i 's/\r//' *.txt
|
|||||||
%doc LICENSE.txt NOTICE.txt
|
%doc LICENSE.txt NOTICE.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 16 2025 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.9.3-5
|
||||||
|
- Fix improper access control vulnerabilities
|
||||||
|
- Resolves: CVE-2019-10086, CVE-2025-48734
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-4
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user