A topic has come up recently regarding Web Service Security. Not necessarily the bits in WSE 3.0 that you may be thinking of, but more about securing the services within a company.
For instance. We have been discussing the possibility of making certain functions available to the entire company through one or more web service endpoints. The issue comes down to who can access the web services. I see them being accessed in three different ways:
- By a website. This website may or may not be impersonating the user accessing the site, so calls to the web service may be made as a real user, the IIS service account, or another service account that we may be impersonating for other reasons
- By a batch program. Also running on a server, but usually running as a service account
- By a windows application on the user's desktop, in which case the user's credentials will be used
Now, in theory we could leave the web services open for anyone. Ignorance is bliss, right? But the issue is, if an attacker gains access to our network and discovers the web services, he would have carte blanche to intellectual property. So open is no good.
We could lock them down using some elaborate home-brewed scheme for checking IP Addresses, usernames, etc. But that seems like it would be an administrative nightmare.
Any thoughts? We are tossing around a couple of ideas, but I wanted to see if anyone may have solved this type of problem already.
Thanks