This simple POC shows a good way to create a user-friendly magic link login system using AWS Cognito, Lambda and the Serverless framework.
While functional and safe, this is not production-style code.
git clone [email protected]:mojitocoder/serverless-magic-links-poc.git
cd serverless-magic-links-poc
npm install
This step is optional. You can skip this step if you are the only person to deploy this solution to a unique combination of AWS Account + AWS Region.
To ensure the deployment does not fail or interupt with another deployment from a different user, make two changes as follows::
- Open
$/frontend/package.json
, change the value ofhomepage
to a unique value, e.g.lewis
. - Open
$/frontend/src/App.js
, change the value ofbasename
to your value, e.g.lewis
- Open
$/serverless.yml
, make a similar change forcustom.stage
tag, e.g fromstage: ${opt:stage, 'dev'}
tostage: ${opt:stage, 'lewis'}
You will need to deploy the project twice to make it work properly. The sequence is: Deploy => Get some returned values to make changes to the frontend's settings => Deploy again to push updated frontend.
-
Run
npm run deploy
to do the first deployment -
Capture the URL listed in
endpoints
'POST
value, it looks like this:endpoints: POST - https://h3avtopjn8.execute-api.eu-west-1.amazonaws.com/dev/login
Note: If you lost the output of the previous npm run deploy
command on the terminal, you can run npm run sls -- info
to get the information back.
-
Open
$/frontend/src/components/LoginForm.js
, replace the value of constantloginUrl
(line 4) with the captured URL. -
Run
npm run sls -- info --verbose
to get the values ofUserPoolClientId
andUserPoolId
from theStack Outputs
. They look like this:Stack Outputs UserPoolClientId: 3l4s9hjp44tiq0jpab3f4nlhrj UserPoolId: eu-west-1_v0L9STrqo
-
Put these two values into the appropriate places in
$/frontend/src/authConfig.js
. Whilst you are here, remember to change theregion
value in this file if this service is deployed to a different region from the default ofeu-west-1
. -
Deploy the project again using
npm run deploy
to push the latest changes to the frontend to AWS.
Before you can test the magic link, you need to create at least one user in the UserPool.
- Head AWS web console, go to
Cognito
service thenManage User Pools
, e.g. https://eu-west-1.console.aws.amazon.com/cognito/users/?region=eu-west-1 - Select the pool created by your service, e.g.
sls-magic-link-poc-user-pool-lewis
- Go to
General settings \ Users and groups
to create a user. Use an email for username.
- Go to the login page's URL of your service, e.g.
https://h3avtopjn8.execute-api.eu-west-1.amazonaws.com/dev
- Make sure you put in an email address of a user you have already created in the previous step.
Once you have finished with your testing, make sure you run:
npm run sls -- remove
to remove all the artefacts of your service from AWS.
Some important things to note about this approach, which is different from most other tutorials and example code found online:
- This creates login links that are valid for longer than the default 3 minutes limit in Cognito. Link expiry can be configured without any limits.
- You don't need to open the magic link in the same browser you requested the link in for your session to be approved.
Note that we've replaced the part of the code that would normally send the email with something that just outputs it to the browser, to simplify the demo code.
- When you click 'Sign in' after entering your email address, the React app performs a
POST /login
. - This triggers a lambda that sets a custom user attribute called
authChallenge
with a value in the form of{authChallenge},{timestamp}
. It will fail if there is no user with that email address defined.authChallenge
is a random UUID. - When the user clicks on the email link (which will have a format of
/sign-in/{email},{authChallenge}
), the Amplify javascript library is used to sign the user in. - It will call
signIn(email)
first, followed bysendCustomChallengeAnswer(authChallenge)
. Upon completion, Amplify automatically stores the resulting JWT in a cookie. - It then redirects back to the home route, where the user will now be signed in.
You won't be able to get access to a user's account without knowing their email address and having access to their inbox.
Having the authChallenge
as a random UUID adds enough entropy to make brute-force attacks unlikely, especially in combination with the login throttling that AWS Cognito has as a built-in feature.
Adding an expiry date to the links (30 minutes in this example) means gaining access to old emails won't give attackers access to their accounts.
This does a AdminUpdateUserAttributes
request on every login. That method has a soft limit of 5 calls per second, which should be sufficient for most user bases, as the chance of more than 5 users signing in at the exact same second is probably very unlikely unless you have 50k+ active users.
If so, you could ask AWS to raise that soft limit, and you should be good for at least another 250k MAUs. After that, it be time to start looking into something more robust to manage your authentication needs :)
- Use a more deterministic method for generating
authChallenge
, so that if the user accidentally sends themselves more than one magic link email in a short period of time, the second send doesn't make the first link invalid. However, introducing determinism might make the system less safe if done incorrectly.