vote up 1 vote down star

I'm adding optional OpenID authentication to the system. Everything works smoothly with DotNETOpenID. Yet, I get an issue when:

  1. User logs into the web application using a standard login (FormsAutentication)
  2. User associates some OpenID with the account (we use programmatic OpenID logon here to get the claimed identity)
  3. User logs out of the FormsAuthentication and logs back in with the OpenID (using the Login control).

At the last step we get a replay attack error. I suspect that OpenID persists some information in the application store (to be used for requests) which is used to get the previous request, instead of starting a new one.

Could anyone help shed some light on the problem here?

If the issue is how I've understood it, how could I cleanup this specific state information after successfully binding the OpenID to account using the programmatic login (given that I've got successful request at hand)?

flag

73% accept rate
1  
First of all, in your repro steps you mentioned the user logs in with your programmatic login, and then later logs in using the Login control. So are these two different login pages, one programmatic and one using the OpenIdLogin control? Or is it the same programmatic login page? I'm not sure if that's significant, but I just wanted a clear picture in my head of your scenario. – Andrew Arnott Jul 24 at 13:54
Hi Andrew, thanks for the library and for replying! 1. URL is absolutely clean, the provider being tested against is Google. 2. There is only one login page (that uses either login/pass or Open ID Logon control to authenticate). Authenticated users have access to association page, where they can bind some OpenID to current account. This binding happens by running programmatic OpenID request against he provider and saving the claimed identity Url to the persistence repository. Does this make any sense to you? – Rinat Abdullin Jul 24 at 16:22
typo: "against the provider" – Rinat Abdullin Jul 24 at 16:23
In that case, what I think I need to help diagnose the problem is logs from the entire repro that you describe. See dotnetopenauth.net:8000/wiki/CodeSnippets/… for how to get logs. – Andrew Arnott Jul 27 at 13:39

2 Answers

vote up 0 vote down check

Ok, the the actual problem seems to go away after adding Session.Abandon() (and cleaning up auth logic a bit) between the moment of first OpenID assignment and actual authentication with it.

link|flag
vote up 1 vote down

Which Provider are you testing against? Honestly it sounds like the most likely guilty party in this case since it makes up the openid.response_nonce value. Another likely place to look is are you (by chance) maintaining all the openid.* querystring parameters in the URL between the first and second logins? For example, at the second login page before the user enters their OpenID, are their openid.* parameters in the URL of the page? If so, that's likely the problem and it can be fixed by your programmatic page causing a clean redirect to get rid of them after a login attempt.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.