Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When designing a REST API or service are there any established best practices for dealing with security (Authentication, Authorization, Identity Management) ?

When building a SOAP API you have WS-Security as a guide and much literature exists on the topic. I have found less information about securing REST endpoints.

While I understand REST intentionally does not have specifications analogous to WS-* I am hoping best practices or recommended patterns have emerged.

Any discussion or links to relevant documents would be very much appreciated. If it matters, we would be using WCF with POX/JSON serialized messages for our REST API's/Services built using v3.5 of the .NET Framework.

share|improve this question

10 Answers

up vote 116 down vote accepted

As tweakt said, Amazon S3 is a good model to work with. Their request signatures do have some features (such as incorporating a timestamp) that help guard against both accidental and malicious request replaying.

The nice thing about HTTP Basic is that virtually all HTTP libraries support it. You will, of course, need to require SSL in this case because sending plaintext passwords over the net is almost universally a bad thing. Basic is preferable to Digest when using SSL because even if the caller already knows that credentials are required, Digest requires an extra roundtrip to exchange the nonce value. With Basic, the callers simply sends the credentials the first time.

Once the identity of the client is established, authorization is really just an implementation problem. However, you could delegate the authorization to some other component with an existing authorization model. Again the nice thing about Basic here is your server ends up with a plaintext copy of the client's password that you can simply pass on to another component within your infrastructure as needed.

share|improve this answer
9  
As is mentioned here (thebuzzmedia.com/…), Amazon S3 is apparently very similiar to two legged OAuth. It might be easier just to standardize on that. – Will Sargent May 30 '11 at 21:59
134  
@magallanes: Your advice is dangerous and ignorant. Using SSL is always a good idea. – Greg Hewgill Mar 21 '12 at 21:46
SSL is an important part of security, but not all applications require that level of encryption. If someone steals in-transit what you are going to post publicly on Twitter, is that such a significant drawback? For the majority of API's SSL encryption is going to be preferred. The infrastructure requirements of SSL are somewhat higher than with plaintext and no intermediate (read here edge based) caching servers can participate in the caching of repeatedly accessed content. Beware, your scalability may suffer if you absolutely require the encryption offered. – Norman H Jan 1 at 22:19
6  
@NormanH: Your argument is specious, because if somebody can see the entire transaction that I use to post to Twitter, then they could therefore impersonate me and post their own messages under my name. – Greg Hewgill Jan 2 at 0:51
@GregHewgill yes, I did consider that, however authentication tokens could be encrypted even though the entire channel is not SSL encrypted. – Norman H Jan 2 at 18:11
show 1 more comment

There are no standards for REST other than HTTP. There are established REST services out there. I suggest you take a peek at them and get a feel for how they work.

For example, we borrowed a lot of ideas from Amazon's S3 REST service when developing our own. But we opted not to use the more advanced security model based on request signatures. The simpler approach is HTTP Basic auth over SSL. You have to decide what works best in your situation.

Also, I highly recommend the book RESTful Web Services from O'reilly. It explains the core concepts and does provide some best practices. You can generally take the model they provide and map it to your own application.

share|improve this answer
3  
RESTful Web Services is definitely a great book. A must read in this area. It was downright inspiring. – EdgarVerona Jan 9 '09 at 21:34
5  
How is it that @aehlke has received so many upvotes for that comment considering (1) there is no such thing as a REST specification and (2) the Fielding Dissertation on the Architectural Styles and the Design of Network-based Software Architectures explicitly mentions REST and HTTP in 6.3: REST Applied to HTTP. – Brian Reindel Apr 15 '12 at 0:37
HTTP is not a requirement for REST. – nategood May 16 at 19:21

You may also want to take a look at OAuth, an emerging open protocol for token-based authorization specifically targeting http apis.

It is very similar to the approach taken by flickr and remember the milk "rest" apis (not necessarily good examples of restful apis, but good examples of the token-based approach).

share|improve this answer
2  
But it seems that 2-legged oAuth, which i think is what is need here, isn't covered (lack of info) as much as the 3-legged one. – redben Nov 11 '10 at 0:04

I'm kind of surprised SSL with client certificates hasn't been mentioned yet. Granted, this approach is only really useful if you can count on the community of users being identified by certificates. But a number of governments/companies do issue them to their users. The user doesn't have to worry about creating yet another username/password combination, and the identity is established on each and every connection so communication with the server can be entirely stateless, no user sessions required. (Not to imply that any/all of the other solutions mentioned require sessions)

share|improve this answer
We actually do use this for some integrations as well as encrypted vpn tunnels to support older systems that we don't control that can not communicate over https. – Casey Sep 5 '12 at 13:55
Client certs can make trouble when you need load balancing... it can be done, but it's less straight-forward. – fiXedd Oct 15 '12 at 18:11
@fiXedd - The opposite has been my experience with client certs because they are truly stateless. Client cert authenticated connections can be load balanced with a dumb load balancer with no regard to connection stickyness because they require absolutely zero shared state between the client and server. – stinkymatt Oct 15 '12 at 19:25
1  
Oh, you can do it.... you can just have the load balancer forward the TCP traffic, but you can't, for instance, have the load balancer be the termination point for the SSL. – fiXedd Oct 19 '12 at 16:12

One of the best posts I've ever come across regarding Security as it relates to REST is over at 1 RainDrop. The MySpace API's use OAuth also for security and you have full access to their custom channels in the RestChess code, which I did a lot of exploration with. This was demo'd at Mix and you can find the posting here.

share|improve this answer
Thanks for the link (1 RainDrop) - very interesting discussion of security as it relates to SOAP v REST – Nathan Oct 13 '08 at 23:07

OAuth FTW! I've used it a few times, and also used some other methods (BASIC/DIGEST). I wholeheartedly suggest you use OAuth. The following link is the best tut I've seen on using OAuth:

http://hueniverse.com/oauth/guide/

Also... you may want to look at the NetFlix API documentation.

http://developer.netflix.com/docs

You should be able to use their services to get an idea of how it works pretty quickly.

share|improve this answer

Thanks for the excellent advice. We ended up using a custom HTTP header to pass an identity token from the client to the service, in preparation for integrating our RESTful API with the the upcoming Zermatt Identity framework from Microsoft. I have described the problem here and our solution here. I also took tweakt's advice and bought RESTful Web Services - a very good book if you're building a RESTful API of any kind.

share|improve this answer
This approach sounds fishy to me. What prevents an attacker from using the identity token to masquerade the client? HTTPS doesn't protect the URL or headers the last time I checked... – Gili Oct 3 '08 at 18:10
2  
Hmmm...not sure you're right about that. I believe that except for the few headers required to understand what kind of encryption is required, all other headers are encrypted. – Nathan Oct 29 '08 at 23:23
33  
That is wrong. HTTPS protects EVERYTHING. It goes: TCP handshake... TLS handshake... <ENCRYPTED> GET /foo 200 OK... teardown </ENCRYPTED>. – Mark Renouf Feb 4 '09 at 13:31
I also used custom headers to pass a token. – Taras B Jan 25 '11 at 11:22
2  
The Wayback Machine is a beautiful thing: problem description and solution – cjc343 Oct 23 '12 at 20:03
show 3 more comments

I searched a lot about restful ws security and we also ended up with using token via cookie from client to server to authenticate the requests . I used spring security for authorization of requests in service because I had to authenticate and authorized each request based on specified security policies that has already been in DB.

share|improve this answer

REST itself offers no security standards, but things like OAuth and SAML are rapidly becoming the standards in this space. However, authentication and authorization are only a small part of what you need to consider. Many of the known vulnerabilities relating to web applications apply very much to REST apis. You have to consider input validation, session cracking, inappropriate error messages, internal employee vulnerabilities and so on. It is a big subject.

share|improve this answer

I would recommend OAuth 2/3. You can find more information at http://oauth.net/2/

share|improve this answer
Care to elaborate why would you recommend version 2 when it remains largely incomplete? IMHO, version 1.0a remains a solid solution for most apps. – Claude Mar 20 at 22:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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