Open dchallener opened 2 hours ago
Hi there @dchallener!
Firstly, a big thank you for raising this issue. Every piece of feedback we receive helps us to make Umbraco better.
We really appreciate your patience while we wait for our team to have a look at this but we wanted to let you know that we see this and share with you the plan for what comes next.
We wish we could work with everyone directly and assess your issue immediately but we're in the fortunate position of having lots of contributions to work with and only a few humans who are able to do it. We are making progress though and in the meantime, we will keep you in the loop and let you know when we have any questions.
Thanks, from your friendly Umbraco GitHub bot :robot: :slightly_smiling_face:
Which Umbraco version are you using? (Please write the exact version, example: 10.1.0)
13.5.2
Bug summary
If you invite a user and the link is visited more than once the link doesn't work and a token is invalid message is displayed.
Specifics
This only happens for links that are visited multiple times - whether this is by a user by accident/on purpose or by a mail scanner or corporate link checker.
From what I can see is happening is that when the invite is sent out a user is created in the db with a generated
securityStampToken
that is used in the token sent to the new user. When the link is visited, the email is confirmed and the db table is updated with anemailConfirmedDate
- which in turn generates a newsecurityStampToken
. The next time the link is visited the token is validated again which no longer matches this token and fails.It looks very similar to this reported issue in aspnet core https://github.com/dotnet/aspnetcore/issues/32681 but hopefully something that can be resolved within Umbraco.
Steps to reproduce
Expected result / actual result
A user should be able to visit this link until they have logged in successfully.
Possibly excluding the
emailConfirmedDate
field from the Identity generated securityStamp is the way forward here?