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

We have a client that calls our web services. How can we make sure that it is only our client application that is calling the web service and not a client someone else created that calls our web services.

We'd like to avoid hard coding a password into the application.

share|improve this question

3 Answers

A quick answer to your question would be to look into OAuth. Implementing OAuth correctly is a process so I would read up on the protocol documentation. Here is a link to example OAuth client libraries. I would also search StackOverflow for advice on OAuth implementations.

share|improve this answer

In this case you can use two-legged OAuth. This is a variation on standard OAuth and used by companies such as SimpleGeo. Then secure the communication with https and you have robust solution.

share|improve this answer

If you don't care about clients not running in a browser, then you can use XSRF tokens, a secret per session that is either associated with some session key in your backend, or round-tripped through two separate paths, such as via a hidden form input and a cookie over a secure channel. If you can't secure the channel, you have to make the tokens single-use. See http://www.cgisecurity.com/csrf-faq.html#protectapp

You can't in the general case. A reasonably intelligent hacker can probably reverse engineer any protocol you use, and extract any secrets you embed in the source code.

share|improve this answer
What do you mean by "You can't in the general case" ? When you control the server side and have information on the server-side, you can, provably, design a fully secure system. For example nobody, not a single person, managed to play Wow on battle.net (that is: on the real Blizzard servers, in the real economy, where all the legit players play), using faked credentials. Not a single cracking group managed to do it. It is mathematically not possible when done correctly. If you control the server side and if computation happens there, it's "Game Over [TM]" for the crackers. – Gugussee Mar 1 '11 at 15:32

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.