脆弱性スキャン、「X-XSS-Protection」、「X-Content-Type-Options」、「Content-security-Policy」の頭の問題を解決

1879 ワード

「X-XSS-Protection」、「X-Content-Type-Options」、「Content-security-Policy」ヘッダがありません
  • 解決方法
  • AppScanでWebサイトをスキャンすると、高危険な問題:「X-XSS-Protection」、「X-Content-Type-Options」、「Content-security-Policy」ヘッダの解決方法が欠けている在这里插入图片描述
    解決策
    nginx.confファイルhttp構造に次の内容を追加します.
    # security headers
    add_header X-Frame-Options "SAMEORIGIN" always;
    add_header X-XSS-Protection "1; mode=block" always;
    add_header X-Content-Type-Options "nosniff" always;
    add_header Referrer-Policy "no-referrer-when-downgrade" always;
    add_header Content-Security-Policy "default-src 'self' http: https://* data: blob: 'unsafe-eval' 'unsafe-inline';child-src 'none' " always;
    add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
    # . files
    location ~ /\.(?!well-known) {
            deny all;
    }