• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回服务器栏目

120 - Nginx高级 - server{}防守脚本 - serverSafe.conf

作者:

贺及楼

成为作者

更新日期:2022-02-17 21:47:59

在每一个server{}加上一个脚本

  1. server{
  2. listen 80;
  3. include conf.d/serverSafe.conf # 在conf.d文件夹加上safe.conf
  4. }

一些知识

Nginx的444状态比较特殊,如果返回444那么客户端将不会收到服务端返回的信息,就像是网站无法连接一样

serverSafe.conf

  1. fastcgi_hide_header X-Powered-By;
  2. if ($request_method !~* ^(GET|POST)$) {
  3. return 444;
  4. }
  5. # $request_method能够获取到请求nginx的method
  6. # 配置只允许GET\POST方法访问,其他的method返回444
  7. # *号表示,不区分大小写
  8. # 禁止Scrapy等工具的抓取
  9. if ($http_user_agent ~* (LWP::Simple|BBBike|pytho[n]?|wget|Scrapy|Curl|curl|FeedDemon|JikeSpider|Indy Library|Alexa Toolbar|AskTbFXTV|AhrefsBot|CrawlDaddy|CoolpadWebkit|Java|Feedly|UniversalFeedParser|ApacheBench|Microsoft URL Control|Swiftbot|ZmEu|oBot|jaunty|Python-urllib|lightDeckReports Bot|YYSpider|DigExt|YisouSpider|HttpClient|MJ12bot|heritrix|EasouSpider|LinkpadBot|Ezooms)) {
  10. return 444;
  11. }
  12. if ($http_user_agent ~* "LWP::Simple|BBBike|pytho[n]?|wget|Scrapy|Curl|curl|FeedDemon|JikeSpider|Indy Library|Alexa Toolbar|AskTbFXTV|AhrefsBot|CrawlDaddy|CoolpadWebkit|Java|Feedly|UniversalFeedParser|ApacheBench|Microsoft URL Control|Swiftbot|ZmEu|oBot|jaunty|Python-urllib|lightDeckReports Bot|YYSpider|DigExt|YisouSpider|HttpClient|MJ12bot|heritrix|EasouSpider|LinkpadBot|Ezooms|^$" ){
  13. return 444;
  14. }
  15. # 可能有一些不法者会利用wget/curl等工具扫描我们的网站,我们可以通过禁止相应的user-agent来简单的防范
  16. # 图片防盗链
  17. location /images/ {
  18. valid_referers none blocked www.xxx.cn xxx.cn;
  19. # valid_referers blocked www.xxx.cn xxx.cn
  20. if ($invalid_referer) {
  21. return 403; # 否则返回403
  22. # rewrite ^/images/.*\.(gif|jpg|jpeg|png)$ /static/qrcode.jpg last; # 你也可以给不符合referer规则的请求重定向rewrite到一个默认的图片
  23. }
  24. }
  25. valid_referers 验证referer,其中none允许referer为空,blocked允许不带协议的请求
  26. 除了以上两类外仅允许refererwww.xxx.cnxxx.cn时访问images下的图片资源
  27. # 防止外部直接thinkphp漏洞攻击
  28. if ($request_uri ~* ^/index\.php) {
  29. return 405;
  30. }
  31. # letsencrypt需要访问这个地址下文件
  32. location ^~ /.well-known {
  33. try_files $uri $uri/ =404;
  34. access_log off;
  35. }
  36. # 禁止所以点开头的访问
  37. #eg: /upload/../index.php
  38. location ~ /\. {
  39. deny all;
  40. }
  41. # upload下php无运行权限,防止上传漏洞
  42. location ~* /upload[s]?/.*\.php$ {
  43. return 404;
  44. }
  45. # 静态文件就不需要记录在日志了
  46. location ~* \.(map|gif|jpg|png|css|js|ico|swf|pdf|apk|exe|eot|otf|ttf|woff|woff2)$ {
  47. try_files $uri =404;
  48. access_log off;
  49. }
  50. location = /favicon.ico {
  51. try_files $uri =404;
  52. access_log off;
  53. }