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