HOW TO: Limit the Web Services Protocols that a Server Permits (815150)
The information in this article applies to:
- Microsoft ASP.NET (included with the .NET Framework) 1.0
- Microsoft ASP.NET (included with the .NET Framework 1.1)
- Microsoft Web Services (included with the .NET Framework) 1.0
- Microsoft Web Services (included with the .NET Framework 1.1)
SUMMARYThis step-by-step article describes how to limit the
protocols that a Web service supports. XML-based Web services exchange XML
documents to communicate. This exchange can occur across any type of
application-layer protocol. By default, ASP.NET Web services are exposed through four
different protocols: HttpSoap, HttpPost, HttpGet, and Documentation.
In many cases, only a subset of these four protocols is required. For
example, Web services typically use only the HttpSoap
protocol for communications. In these circumstances, if you remove the unused
protocols, you increase the security of the application by decreasing the attack
surface. This article describes how to disable Web services protocols that are used to
communicate with an ASP.NET application. back to the topDisable Web Services ProtocolsTo disable a Web
Services protocol for an ASP.NET application, follow these steps:
- Open the Web.config file in a text editor (such as Notepad).
The Web.config file is located in the root folder of you Web service
application.
- Add the <webServices> configuration element under the
<system.web> element.
- In the <webServices> element, add the
<protocols> configuration element.
- In the <protocols> element, add a <remove>
element for each default protocol that you want to disable.
- In each of the
<remove> elements that you created in step 4, set the name attribute to the name of a protocol that you want to disable.
- By default, the HttpPost, HttpSoap, HttpGet, and
Documentation protocols are enabled. The following example of the
<webServices> configuration element disables all default protocols except
HttpSoap:
<webServices>
<protocols>
<remove name="HttpPost"/>
<remove name="HttpGet"/>
<remove name="Documentation"/>
</protocols>
</webServices> - Save the Web.config file. The Web service will
restart automatically, and will return error messages for all requests that are in disabled
protocols.
back to the
topREFERENCES For more information, visit the following Microsoft Web sites:
For additional information, click the following article numbers to view the articles in the Microsoft Knowledge Base:
815179
HOW TO: Create the Web.config File for an ASP.NET Application
815178 HOW TO: Edit the Configuration of an ASP.NET Application
818014 HOW TO: Secure Applications That Are Built on the .NET Framework
back to the
top
Modification Type: | Major | Last Reviewed: | 8/18/2003 |
---|
Keywords: | kbWebForms kbWebServices kbConfig kbHOWTOmaster KB815150 kbAudITPRO |
---|
|