2024-07-14 16:03:18 +02:00
|
|
|
%global plugin_id roundcube
|
|
|
|
%global plugin_name %{plugin_id}-rule-exclusions
|
|
|
|
|
|
|
|
Name: mod_security_crs_plugin_%{gsub %{plugin_id} - _}
|
|
|
|
Version: 1.0.2
|
2024-07-15 00:00:16 +02:00
|
|
|
Release: 5%{?dist}
|
2024-07-14 16:03:18 +02:00
|
|
|
Summary: CRS Roundcube rule exclusions plugin
|
|
|
|
|
|
|
|
License: GPLv2
|
|
|
|
URL: https://github.com/EsadCetiner/%{plugin_name}-plugin/
|
|
|
|
Source0: https://github.com/EsadCetiner/%{plugin_name}-plugin//archive/refs/tags/v%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
2024-07-15 00:00:16 +02:00
|
|
|
Requires: mod_security_crs > 4.2.0-3
|
2024-07-14 16:03:18 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
This CRS plugin contains rule exclusions to fix false positives when using Roundcube Webmail
|
|
|
|
with the OWASP Core Rule Set.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{plugin_name}-plugin-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%{__install} -Dm0644 plugins/%{plugin_name}-before.conf %{buildroot}%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-before.conf
|
|
|
|
%{__install} -m0644 plugins/%{plugin_name}-config.conf %{buildroot}%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-config.conf.example
|
|
|
|
%{__install} -Dm0644 plugins/%{plugin_name}-config.conf %{buildroot}%{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-config.conf
|
|
|
|
|
|
|
|
%post
|
|
|
|
if [ $1 == 1 ]; then
|
|
|
|
%{__ln_s} %{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/%{plugin_name}-before.conf %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 == 0 ]; then
|
|
|
|
%{__rm} %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
|
|
|
fi
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-config.conf
|
|
|
|
%ghost %config(noreplace) %{_sysconfdir}/httpd/modsecurity.d/plugins/%{plugin_name}-before.conf
|
|
|
|
%{_datarootdir}/mod_modsecurity_crs/plugins/%{plugin_id}/
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Sun Jul 14 2024 Daniel Demus <daniel-github@demus.dk>
|
|
|
|
- First release
|