2012-05-07 14:15:28 +02:00
|
|
|
%{!?_httpd_apxs: %{expand: %%global _httpd_apxs %%{_sbindir}/apxs}}
|
2014-01-23 11:57:00 +01:00
|
|
|
%{!?_httpd_mmn: %{expand: %%global _httpd_mmn %%(cat %{_includedir}/httpd/.mmn || echo 0-0)}}
|
2012-05-07 14:15:28 +02:00
|
|
|
# /etc/httpd/conf.d with httpd < 2.4 and defined as /etc/httpd/conf.modules.d with httpd >= 2.4
|
|
|
|
%{!?_httpd_modconfdir: %{expand: %%global _httpd_modconfdir %%{_sysconfdir}/httpd/conf.d}}
|
|
|
|
%{!?_httpd_confdir: %{expand: %%global _httpd_confdir %%{_sysconfdir}/httpd/conf.d}}
|
|
|
|
%{!?_httpd_moddir: %{expand: %%global _httpd_moddir %%{_libdir}/httpd/modules}}
|
|
|
|
|
2012-11-19 22:00:45 +01:00
|
|
|
%global with_mlogc 0%{?fedora} || 0%{?rhel} <= 6
|
|
|
|
|
2005-05-19 03:39:17 +02:00
|
|
|
Summary: Security module for the Apache HTTP Server
|
|
|
|
Name: mod_security
|
2015-02-13 13:33:30 +01:00
|
|
|
Version: 2.9.0
|
|
|
|
Release: 1%{?dist}
|
2012-05-07 11:40:10 +02:00
|
|
|
License: ASL 2.0
|
2005-05-19 03:39:17 +02:00
|
|
|
URL: http://www.modsecurity.org/
|
|
|
|
Group: System Environment/Daemons
|
2014-04-16 09:28:45 +02:00
|
|
|
Source: https://www.modsecurity.org/tarball/%{version}/modsecurity-%{version}.tar.gz
|
2005-05-19 03:39:17 +02:00
|
|
|
Source1: mod_security.conf
|
2012-11-22 16:19:21 +01:00
|
|
|
Source2: 10-mod_security.conf
|
2014-08-15 19:15:30 +02:00
|
|
|
Source3: modsecurity_localrules.conf
|
2015-02-13 13:33:30 +01:00
|
|
|
# Github PR #837
|
|
|
|
Patch0: modsecurity-2.9.0-fix-lua53-build.patch
|
2012-05-07 14:15:28 +02:00
|
|
|
Requires: httpd httpd-mmn = %{_httpd_mmn}
|
2014-11-04 17:35:47 +01:00
|
|
|
BuildRequires: httpd-devel libxml2-devel pcre-devel lua-devel
|
2015-02-13 13:33:30 +01:00
|
|
|
# Required for force recent TLS version
|
2014-11-04 17:35:47 +01:00
|
|
|
BuildRequires: curl-devel >= 7.38.0
|
2005-05-19 03:39:17 +02:00
|
|
|
|
|
|
|
%description
|
2005-07-09 02:41:23 +02:00
|
|
|
ModSecurity is an open source intrusion detection and prevention engine
|
|
|
|
for web applications. It operates embedded into the web server, acting
|
|
|
|
as a powerful umbrella - shielding web applications from attacks.
|
2005-05-19 03:39:17 +02:00
|
|
|
|
2012-11-19 22:00:45 +01:00
|
|
|
%if %with_mlogc
|
2012-05-07 11:40:10 +02:00
|
|
|
%package -n mlogc
|
|
|
|
Summary: ModSecurity Audit Log Collector
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: mod_security
|
|
|
|
|
|
|
|
%description -n mlogc
|
|
|
|
This package contains the ModSecurity Audit Log Collector.
|
2012-11-19 22:00:45 +01:00
|
|
|
%endif
|
2005-05-19 03:39:17 +02:00
|
|
|
|
2012-05-07 11:40:10 +02:00
|
|
|
%prep
|
2014-04-16 09:28:45 +02:00
|
|
|
%setup -q -n modsecurity-%{version}
|
2014-11-03 22:10:50 +01:00
|
|
|
%patch0 -p1
|
2005-05-19 03:39:17 +02:00
|
|
|
|
|
|
|
%build
|
2012-05-07 14:15:28 +02:00
|
|
|
%configure --enable-pcre-match-limit=1000000 \
|
|
|
|
--enable-pcre-match-limit-recursion=1000000 \
|
|
|
|
--with-apxs=%{_httpd_apxs}
|
2012-05-07 11:40:10 +02:00
|
|
|
# remove rpath
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
|
2008-08-12 12:01:15 +02:00
|
|
|
make %{_smp_mflags}
|
2005-05-19 03:39:17 +02:00
|
|
|
|
2014-03-01 02:30:56 +01:00
|
|
|
%check
|
2014-02-27 19:04:30 +01:00
|
|
|
# Test suite does not start because of some issue in shipped httpd config (fix upstreamed in PR #669)
|
|
|
|
# After the fix, the test suite starts but still fails
|
|
|
|
#make test
|
|
|
|
#make test-regression
|
|
|
|
|
2005-05-19 03:39:17 +02:00
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2012-05-07 11:40:10 +02:00
|
|
|
|
|
|
|
install -d %{buildroot}%{_sbindir}
|
|
|
|
install -d %{buildroot}%{_bindir}
|
2012-05-07 14:15:28 +02:00
|
|
|
install -d %{buildroot}%{_httpd_moddir}
|
2012-05-07 11:40:10 +02:00
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/
|
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/activated_rules
|
2014-08-15 19:15:30 +02:00
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/local_rules
|
2012-05-07 11:40:10 +02:00
|
|
|
|
2012-05-07 14:15:28 +02:00
|
|
|
install -m0755 apache2/.libs/mod_security2.so %{buildroot}%{_httpd_moddir}/mod_security2.so
|
|
|
|
|
|
|
|
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
|
|
|
# 2.4-style
|
2012-11-22 16:19:21 +01:00
|
|
|
install -Dp -m0644 %{SOURCE2} %{buildroot}%{_httpd_modconfdir}/10-mod_security.conf
|
|
|
|
install -Dp -m0644 %{SOURCE1} %{buildroot}%{_httpd_confdir}/mod_security.conf
|
|
|
|
sed -i 's/Include/IncludeOptional/' %{buildroot}%{_httpd_confdir}/mod_security.conf
|
2012-05-07 14:15:28 +02:00
|
|
|
%else
|
|
|
|
# 2.2-style
|
2012-11-22 16:19:21 +01:00
|
|
|
install -d -m0755 %{buildroot}%{_httpd_confdir}
|
|
|
|
cat %{SOURCE2} %{SOURCE1} > %{buildroot}%{_httpd_confdir}/mod_security.conf
|
2012-05-07 14:15:28 +02:00
|
|
|
%endif
|
2012-11-15 09:23:16 +01:00
|
|
|
install -m 700 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}
|
2012-05-07 11:40:10 +02:00
|
|
|
|
2014-08-15 19:15:30 +02:00
|
|
|
# Local rules example
|
|
|
|
install -Dp -m0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/local_rules/
|
|
|
|
|
2012-05-07 11:40:10 +02:00
|
|
|
# mlogc
|
2012-11-19 22:00:45 +01:00
|
|
|
%if %with_mlogc
|
2012-05-07 11:40:10 +02:00
|
|
|
install -d %{buildroot}%{_localstatedir}/log/mlogc
|
|
|
|
install -d %{buildroot}%{_localstatedir}/log/mlogc/data
|
|
|
|
install -m0755 mlogc/mlogc %{buildroot}%{_bindir}/mlogc
|
|
|
|
install -m0755 mlogc/mlogc-batch-load.pl %{buildroot}%{_bindir}/mlogc-batch-load
|
|
|
|
install -m0644 mlogc/mlogc-default.conf %{buildroot}%{_sysconfdir}/mlogc.conf
|
2012-11-19 22:00:45 +01:00
|
|
|
%endif
|
2012-11-15 09:23:16 +01:00
|
|
|
|
2005-05-19 03:39:17 +02:00
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
2012-05-07 14:15:28 +02:00
|
|
|
%defattr (-,root,root)
|
2012-05-07 11:40:10 +02:00
|
|
|
%doc CHANGES LICENSE README.TXT NOTICE
|
2012-05-07 14:15:28 +02:00
|
|
|
%{_httpd_moddir}/mod_security2.so
|
|
|
|
%config(noreplace) %{_httpd_confdir}/*.conf
|
|
|
|
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
|
|
|
%config(noreplace) %{_httpd_modconfdir}/*.conf
|
|
|
|
%endif
|
2007-03-13 10:20:35 +01:00
|
|
|
%dir %{_sysconfdir}/httpd/modsecurity.d
|
2012-05-07 11:40:10 +02:00
|
|
|
%dir %{_sysconfdir}/httpd/modsecurity.d/activated_rules
|
2014-08-15 19:15:30 +02:00
|
|
|
%dir %{_sysconfdir}/httpd/modsecurity.d/local_rules
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/local_rules/*.conf
|
2012-11-15 09:23:16 +01:00
|
|
|
%attr(770,apache,root) %dir %{_localstatedir}/lib/%{name}
|
2012-05-07 11:40:10 +02:00
|
|
|
|
2012-11-19 22:00:45 +01:00
|
|
|
%if %with_mlogc
|
2012-05-07 11:40:10 +02:00
|
|
|
%files -n mlogc
|
2012-05-07 14:15:28 +02:00
|
|
|
%defattr (-,root,root)
|
2012-05-07 11:40:10 +02:00
|
|
|
%doc mlogc/INSTALL
|
|
|
|
%attr(0640,root,apache) %config(noreplace) %{_sysconfdir}/mlogc.conf
|
|
|
|
%attr(0755,root,root) %dir %{_localstatedir}/log/mlogc
|
|
|
|
%attr(0770,root,apache) %dir %{_localstatedir}/log/mlogc/data
|
|
|
|
%attr(0755,root,root) %{_bindir}/mlogc
|
|
|
|
%attr(0755,root,root) %{_bindir}/mlogc-batch-load
|
2012-11-19 22:00:45 +01:00
|
|
|
%endif
|
2007-03-13 10:20:35 +01:00
|
|
|
|
2005-05-19 03:39:17 +02:00
|
|
|
%changelog
|
2015-02-13 13:33:30 +01:00
|
|
|
* Fri Feb 13 2015 Athmane Madjoudj <athmane@fedoraproject.org> 2.9.0-1
|
|
|
|
- Update to 2.9.0
|
|
|
|
- Remove backported patch
|
|
|
|
- Add patch to fix lua 5.3 build issue (PR #837)
|
|
|
|
|
2014-11-04 17:35:47 +01:00
|
|
|
* Tue Nov 04 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.8.0-7
|
|
|
|
- Make sure mod_security is built with correct curl version
|
|
|
|
|
2014-11-03 22:10:50 +01:00
|
|
|
* Mon Nov 03 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.8.0-6
|
|
|
|
- Changes the default SSL version to TLS 1.2 since SSLv3 is vulnerable to poodle
|
|
|
|
|
2014-08-17 12:02:31 +02:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-15 19:15:30 +02:00
|
|
|
* Fri Aug 15 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.8.0-4
|
|
|
|
- Add support for user-provided configurations and rules (rhbz #1129843)
|
|
|
|
|
2014-06-07 12:48:56 +02:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-16 09:28:45 +02:00
|
|
|
* Wed Apr 16 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.8.0-1
|
|
|
|
- Update to 2.8.0 Final
|
|
|
|
|
|
|
|
* Thu Apr 03 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.8.0-0.rc1
|
|
|
|
- Update to 2.8.0-RC1
|
|
|
|
|
2014-03-04 22:09:02 +01:00
|
|
|
* Tue Mar 04 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.7-6
|
|
|
|
- Fix status code in the configuration file (upstream PR #666)
|
|
|
|
|
2014-03-01 02:30:56 +01:00
|
|
|
* Sat Mar 01 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.7-5
|
|
|
|
- Fix rpmlint warnings
|
|
|
|
|
2014-02-27 19:04:30 +01:00
|
|
|
* Thu Feb 27 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.7-4
|
|
|
|
- Add check section
|
|
|
|
|
2014-02-22 11:52:09 +01:00
|
|
|
* Sat Feb 22 2014 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.7-3
|
|
|
|
- Fix bogus date in chanelog
|
|
|
|
|
2014-01-23 11:57:00 +01:00
|
|
|
* Thu Jan 23 2014 Joe Orton <jorton@redhat.com> - 2.7.7-2
|
|
|
|
- fix _httpd_mmn expansion in absence of httpd-devel
|
|
|
|
|
2014-02-22 11:52:09 +01:00
|
|
|
* Thu Dec 19 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.7-1
|
2013-12-19 15:31:21 +01:00
|
|
|
- Update to 2.7.7
|
|
|
|
- Fix the spec file since upstream fixed the bugs reported.
|
|
|
|
|
2013-12-17 22:24:22 +01:00
|
|
|
* Tue Dec 17 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.6-2
|
|
|
|
- Add autotools deps
|
|
|
|
|
2013-12-17 22:11:20 +01:00
|
|
|
* Tue Dec 17 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.6-1
|
|
|
|
- Update to 2.7.6
|
|
|
|
- Fix spec since upstream will only provide tarball via Github
|
|
|
|
|
2013-08-03 14:57:19 +02:00
|
|
|
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 2.7.5-2
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-07-30 18:04:34 +02:00
|
|
|
* Tue Jul 30 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.5-1
|
|
|
|
- Update to 2.7.5
|
|
|
|
|
2013-07-18 04:45:37 +02:00
|
|
|
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 2.7.4-2
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-05-28 18:40:57 +02:00
|
|
|
* Tue May 28 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.4-1
|
|
|
|
- Update to 2.7.4
|
|
|
|
- Drop non required patch
|
|
|
|
|
2013-05-28 16:00:07 +02:00
|
|
|
* Tue May 28 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.3-2
|
|
|
|
- Fix NULL pointer dereference (DoS, crash) (CVE-2013-2765) (RHBZ #967615)
|
|
|
|
- Fix a possible memory leak.
|
|
|
|
|
2013-03-30 17:09:07 +01:00
|
|
|
* Sat Mar 30 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.3-1
|
|
|
|
- Update to 2.7.3
|
|
|
|
|
2013-01-25 22:47:37 +01:00
|
|
|
* Fri Jan 25 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.2-1
|
|
|
|
- Update to 2.7.2
|
|
|
|
- Update source url in the spec.
|
|
|
|
|
2012-11-22 16:19:21 +01:00
|
|
|
* Thu Nov 22 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.1-5
|
|
|
|
- Use conditional for loading mod_unique_id (rhbz #879264)
|
|
|
|
- Fix syntax errors on httpd 2.4.x by using IncludeOptional (rhbz #879264, comment #2)
|
|
|
|
|
2012-11-19 22:00:45 +01:00
|
|
|
* Mon Nov 19 2012 Peter Vrabec <pvrabec@redhat.com> 2.7.1-4
|
|
|
|
- mlogc subpackage is not provided on RHEL7
|
|
|
|
|
2012-11-15 09:23:16 +01:00
|
|
|
* Thu Nov 15 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.1-3
|
|
|
|
- Add some missing directives RHBZ #569360
|
|
|
|
- Fix multipart/invalid part ruleset bypass issue (CVE-2012-4528)
|
|
|
|
(RHBZ #867424, #867773, #867774)
|
|
|
|
|
2012-11-15 05:43:58 +01:00
|
|
|
* Thu Nov 15 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.1-2
|
|
|
|
- Fix mod_security.conf
|
|
|
|
|
2012-11-15 04:53:47 +01:00
|
|
|
* Thu Nov 15 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.1-1
|
|
|
|
- Update to 2.7.1
|
|
|
|
- Remove libxml2 build patch (upstreamed)
|
|
|
|
- Update spec since upstream moved to github
|
|
|
|
|
2012-10-18 12:12:01 +02:00
|
|
|
* Thu Oct 18 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.0-2
|
|
|
|
- Add a patch to fix failed build against libxml2 >= 2.9.0
|
|
|
|
|
2012-10-17 17:05:36 +02:00
|
|
|
* Wed Oct 17 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.7.0-1
|
|
|
|
- Update to 2.7.0
|
|
|
|
|
2012-09-28 13:59:14 +02:00
|
|
|
* Fri Sep 28 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.6.8-1
|
|
|
|
- Update to 2.6.8
|
|
|
|
|
2012-10-17 17:05:36 +02:00
|
|
|
* Wed Sep 12 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.6.7-2
|
|
|
|
- Re-add mlogc sub-package for epel (#856525)
|
|
|
|
|
|
|
|
* Sat Aug 25 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.6.7-1
|
|
|
|
- Update to 2.6.7
|
|
|
|
|
2012-08-29 19:15:08 +02:00
|
|
|
* Sat Aug 25 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.6.7-1
|
|
|
|
- Update to 2.6.7
|
|
|
|
|
2012-07-20 04:27:17 +02:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-22 10:31:25 +02:00
|
|
|
* Fri Jun 22 2012 Peter Vrabec <pvrabec@redhat.com> - 2.6.6-2
|
|
|
|
- mlogc subpackage is not provided on RHEL
|
|
|
|
|
2012-06-21 11:05:39 +02:00
|
|
|
* Thu Jun 21 2012 Peter Vrabec <pvrabec@redhat.com> - 2.6.6-1
|
|
|
|
- upgrade
|
|
|
|
|
2012-05-07 14:15:28 +02:00
|
|
|
* Mon May 7 2012 Joe Orton <jorton@redhat.com> - 2.6.5-3
|
|
|
|
- packaging fixes
|
|
|
|
|
2012-05-07 11:40:10 +02:00
|
|
|
* Fri Apr 27 2012 Peter Vrabec <pvrabec@redhat.com> 2.6.5-2
|
|
|
|
- fix license tag
|
|
|
|
|
|
|
|
* Thu Apr 05 2012 Peter Vrabec <pvrabec@redhat.com> 2.6.5-1
|
|
|
|
- upgrade & move rules into new package mod_security_crs
|
|
|
|
|
2012-02-10 14:54:23 +01:00
|
|
|
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 2.5.13-3
|
|
|
|
- Rebuild against PCRE 8.30
|
2012-02-16 16:29:25 +01:00
|
|
|
- Do not install non-existing files
|
2012-02-10 14:54:23 +01:00
|
|
|
|
2012-01-13 11:20:00 +01:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.13-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2014-02-22 11:52:09 +01:00
|
|
|
* Tue May 3 2011 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.13-1
|
2011-05-03 12:01:43 +02:00
|
|
|
- Newer upstream version
|
|
|
|
|
2010-06-30 11:45:47 +02:00
|
|
|
* Wed Jun 30 2010 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.12-3
|
|
|
|
- Fix log dirs and files ordering per bz#569360
|
|
|
|
|
2010-04-29 13:22:27 +02:00
|
|
|
* Thu Apr 29 2010 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.12-2
|
|
|
|
- Fix SecDatadir and minimal config per bz #569360
|
|
|
|
|
2010-02-13 11:27:03 +01:00
|
|
|
* Sat Feb 13 2010 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.12-1
|
|
|
|
- Update to latest upstream release
|
|
|
|
- SECURITY: Fix potential rules bypass and denial of service (bz#563576)
|
|
|
|
|
2009-11-06 10:38:11 +01:00
|
|
|
* Fri Nov 6 2009 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.10-2
|
|
|
|
- Fix rules and Apache configuration (bz#533124)
|
|
|
|
|
2009-10-08 10:11:41 +02:00
|
|
|
* Thu Oct 8 2009 Michael Fleming <mfleming+rpm@thatfleminggent.com> - 2.5.10-1
|
|
|
|
- Upgrade to 2.5.10 (with Core Rules v2)
|
|
|
|
|
2009-07-25 16:55:15 +02:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-12 10:39:50 +01:00
|
|
|
* Thu Mar 12 2009 Michael Fleming <mfleming+rpm@thatfleminggent.com> 2.5.9-1
|
|
|
|
- Update to upstream release 2.5.9
|
|
|
|
- Fixes potential DoS' in multipart request and PDF XSS handling
|
|
|
|
|
2009-02-26 03:13:40 +01:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-29 13:26:52 +01:00
|
|
|
* Mon Dec 29 2008 Michael Fleming <mfleming+rpm@enlartenment.com> 2.5.7-1
|
|
|
|
- Update to upstream 2.5.7
|
|
|
|
- Reinstate mlogc
|
|
|
|
|
2008-08-12 12:01:15 +02:00
|
|
|
* Sat Aug 2 2008 Michael Fleming <mfleming+rpm@enlartenment.com> 2.5.6-1
|
|
|
|
- Update to upstream 2.5.6
|
|
|
|
- Remove references to mlogc, it no longer ships in the main tarball.
|
|
|
|
- Link correctly vs. libxml2 and lua (bz# 445839)
|
|
|
|
- Remove bogus LoadFile directives as they're no longer needed.
|
|
|
|
|
2008-04-13 14:20:23 +02:00
|
|
|
* Sun Apr 13 2008 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.7-1
|
|
|
|
- Update to upstream 2.1.7
|
|
|
|
|
2008-02-23 00:39:44 +01:00
|
|
|
* Sat Feb 23 2008 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.6-1
|
|
|
|
- Update to upstream 2.1.6 (Extra features including SecUploadFileMode)
|
|
|
|
|
2008-02-19 14:28:57 +01:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.1.5-3
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2014-02-22 11:52:09 +01:00
|
|
|
* Sun Jan 27 2008 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.5-2
|
2008-01-27 07:18:13 +01:00
|
|
|
- Update to 2.1.5 (bz#425986)
|
2008-01-27 07:40:10 +01:00
|
|
|
- "blocking" -> "optional_rules" per tarball ;-)
|
|
|
|
|
2008-01-27 07:18:13 +01:00
|
|
|
|
2007-09-13 09:05:54 +02:00
|
|
|
* Thu Sep 13 2007 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.3-1
|
|
|
|
- Update to 2.1.3
|
|
|
|
- Update License tag per guidelines.
|
|
|
|
|
2007-09-03 10:32:11 +02:00
|
|
|
* Mon Sep 3 2007 Joe Orton <jorton@redhat.com> 2.1.1-3
|
|
|
|
- rebuild for fixed 32-bit APR (#254241)
|
|
|
|
|
2007-08-29 07:02:39 +02:00
|
|
|
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.1.1-2
|
|
|
|
- Rebuild for selinux ppc32 issue.
|
|
|
|
|
2007-06-19 12:25:54 +02:00
|
|
|
* Tue Jun 19 2007 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.1-1
|
|
|
|
- New upstream release
|
|
|
|
- Drop ASCIIZ rule (fixed upstream)
|
|
|
|
- Re-enable protocol violation/anomalies rules now that REQUEST_FILENAME
|
|
|
|
is fixed upstream.
|
|
|
|
|
2007-04-01 11:57:48 +02:00
|
|
|
* Sun Apr 1 2007 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.0-3
|
|
|
|
- Automagically configure correct library path for libxml2 library.
|
|
|
|
- Add LoadModule for mod_unique_id as the logging wants this at runtime
|
|
|
|
|
2007-03-26 15:03:26 +02:00
|
|
|
* Mon Mar 26 2007 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.0-2
|
|
|
|
- Fix DSO permissions (bz#233733)
|
|
|
|
|
2007-03-13 10:20:35 +01:00
|
|
|
* Tue Mar 13 2007 Michael Fleming <mfleming+rpm@enlartenment.com> 2.1.0-1
|
|
|
|
- New major release - 2.1.0
|
|
|
|
- Fix CVE-2007-1359 with a local rule courtesy of Ivan Ristic
|
|
|
|
- Addition of core ruleset
|
|
|
|
- (Build)Requires libxml2 and pcre added.
|
|
|
|
|
2006-09-03 08:41:10 +02:00
|
|
|
* Sun Sep 3 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.4-2
|
|
|
|
- Rebuild
|
|
|
|
- Fix minor longstanding braino in included sample configuration (bz #203972)
|
|
|
|
|
2006-05-15 14:31:04 +02:00
|
|
|
* Mon May 15 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2006-04-11 12:42:57 +02:00
|
|
|
* Tue Apr 11 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.3-1
|
|
|
|
- New upstream release
|
|
|
|
- Trivial spec tweaks
|
|
|
|
|
2006-02-28 23:45:34 +01:00
|
|
|
* Wed Mar 1 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.2-3
|
|
|
|
- Bump for FC5
|
|
|
|
|
2006-02-10 14:43:39 +01:00
|
|
|
* Fri Feb 10 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.2-2
|
|
|
|
- Bump for newer gcc/glibc
|
|
|
|
|
2006-01-18 03:14:08 +01:00
|
|
|
* Wed Jan 18 2006 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2005-12-15 23:36:12 +01:00
|
|
|
* Fri Dec 16 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.1-2
|
|
|
|
- Bump for new httpd
|
|
|
|
|
2005-12-01 12:32:58 +01:00
|
|
|
* Thu Dec 1 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9.1-1
|
|
|
|
- New release 1.9.1
|
|
|
|
|
2005-11-22 09:39:23 +01:00
|
|
|
* Wed Nov 9 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.9-1
|
|
|
|
- New stable upstream release 1.9
|
|
|
|
|
2005-07-09 13:58:44 +02:00
|
|
|
* Sat Jul 9 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.8.7-4
|
|
|
|
- Add Requires: httpd-mmn to get the appropriate "module magic" version
|
2005-11-22 09:39:23 +01:00
|
|
|
(thanks Ville Skytta)
|
2005-07-09 13:58:44 +02:00
|
|
|
- Disabled an overly-agressive rule or two..
|
|
|
|
|
2005-07-09 02:41:23 +02:00
|
|
|
* Sat Jul 9 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.8.7-3
|
|
|
|
- Correct Buildroot
|
|
|
|
- Some sensible and safe rules for common apps in mod_security.conf
|
|
|
|
|
2005-05-19 08:42:01 +02:00
|
|
|
* Thu May 19 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.8.7-2
|
|
|
|
- Don't strip the module (so we can get a useful debuginfo package)
|
|
|
|
|
2005-05-19 03:39:17 +02:00
|
|
|
* Thu May 19 2005 Michael Fleming <mfleming+rpm@enlartenment.com> 1.8.7-1
|
|
|
|
- Initial spin for Extras
|