2012-11-19 21:04:59 +00:00
|
|
|
%global with_extras 0%{?fedora} || 0%{?rhel} <= 6
|
2012-09-15 15:52:33 +00:00
|
|
|
|
2012-05-07 09:54:36 +00:00
|
|
|
Summary: ModSecurity Rules
|
|
|
|
Name: mod_security_crs
|
2017-04-22 09:29:16 +00:00
|
|
|
Version: 3.0.0
|
|
|
|
Release: 1%{?dist}
|
2012-05-07 09:54:36 +00:00
|
|
|
License: ASL 2.0
|
2016-03-08 20:32:58 +00:00
|
|
|
URL: https://www.owasp.org/index.php/Category:OWASP_ModSecurity_Core_Rule_Set_Project
|
2012-05-07 09:54:36 +00:00
|
|
|
Group: System Environment/Daemons
|
2017-04-22 09:29:16 +00:00
|
|
|
Source: https://github.com/SpiderLabs/owasp-modsecurity-crs/archive/v%{version}/owasp-modsecurity-crs-%{version}.tar.gz
|
2012-05-07 09:54:36 +00:00
|
|
|
BuildArch: noarch
|
2012-10-17 15:10:26 +00:00
|
|
|
Requires: mod_security >= 2.7.0
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package provides the base rules for mod_security.
|
|
|
|
|
2012-11-19 21:04:59 +00:00
|
|
|
%if %with_extras
|
2012-05-07 09:54:36 +00:00
|
|
|
%package extras
|
|
|
|
Summary: Supplementary mod_security rules
|
|
|
|
Group: System Environment/Daemons
|
|
|
|
Requires: %name = %version-%release
|
|
|
|
|
|
|
|
%description extras
|
|
|
|
This package provides supplementary rules for mod_security.
|
2012-11-19 21:04:59 +00:00
|
|
|
%endif
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
%prep
|
2017-04-22 09:29:16 +00:00
|
|
|
%autosetup -q -n
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2012-09-13 09:27:58 +00:00
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
2012-05-07 09:54:36 +00:00
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/
|
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/activated_rules
|
|
|
|
|
|
|
|
install -d %{buildroot}%{_prefix}/lib/modsecurity.d/base_rules
|
2012-06-20 16:02:25 +00:00
|
|
|
|
2012-11-19 21:04:59 +00:00
|
|
|
%if %with_extras
|
2012-05-07 09:54:36 +00:00
|
|
|
install -d %{buildroot}%{_prefix}/lib/modsecurity.d/optional_rules
|
|
|
|
install -d %{buildroot}%{_prefix}/lib/modsecurity.d/experimental_rules
|
|
|
|
install -d %{buildroot}%{_prefix}/lib/modsecurity.d/slr_rules
|
2012-11-19 21:04:59 +00:00
|
|
|
%endif
|
2012-05-07 09:54:36 +00:00
|
|
|
|
2012-06-22 07:41:42 +00:00
|
|
|
install -m0644 modsecurity_crs_10_setup.conf.example %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/modsecurity_crs_10_config.conf
|
2012-05-07 09:54:36 +00:00
|
|
|
install -m0644 base_rules/* %{buildroot}%{_prefix}/lib/modsecurity.d/base_rules/
|
2012-11-19 21:04:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
%if %with_extras
|
2012-05-07 09:54:36 +00:00
|
|
|
install -m0644 optional_rules/* %{buildroot}%{_prefix}/lib/modsecurity.d/optional_rules/
|
|
|
|
install -m0644 experimental_rules/* %{buildroot}%{_prefix}/lib/modsecurity.d/experimental_rules/
|
|
|
|
install -m0644 slr_rules/* %{buildroot}%{_prefix}/lib/modsecurity.d/slr_rules
|
2012-11-19 21:04:59 +00:00
|
|
|
%endif
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
# activate base_rules
|
|
|
|
for f in `ls %{buildroot}/%{_prefix}/lib/modsecurity.d/base_rules/` ; do
|
|
|
|
ln -s %{_prefix}/lib/modsecurity.d/base_rules/$f %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/activated_rules/$f;
|
|
|
|
done
|
|
|
|
|
2012-09-13 09:27:58 +00:00
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
%files
|
2013-07-02 19:09:21 +00:00
|
|
|
%doc CHANGES INSTALL LICENSE README.md
|
2012-05-07 09:54:36 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/activated_rules/*
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/modsecurity_crs_10_config.conf
|
|
|
|
%{_prefix}/lib/modsecurity.d/base_rules
|
|
|
|
|
2012-11-19 21:04:59 +00:00
|
|
|
|
|
|
|
%if %with_extras
|
2012-05-07 09:54:36 +00:00
|
|
|
%files extras
|
|
|
|
%{_prefix}/lib/modsecurity.d/optional_rules
|
|
|
|
%{_prefix}/lib/modsecurity.d/experimental_rules
|
|
|
|
%{_prefix}/lib/modsecurity.d/slr_rules
|
2012-11-19 21:04:59 +00:00
|
|
|
%endif
|
2012-05-07 09:54:36 +00:00
|
|
|
|
|
|
|
%changelog
|
2017-04-22 09:29:16 +00:00
|
|
|
* Sat Apr 22 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 3.0.0-1
|
|
|
|
- Update to 3.0.0
|
|
|
|
- Clean up the spec
|
|
|
|
|
2017-02-10 21:35:05 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.9.20160414git-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-04-29 21:30:35 +00:00
|
|
|
* Fri Apr 29 2016 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.9.20160414git-1
|
|
|
|
- Update to 2.9.20160414git
|
|
|
|
|
2016-03-08 20:32:58 +00:00
|
|
|
* Tue Mar 08 2016 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.9.20160219git-1
|
|
|
|
- Update to 2.2.9
|
|
|
|
- Minor spec cleanup
|
|
|
|
|
2016-02-04 08:36:35 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.8-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 20:53:51 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-06-07 10:49:15 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 11:33:37 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-02 19:09:21 +00:00
|
|
|
* Tue Jul 02 2013 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.8-1
|
|
|
|
- Update to 2.2.8
|
|
|
|
- Adapt the spec file to new github tarball schema.
|
|
|
|
- Correct bugus date in the spec file.
|
|
|
|
|
2013-02-14 07:22:13 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-19 21:04:59 +00:00
|
|
|
* Mon Nov 19 2012 Peter Vrabec <pvrabec@redhat.com> 2.2.6-4
|
|
|
|
- "extras" subpackage is not provided on RHEL7
|
|
|
|
|
2012-10-17 15:10:26 +00:00
|
|
|
* Wed Oct 17 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.6-3
|
|
|
|
- Remove the patch since we're requiring mod_security >= 2.7.0
|
|
|
|
- Require mod_security >= 2.7.0
|
|
|
|
|
2012-10-01 20:00:53 +00:00
|
|
|
* Mon Oct 01 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.6-2
|
|
|
|
- Add a patch to fix incompatible rules.
|
|
|
|
- Update to new git release
|
|
|
|
|
2012-09-15 15:52:33 +00:00
|
|
|
* Sat Sep 15 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.6-1
|
|
|
|
- Update to 2.2.6
|
|
|
|
- Update spec file since upstream moved to Github.
|
|
|
|
|
2012-09-13 09:31:59 +00:00
|
|
|
* Thu Sep 13 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.5-5
|
|
|
|
- Enable extra rules sub-package for EPEL.
|
|
|
|
|
2012-09-13 09:27:58 +00:00
|
|
|
* Tue Aug 28 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.5-4
|
|
|
|
- Fix spec for el5
|
|
|
|
|
|
|
|
* Tue Aug 28 2012 Athmane Madjoudj <athmane@fedoraproject.org> 2.2.5-3
|
|
|
|
- Add BuildRoot def for el5 compatibility
|
|
|
|
|
2012-07-20 02:27:40 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-22 07:41:42 +00:00
|
|
|
* Fri Jun 22 2012 Peter Vrabec <pvrabec@redhat.com> 2.2.5-1
|
|
|
|
- upgrade
|
|
|
|
|
2012-06-20 16:02:25 +00:00
|
|
|
* Wed Jun 20 2012 Peter Vrabec <pvrabec@redhat.com> 2.2.4-3
|
|
|
|
- "extras" subpackage is not provided on RHEL
|
|
|
|
|
2013-07-02 19:09:21 +00:00
|
|
|
* Thu May 03 2012 Peter Vrabec <pvrabec@redhat.com> 2.2.4-2
|
2012-05-07 09:54:36 +00:00
|
|
|
- fix fedora-review issues (#816975)
|
|
|
|
|
|
|
|
* Thu Apr 19 2012 Peter Vrabec <pvrabec@redhat.com> 2.2.4-1
|
|
|
|
- initial package
|
|
|
|
|
|
|
|
|