A08 - Lack of Data and Software Integrity
Problem Description
Example: Incorrect Use of jQuery Without Integrity Check
<script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>Security Issue
Recommended Solution: Subresource Integrity (SRI)
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>PreviousA07 - Identification and Authentication FailuresNextA09 - Lack of Control and Logging Systems
Last updated