檢查是否有 SRI(子資源完整性)支援

弱點說明

不支援子資源完整性

弱點修補建議

將「子資源完整性」新增至每一個 Script/鏈結

範例:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>

使用 https://www.srihash.org/ 輸入 https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js 產生雜湊

如下:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js" integrity="sha384-i61gTtaoovXtAbKjo903+O55Jkn2+RtzHtvNez+yI49HAASvznhe9sZyjaSHTau9" crossorigin="anonymous"></script>