Blame SPECS/mod_security.spec

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