ubuntu:ddos
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:ddos [2019/11/24 12:49] – created peter | ubuntu:ddos [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
Mitigate from DDoS with mod_security and mod_evasive | Mitigate from DDoS with mod_security and mod_evasive | ||
+ | |||
+ | ---- | ||
===== Install Mod Security Apache Module ===== | ===== Install Mod Security Apache Module ===== | ||
- | # Install Mod Security | + | ===== Install Mod Security |
+ | |||
+ | <code bash> | ||
yum install mod_security | yum install mod_security | ||
- | # Download latest OWASP ruleset | + | </ |
- | # http:// | + | |
+ | ---- | ||
+ | |||
+ | ===== Download latest OWASP ruleset | ||
+ | |||
+ | From the site http:// | ||
+ | |||
+ | <code bash> | ||
tar xfz SpiderLabs-owasp-modsecurity-crs-2.2.8-0-g0f07cbb.tar.gz | tar xfz SpiderLabs-owasp-modsecurity-crs-2.2.8-0-g0f07cbb.tar.gz | ||
- | # Remove the one that was installed by the binary mod_security package. | + | </ |
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Remove the one that was installed by the binary mod_security package. | ||
+ | |||
+ | <code bash> | ||
rm -rf / | rm -rf / | ||
mv SpiderLabs-owasp-modsecurity-crs-2.2.8-0-g0f07cbb / | mv SpiderLabs-owasp-modsecurity-crs-2.2.8-0-g0f07cbb / | ||
- | # Edit the /etc/ | + | </code> |
+ | ---- | ||
+ | |||
+ | ===== Edit the / | ||
+ | |||
+ | |||
+ | ---- | ||
===== Install mod_evasive Apache Module ===== | ===== Install mod_evasive Apache Module ===== | ||
- | # We are going to build mod_evasive binary from the source. | + | Build mod_evasive binary from the source. |
+ | |||
+ | <code bash> | ||
yum install gcc make libxml2 libxml2-devel httpd-devel pcre-devel curl-devel | yum install gcc make libxml2 libxml2-devel httpd-devel pcre-devel curl-devel | ||
+ | </ | ||
+ | |||
+ | Install mod_evasive. | ||
- | # Install mod_evasive. | + | <code bash> |
cd /usr/src | cd /usr/src | ||
wget http:// | wget http:// | ||
tar xzf mod_evasive_1.10.1.tar.gz | tar xzf mod_evasive_1.10.1.tar.gz | ||
cd mod_evasive | cd mod_evasive | ||
+ | </ | ||
- | # Now, you need to find where apxs is installed. | + | Now, you need to find where apxs is installed. |
+ | |||
+ | <code bash> | ||
rpm -ql httpd-devel |grep apxs | rpm -ql httpd-devel |grep apxs | ||
# / | # / | ||
/ | / | ||
- | #Libraries have been installed in: | + | </ |
- | # / | + | |
- | # Add the following block in the / | + | Libraries have been installed in: |
+ | / | ||
+ | |||
+ | Add the following block in the / | ||
+ | |||
+ | <file bash / | ||
# mod_evasive | # mod_evasive | ||
< | < | ||
Line 45: | Line 81: | ||
# | # | ||
</ | </ | ||
+ | </ | ||
- | # Restart Apache | + | ---- |
- | service httpd restart | + | |
+ | ===== Restart Apache ===== | ||
+ | <code bash> | ||
+ | service httpd restart | ||
+ | </ | ||
+ | ---- | ||
===== References ===== | ===== References ===== |
ubuntu/ddos.1574599768.txt.gz · Last modified: 2020/07/15 09:30 (external edit)