Skip to content

Commit d02e64a

Browse files
authored
fix(cognito): fix logging behaviour for user pool client custom resource (#33983)
### Issue # (if applicable) GHSA GHSA-qq4x-c6h6-rfxh ### Reason for this change ## Problem Summary Cognito User Pool Client secret being logged by a custom resource lambda function in the AWS Cloud Development Kit (CDK). ## Root Cause If the customer opts to generate a secret for the app client and refers to the field userPoolClientSecret, the getter method in CDK get userPoolClientSecret() triggers the creation of an AwsCustomResource to retrieve the client secret using an SDK API call (describeUserPoolClient). However, the API response includes the client secret value, which gets logged in the Lambda function. ### Description of changes - Change the logging behaviour in custom resource to hide logging of data associated with the API call response using Logging.withDataHidden(). - Add feature flag `@aws-cdk/cognito:logUserPoolClientSecretValue` to keep the existing logging behaviour for customers, by default the value is set to false to fix the identified vulnerability. ### Describe any new or updated permissions being added None ### Description of how you validated changes - Added unit test for both cases of feature flag. - Modified integ test with overriden feature flag default value. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent a67c3f5 commit d02e64a

File tree

34 files changed

+2318
-3072
lines changed

34 files changed

+2318
-3072
lines changed

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/asset.746da84b10e215c552e68b6d2061024e4429f0386f43a35ef5e4d2940655692e/index.js

-1
This file was deleted.

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/asset.cde607091ceabfbfb56e643cd4a5647680cfaf19c63f4d59b3f4880df4a71c8d/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/cdk.out

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/integ-user-pool-client-explicit-props.assets.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/integ-user-pool-client-explicit-props.template.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
{
130130
"Ref": "myuserpoolmyuserpoolclientAFB2274E"
131131
},
132-
"\"}}"
132+
"\"},\"logApiResponseData\":false}"
133133
]
134134
]
135135
},
@@ -153,7 +153,7 @@
153153
{
154154
"Ref": "myuserpoolmyuserpoolclientAFB2274E"
155155
},
156-
"\"}}"
156+
"\"},\"logApiResponseData\":false}"
157157
]
158158
]
159159
},
@@ -229,7 +229,7 @@
229229
"S3Bucket": {
230230
"Fn::Sub": "cdk-hnb659fds-assets-${AWS::AccountId}-${AWS::Region}"
231231
},
232-
"S3Key": "746da84b10e215c552e68b6d2061024e4429f0386f43a35ef5e4d2940655692e.zip"
232+
"S3Key": "cde607091ceabfbfb56e643cd4a5647680cfaf19c63f4d59b3f4880df4a71c8d.zip"
233233
},
234234
"Handler": "index.handler",
235235
"Role": {

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/integ.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-client-explicit-props.js.snapshot/manifest.json

+185-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)