当前位置:   article > 正文

网站安全响应头缺失和php配置漏洞_header("x-permitted-cross-domain-policies:'master-

header("x-permitted-cross-domain-policies:'master-only';");

最近给学校做网站,被查出各种响应头缺失的 低危漏洞  和 一些配置漏洞,还有一些需要https的配置。。。。。

php.ini 中修改

  1. expose_php off    //  php彩蛋信息泄露
  2. session.cookie_httponly=true  //  cookie没有设置httponly属性

 

PHP 配置

  1. header("X-Frame-Options:SAMEORIGIN;");  // X-Frame-Options 响应头缺失
  2. header("Referer-Policy:origin;");//Referer-Policy 响应头缺失
  3. header("Content-Security-Policy:frame-ancestors 'self';");//Content-Security-Policy 响应头缺失
  4. header("X-Permitted-Cross-Domain-Policies:'master-only';");//X-Permitted-Cross-Domain-Policies 响应头缺失
  5. header("X-XSS-Protection:1; mode=block;");//X-XSS-Protection 响应头缺失
  6. header("X-Download-Options: SAMEORIGIN;");//X-Download-Options 响应头缺失
  7. header("X-Content-Type-Options:nosniff;");//X-Content-Type-Options 响应头缺失
  8. header("Strict-Transport-Security:max-age=31536000;");//Strict-Transport-Security 响应头缺失

Nginx 配置

  1.     add_header X-Frame-Options SAMEORIGIN;
  2.     add_header Referer-Policy origin;
  3.     add_header Content-Security-Policy "frame-ancestors 'self'";
  4.     add_header X-Permitted-Cross-Domain-Policies  "master-only";
  5.     add_header X-XSS-Protection "1; mode=block;";
  6.     add_header X-Download-Options SAMEORIGIN;
  7.     add_header X-Content-Type-Options nosniff;
  8.     add_header Strict-Transport-Security max-age=31536000;

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/982944
推荐阅读
相关标签
  

闽ICP备14008679号