Skip to content

Commit c18261a

Browse files
Merge pull request #5235 from github/mfulton26-GHSA-v4mq-x674-ff73
2 parents da59c2b + 493e094 commit c18261a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

advisories/github-reviewed/2025/01/GHSA-v4mq-x674-ff73/GHSA-v4mq-x674-ff73.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-v4mq-x674-ff73",
4-
"modified": "2025-01-17T21:57:03Z",
4+
"modified": "2025-01-17T21:57:05Z",
55
"published": "2025-01-17T21:22:25Z",
66
"aliases": [
77
"CVE-2025-23206"
88
],
99
"summary": "AWS Cloud Development Kit (AWS CDK) IAM OIDC custom resource allows connection to unauthorized OIDC provider",
1010
"details": "### Impact\nUsers who use IAM OIDC custom resource provider package will download CA Thumbprints as part of the custom resource workflow, https://github.com/aws/aws-cdk/blob/d16482fc8a4a3e1f62751f481b770c09034df7d2/packages/%40aws-cdk/custom-resource-handlers/lib/aws-iam/oidc-handler/external.ts#L34. \n\nHowever, the current `tls.connect` method will always set `rejectUnauthorized: false` which is a potential security concern. CDK should follow the best practice and set `rejectUnauthorized: true`. However, this could be a breaking change for existing CDK applications and we should fix this with a feature flag. \n\nNote that this is marked as low severity Security advisory because the issuer url is provided by CDK users who define the CDK application. If they insist on connecting to a unauthorized OIDC provider, CDK should not disallow this. Additionally, the code block is run in a Lambda environment which mitigate the MITM attack.\n\nAs a best practice, CDK should still fix this issue under a feature flag to avoid regression.\n\n```\npackages/@aws-cdk/custom-resource-handlers/lib/aws-iam/oidc-handler/external.ts\n❯❱ problem-based-packs.insecure-transport.js-node.bypass-tls-verification.bypass-tls-verification\nChecks for setting the environment variable NODE_TLS_REJECT_UNAUTHORIZED to 0, which disables TLS\nverification. This should only be used for debugging purposes. Setting the option rejectUnauthorized\nto false bypasses verification against the list of trusted CAs, which also leads to insecure\ntransport.\n```\n\n### Patches\nThe patch is in progress. To mitigate, upgrade to CDK v2.177.0 (Expected release date 2025-02-22). \nOnce upgraded, please make sure the feature flag '@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections' is set to true in `cdk.context.json` or `cdk.json`. More details on feature flag setting is [here](https://docs.aws.amazon.com/cdk/v2/guide/featureflags.html).\n\n### Workarounds\nN/A\n\n### References\nhttps://github.com/aws/aws-cdk/issues/32920\n",
1111
"severity": [
12-
{
13-
"type": "CVSS_V4",
14-
"score": "CVSS:4.0/AV:N/AC:H/AT:P/PR:H/UI:A/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X"
15-
}
12+
1613
],
1714
"affected": [
1815
{
@@ -28,11 +25,14 @@
2825
"introduced": "0"
2926
},
3027
{
31-
"last_affected": "2.176.0"
28+
"fixed": "2.177.0"
3229
}
3330
]
3431
}
35-
]
32+
],
33+
"database_specific": {
34+
"last_known_affected_version_range": "<= 2.176.0"
35+
}
3636
}
3737
],
3838
"references": [

0 commit comments

Comments
 (0)