我托管的 WordPress 网站遭受了 DoS 攻击。
173.192.109.118 - - [30/Sep/2015:22:31:36 +0000] "POST /xmlrpc.php HTTP/1.0" 499 0 "-" "Mozilla/4.0 (compatible: MSIE 7.0; Windows NT 6.0)"
我的nginx
访问日志中大约有 140 条这样的日志(大约需要 10 秒,所以每秒大约有 14 条请求),然后它们切换到 502:
173.192.109.118 - - [30/Sep/2015:22:31:46 +0000] "POST /xmlrpc.php HTTP/1.0" 502 537 "-" "Mozilla/4.0 (compatible: MSIE 7.0; Windows NT 6.0)"
此时,PHP-FPM
必须重新启动才能恢复站点。
所以,我的问题是:我能做些什么来防止单个攻击者崩溃PHP-FPM
?
我的大部分(有限的)经验都来自 Apache,因此任何建议都是大大赞赏。
我尝试对所有事情设置合理的限制。服务器在负载下有足够的 RAM,因此这似乎不是问题。我刚刚从以下教程中添加了一个速率限制器:https://www.howtoforge.com/rate-limiting-with-nginx,虽然这似乎延缓了痛苦,但最终它还是崩溃了PHP-FPM
。
/var/log/php5-fpm.log
除了我在配置文件中忘记添加前导 / 时引入的几个错误以及重新启动时出现的一堆成功行之外,似乎没有显示任何有趣或有用的内容:
[30-Sep-2015 23:03:51] ERROR: Unable to create or open slowlog(/usr/log/www.log.slow): No such file or directory (2)
[30-Sep-2015 23:03:51] ERROR: failed to post process the configuration
[30-Sep-2015 23:03:51] ERROR: FPM initialization failed
[30-Sep-2015 23:05:47] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
/etc/php5/fpm/pool.d/www.conf
[www]
user = www-data
group = www-data
listen = /var/run/php5-fpm.sock
listen.owner = www-data
listen.group = www-data
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.status_path = /status
ping.path = /ping
ping.response = pong
slowlog = /var/log/php-fpm_$pool.slow.log
request_slowlog_timeout = 30
request_terminate_timeout = 30
chdir = /
/etc/nginx/nginx.conf
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
/etc/nginx/sites-enabled/example.com
server {
server_name localhost www.example.com;
return 301 http://example.com$request_uri;
}
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /var/www/html;
index index.php index.html index.htm;
server_name example.com;
client_max_body_size 500M;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}
location ~* \.(jpg|jpeg|png|gif|ico|css|js|woff)$ {
expires 365d;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
limit_req zone=one burst=5;
}
location /status {
fastcgi_pass php;
}
location /ping {
fastcgi_pass php;
}
location ~ /\. {
deny all;
}
}
**更新**
我已更新标题以更好地反映我的问题,希望能够吸引一些关于PHP-FPM
调整的高质量讨论。
作为次要问题,可能比我的第一个问题更重要,我想知道: 我如何调整/强化 PHP-FPM 来利用所有可用的服务器资源而不会首先崩溃。
Apache / PHP 可能效率不高,但它在服务器瘫痪之前不会停止处理请求,然后当攻击结束时,网站又恢复了。手动重启稍微超负荷的服务似乎相当不愉快。(每秒 14 个请求真的不算什么)
我同意利用这些想法来fail2ban
缓解 DoS 攻击,但我真正担心的是,如果/当常规的流量达到 15 个请求/秒吗?
答案1
基本上您有以下选择:
- 使用数据包过滤器阻止
- 使用 nginx 阻塞
location / { deny xx.xx.xx.xx; allow all; }
- 增加到
pm.max_children
相等的数字CPU 核心 x 2,5 太低了 - 可能增加后每秒只能处理 14 个请求,这实际上不是一个大数字。此外,您正在使用 nginxlimit_req
指令来限制请求率,我建议您添加另一个区域并将其配置为较低的突发大小或nodelay
。