Skip to content
Merged
Show file tree
Hide file tree
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 @@ -24,6 +24,10 @@
],
"OWASP Top 10 2021": [
"A5"
],
"CWE": [
16,
693
]
},
"quickfix": "unknown"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
],
"OWASP Top 10 2021": [
"A5"
],
"CWE": [
693
]
},
"quickfix": "unknown"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
],
"OWASP Top 10 2021": [
"A5"
],
"CWE": [
16,
436,
693
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void test_security_standards() {

RulesDefinition.Rule rule = repository.rule("S3281");

assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a6", "owaspTop10-2021:a5");
assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a6", "owaspTop10-2021:a5", "cwe:16", "cwe:693");
}

@Test
Expand All @@ -111,7 +111,7 @@ void test_security_standards_before_sq_9_3() {

RulesDefinition.Rule rule = repository.rule("S3281");

assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a6");
assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a6", "cwe:16", "cwe:693");
}

}
2 changes: 1 addition & 1 deletion sonarpedia.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"languages": [
"XML"
],
"latest-update": "2025-11-28T14:58:30.017831Z",
"latest-update": "2026-01-09T12:35:26.190144600Z",
"options": {
"no-language-in-filenames": true
}
Expand Down
Loading