vote up 1 vote down star
1

We have a client/server application with a rich client front end (in .Net) and also an administration portal (Asp.Net). Currently users have to sign on in both the rich client and on the website. We'd like to enable them to sign into the rich client, but not have to sign on to the website if they launch it from within the client. How can we do that?

Going the other way is less important, but would be nice if possible: signing on to the website, then not having to sign into the rich client.

flag

72% accept rate

5 Answers

vote up 2 vote down check

A possible solution is:

  • sign-in to the rich client
  • a random token is generated by the server and stored againsed the signed-in user
  • rich client gets that tocken from the server
  • that tocken is used in the url pointing to the website
  • going to that url (using a link or a button from the rich client) will auto-login the user and reset the token
link|flag
vote up 0 vote down

You could add a token, to identify them, to the URL which opens the site.

You'll have to add some security to the token: TTL, a hash, a salt

link|flag
vote up 1 vote down

Make sure there is a timeout on the token, say 2-5 minutes, to ensure it is authentic.

link|flag
vote up 1 vote down

simple token solutions suffer from a design flaw: you will have some sort of secret that can be reverse-engineered if wanted. this can be avoided entirely if dome correct.

i would propose a challenge-response algorithm.

*) user loggs in to rich client with pw

*) from salt+password a sha256 or similar hash is calculated. (Hash A)

*) user klicks "go to website" link.

*) a http response is started (such as as a webservice), user fetches "get ticket number" for user account. this ticket will be valid for a short time (some minutes)

*) client calculates hash(HashA+ticket) HashB

*) finally - browser is pointed to www.example.org/?username=donkey&key=99754106633f94d350db34d548d6091a

*) server checks if his calculated hash is the same as the one submitted.

advantages of this method:

-server never knows password, only salted hash.

-even the hash is never transmitted through the wire -> no replay attacks.

link|flag
vote up 1 vote down

How about OAuth?

An open protocol to allow secure API authorization in a simple and standard method from desktop and web applications.

link|flag

Your Answer

Get an OpenID
or

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