Skip to content

Commit 494c598

Browse files
authored
Fix: [AEA-0000] - more suppressions for fhir facade (#1927)
## Summary - Routine Change ### Details - more supressions for fhir facade
1 parent 54d6a7c commit 494c598

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

packages/cdk/resources/InspectorFilters.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,15 @@ export class InspectorFilters extends Construct {
9292
{id: "CVE-2026-23950", expiry: new Date("2026-06-01")}, // https://nvd.nist.gov/vuln/detail/CVE-2026-23950
9393
// cdk-utils repo
9494
// suppression of vulnerability in tar. Waiting for next release of node 24.x
95-
{id: "CVE-2026-24049", expiry: new Date("2026-06-01")} // https://nvd.nist.gov/vuln/detail/CVE-2026-24049
95+
{id: "CVE-2026-24049", expiry: new Date("2026-06-01")}, // https://nvd.nist.gov/vuln/detail/CVE-2026-24049
9696
// cdk-utils repo
9797
// suppression of vulnerability in python wheel installed by aws-cli. Waiting for new release upstream
98+
{id: "CVE-2025-69420", expiry: new Date("2026-06-01")}, // https://nvd.nist.gov/vuln/detail/CVE-2025-69420
99+
// fhir facade repo
100+
// suppression of vulnerability in openssl TimeStamp response verification - not applicable to our use case
101+
{id: "CVE-2026-24842", expiry: new Date("2026-06-01")} // https://nvd.nist.gov/vuln/detail/CVE-2026-24842
102+
// fhir facade repo
103+
// suppression of vulnerability in node tar - not applicable to our use case
98104

99105
]
100106

0 commit comments

Comments
 (0)