Securing Web Services with Sitecore Authentication Providers in 5 easy steps[Credits to http://keithelder.net/blog/] During a complicated project involving several 3rd party system systems I discovered that I had a need to expose some Sitecore functionality to external applications. The obvious model to go with was web services, since I could readily make use of the Sitecore context system to access and alter the environment. In the many articles that I read on the subject none seemed to address the matter of security. Not so much securing the web service from access by the outside world, but providing a properly authenticated Sitecore user for the Context object, rather than simply elevating privileges through the Sitecore.SecurityModel.SecurityDisabler class. In may particular case I had a Windows application that would call into the Sitecore web service (a simple asmx file within the website) using the .Net 3.5 service reference model. This required a number of fiddly configuration steps and I thought I would share these with the community. This is my first Sitecore article so please bear with me if I have made some beginner errors or assumptions – feedback via comments is always welcome! [ Let’s examine a plausible scenario. You have a page that allows users to sign up to your site. Posting the form calls a web service by AJAX to do the work of creating the user in Sitecore. If I look at your AJAX code I will be able to see the URL of the web service. From there I can query the web service’s WSDL file and discover all the methods you provide. Some of them will do interesting things. If I’m of malintent I could create 100,000,000,000 users in your system and attempt a denial-of-service. Or much worse depending on what other methods your web service exposes. You simply can’t rely on people not finding your file. They will. Google will. A colleague once described it as “security through obscurity” and it’s a fool’s defence. Incidentally you can prevent your web service from displaying the auto-generated WSDL (as you only need that for consumer web services once your site is live. See here for more information on protecting your WSDL. Step 1: Configure HTTPSSitecore authentication is performed with usernames and passwords being transmitted in the clear, a side-effect of Forms-based authentication. It is therefore imperative that you configure https to ensure the credentials cannot be trapped in transit. There are a million articles on configuring this for a production environment, but for a dev environment I’ll save you the trouble and describe them here.
You should now be able to access Sitecore using https, though you will likely get certificate errors from your browser because the certificate isn’t signed by a trusted authority. Don’t worry about that for now, in production you will use a properly signed certificate, won’t you! Step 2: Configure your Service ReferenceI’m going to assume you already have a Visual Studio project to house the code that will call your web service (the caller). I’m also going to assume you’ve already created your web service (the callee). Mine is called HelloWorld().
When you’ve done that you should see an app.config file appear in your project, or if you had one it now has some new content. If you are in a web project you will likely have guessed to look in the web.config instead. There is a <system.serviceModel> section in there. This specifies binding and endpoint information for your auto-generated service classes. There are a few things you will need to change – the important bits are below: <bindings> Step 3: Creating the Web Service extensionsIdeally the integration of the authentication doesn’t interfere with the business logic of our methods. We can use a series of attributes and supporting service extensions to help here. SitecoreAuthenticationHeader – a custom header that will transport our credentialsusing System.Web.Services.Protocols; public class SitecoreAuthenticationHeader : SoapHeader internal SitecoreAuthenticationHeader() { } public static bool Validate( SitecoreAuthenticationHeader soapHeader ) SitecoreAuthentication – a SoapExtension class that will detect the header and pass it on for validationNote that this raises an exception when validation fails since there is no elegant way to return values with a declarative syntax. using System.Web.Services.Protocols; public class SitecoreAuthentication : SoapExtension public override void ProcessMessage( SoapMessage message ) if ( !validated ) throw new AuthenticationException( “SOAP authentication failed. Credentials not specified.” ); SitecoreAuthenticationAttribute – a SoapExtensionAttribute that tells the infrastructure to include the SitecoreAuthentication extension into the processing stackusing System.Web.Services.Protocols; public class SitecoreAuthenticationAttribute : SoapExtensionAttribute public override int Priority Step 4: Integrating Sitecore Authentication DeclarativelyWe need to add a field to the WebService class. This will receive the header but importantly it will tell the framework that there is a header of a particular type that it needs to watch out for, which triggers the rest of the wiring. using System.ServiceModel; public class WebServiceAPI : System.Web.Services.WebService [WebMethod] If you were paying attention you would also have noticed the two additional attributes on the WebMethod itself. The SoapHeaderAttribute connects up the field and the header from the soap message, while the SitecoreAuthenticationAttribute provides the connection to the SitecoreAuthentication SoapExtension that will process the header and ultimately perform the validation. The FaultException is raised by the framework and contains the message from our AuthenticationException as a subset of some other messages. Step 5: Calling the web serviceHere is some sample code for actually making a call to the HelloWorld web service method. Note that I have already configured all the other stuff as described above. public class TestClass //create an instance of the service class //specify Sitecore credentials for executing the method //execute the method passing in the credentials Of note is the first line, that overrides the systems native server certificate validation with a lambda expression that simply always evaluates to true. This gets us around the fact our certificate is self-signed, but obviously don’t put that into production code (I use an app setting to disable it usually). Also of note here, the code generator has added the header as the first parameter to my method – it will do that. It ensures you don’t forget to supply the credentials. You can re-use the header object you’ve created by storing it somewhere convenient. I’d also be inclined not to hard-wire the credentials into the code, but that is up to your particular scenario. 1, 2, 3, 4, 5…DoneOnce you’ve got all that you will notice that you have a properly validated Sitecore.Context.User and you can use code, or add more extensions, to decide whether the user that is logged in has sufficient rights to perform the action.
Leave a Reply
|