Amazon Cognito
Last updated
Last updated
Amazon Cognito provides authentication, authorization, and user management for customer's web and mobile applications. Users can sign in directly with a user name and password, or through a third party such as Facebook, Amazon, Google, Apple, or enterprise identity providers via SAML 2.0 and OpenID Connect.
The two main components of Amazon Cognito are user pools
and identity pools
. User pools
are user directories that provide sign-up and sign-in options for application users. Identity pools
enable developers to grant users access to other AWS services.
An user signs in through a user pool
and receives user pool tokens (JWT tokens) after a successful authentication
An application exchanges the user pool tokens for AWS credentials through an identity pool
The user can use the AWS credentials to access other AWS services such as Amazon S3 or DynamoDB
Identity pool ID allows you to fetch temporary AWS credentials that may have extra AWS permissions. As a result, it may be possible to get unauthenticated access to sensitive AWS services.
Identity pool IDs can be stored client-side, for example within JavaScript, or returned in a response.
References:
If an application allows writing user attributes of an internally used AWS user pool, it can be used to abuse the trust between the application and the pool. In other words, it is possible to change the attributes and issue the JWT token, that will be used by an application. For instance, if an application uses normalized emails (in lower case), you can change one letter in an email address to an upper-case equivalent and takeover an account.
References: