diff --git a/SOURCES/mod_security-2.9.6-CVE-2025-48866.patch b/SOURCES/mod_security-2.9.6-CVE-2025-48866.patch new file mode 100644 index 0000000..d3beddf --- /dev/null +++ b/SOURCES/mod_security-2.9.6-CVE-2025-48866.patch @@ -0,0 +1,26 @@ +From 614c6e18a734bd31a483abc2fa2faf217dcb81c3 Mon Sep 17 00:00:00 2001 +From: Ervin Hegedus +Date: Sat, 24 May 2025 12:04:39 +0200 +Subject: [PATCH] fix: add ARGS to sanitize list only if it's not added yet in + case of sanitizeArg + +--- + apache2/re_actions.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/apache2/re_actions.c b/apache2/re_actions.c +index 4a922d27f..febc4759e 100644 +--- a/apache2/re_actions.c ++++ b/apache2/re_actions.c +@@ -1455,8 +1455,9 @@ static apr_status_t msre_action_sanitizeArg_execute(modsec_rec *msr, apr_pool_t + for (i = 0; i < tarr->nelts; i++) { + msc_arg *arg = (msc_arg *)telts[i].val; + +- if (strcasecmp(sargname, arg->name) == 0) { ++ if (arg->marked_for_sanitization == 0 && strcasecmp(sargname, arg->name) == 0) { + apr_table_addn(msr->arguments_to_sanitize, arg->name, (void *)arg); ++ arg->marked_for_sanitization = 1; + } + } + + diff --git a/SPECS/mod_security.spec b/SPECS/mod_security.spec index b88d07d..e5bcc4c 100644 --- a/SPECS/mod_security.spec +++ b/SPECS/mod_security.spec @@ -10,7 +10,7 @@ Summary: Security module for the Apache HTTP Server Name: mod_security Version: 2.9.6 -Release: 2%{?dist} +Release: 2%{?dist}.1 License: ASL 2.0 URL: http://www.modsecurity.org/ Source: https://github.com/SpiderLabs/ModSecurity/releases/download/v%{version}/modsecurity-%{version}.tar.gz @@ -21,6 +21,7 @@ Patch0: modsecurity-2.9.3-lua-54.patch Patch1: modsecurity-2.9.3-apulibs.patch Patch2: mod_security-2.9.3-remote-rules-timeout.patch Patch3: mod_security-2.9.6-CVE-2025-47947.patch +Patch4: mod_security-2.9.6-CVE-2025-48866.patch Requires: httpd httpd-mmn = %{_httpd_mmn} %if 0%{?fedora} || 0%{?rhel} > 7 @@ -144,6 +145,10 @@ install -m0644 mlogc/mlogc-default.conf %{buildroot}%{_sysconfdir}/mlogc.conf %endif %changelog +* Wed Jul 09 2025 Luboš Uhliarik - 2.9.6-2.1 +- Resolves: RHEL-100102 - CVE-2025-48866 mod_security: ModSecurity + Denial of Service Vulnerability + * Thu May 29 2025 Joe Orton - 2.9.6-2 - add fix for CVE-2025-47947 - Resolves: RHEL-93016