cgoncalves / rpms / mod_security

Forked from rpms/mod_security 4 years ago
Clone

Blame SPECS/mod_security.spec

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