How To Hide IIS Version In Http Header For Orchestrator?

How to hide IIS version in Http header for Orchestrator

HTTP Headers

An HTTP header is a field of an HTTP request or response that passes additional context and metadata about the request or response. For example, a request message can use headers to indicate it's preferred media formats, while a response can use header to indicate the media format of the returned body.

Method 1: Go the IIS Manager >> Configuration editor >> and then go to system.web/httpRuntime and make enableheaderversion to false

Also perform the below steps to hide the headers,

  • Go to IIS Manager >> Configuration editor >> and the go to system.webServer/security/requireFiltering and make enableServerheader to false


Method 2: Perform the below steps in web.config file in UiPath Orchestrator folder
Note: Take backup of Web.config file.

  1. Open the web.config file for Secret Server (located in the root directory for the website).
  2. Just after the tag add this:
  3. Save the file.

Read more on the List of HTTP Header fields .