As I understand it, the following chain of events occurs in OAuth 2 in order to Site A to access User X's information on Site B.

  1. Site A registers with Site B, and obtains a Secret and an ID.
  2. When User X tells Site A to access Site B, User X is sent to Site B where it tells Site B that he would indeed like to give Site A permissions to specific information.
  3. Site B redirects User X back to Site A, along with an Authorization Code.
  4. Site A then passes that Authorization Code along with its Secret back to Site B in return for a Security Token.
  5. Site A then makes requests to Site B on behalf of User X by bundling the Security Token along with requests.

How does all of this work in terms of security and encryption, on a high-level? How does OAuth 2 protect against things like replay attacks using the Security Token?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 9 down vote accepted

I'm answering my own question in case anyone else was wondering the same thing.

Based on what I've read, this is how it all works:

The general flow outlined in the question is correct. In step 2, User X is authenticated, and is also authorizing Site A's access to User X's information on Site B. In step 4, the site passes its Secret back to Site B, authenticating itself, as well as the Authorization Code, indicating what it's asking for (User X's access token).

Overall, OAuth 2 actually is a very simple security model, and encryption never comes directly into play. Instead, both the Secret and the Security Token are essentially passwords, and the whole thing is secured only by the security of the https connection.

OAuth 2 has no protection against replay attacks of the Security Token or the Secret. Instead, it relies entirely on Site B being responsible with these items and not letting them get out, and on them being sent over https while in transit (https will protect URL parameters).

The purpose of the Authorization Code step is simply convenience, and the Authorization Code is not especially sensitive on its own. It provides a common identifier for User X's access token for Site A when asking Site B for User X's access token. Just User X's user id on Site B would not have worked, because there could be many outstanding access tokens waiting to be handed out to different sites at the same time.

link|improve this answer
4  
You've overlooked an important function of the authorization code. Why not just return the refresh token (what you call the Security Token) immediately, instead of having the extra step of swapping the authorization code for it? Because capturing the refresh token would allow replay attacks, whereas the authorization code can only be used once. – mauricen May 11 '11 at 4:12
feedback

Your Answer

 
or
required, but never shown

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