Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(CWE): update CWE list to 4.14 #166

Merged
merged 1 commit into from
May 22, 2024
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
23 changes: 21 additions & 2 deletions lib/shared/cwec.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export default /** @type {const} */ ({
},
{
id: 'CWE-1192',
name: 'System-on-Chip (SoC) Using Components without Unique, Immutable Identifiers',
name: 'Improper Identifier for IP Block used in System-On-Chip (SOC)',
},
{
id: 'CWE-1193',
Expand Down Expand Up @@ -569,7 +569,10 @@ export default /** @type {const} */ ({
id: 'CWE-1301',
name: 'Insufficient or Incomplete Data Removal within Hardware Component',
},
{ id: 'CWE-1302', name: 'Missing Security Identifier' },
{
id: 'CWE-1302',
name: 'Missing Source Identifier in Entity Transactions on a System-On-Chip (SOC)',
},
{
id: 'CWE-1303',
name: 'Non-Transparent Sharing of Microarchitectural Resources',
Expand Down Expand Up @@ -715,6 +718,22 @@ export default /** @type {const} */ ({
},
{ id: 'CWE-1419', name: 'Incorrect Initialization of Resource' },
{ id: 'CWE-142', name: 'Improper Neutralization of Value Delimiters' },
{
id: 'CWE-1420',
name: 'Exposure of Sensitive Information during Transient Execution',
},
{
id: 'CWE-1421',
name: 'Exposure of Sensitive Information in Shared Microarchitectural Structures during Transient Execution',
},
{
id: 'CWE-1422',
name: 'Exposure of Sensitive Information caused by Incorrect Data Forwarding during Transient Execution',
},
{
id: 'CWE-1423',
name: 'Exposure of Sensitive Information caused by Shared Microarchitectural Predictor State that Influences Transient Execution',
},
{ id: 'CWE-143', name: 'Improper Neutralization of Record Delimiters' },
{ id: 'CWE-144', name: 'Improper Neutralization of Line Delimiters' },
{ id: 'CWE-145', name: 'Improper Neutralization of Section Delimiters' },
Expand Down
Loading