Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,10 @@ public static int cweLookup(String squidNumber) {
return CweNumber
.DONTCARE; // "String#replace" should be preferred to "String#replaceAll"
case "S5542":
case "S5547":
return CweNumber
.WEAK_CRYPTO_ALGO; // Benchmark Vuln: Encryption algorithms should be used
// with secure mode and padding scheme
case "S5547":
case "S4790":
// Using weak hashing algorithms is security-sensitive
return CweNumber.WEAK_HASH_ALGO;
Expand Down
Loading