mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
14 lines
282 B
Bash
Executable File
14 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
git clone https://github.com/SpiderLabs/owasp-modsecurity-crs.git owasp-v3
|
|
cd owasp-v3
|
|
git checkout v3.0.0 -b tag3.0.0
|
|
cd -
|
|
|
|
echo 'Include "owasp-v3/crs-setup.conf.example"' >> basic_rules.conf
|
|
echo 'Include "owasp-v3/rules/*.conf"' >> basic_rules.conf
|
|
|
|
echo "Done."
|
|
|