Disable IIS header information
For security purposes, Milestone recommends that you disable the X-Powered-By HTTP and X-AspNet-Version headers.
The HTTP header X-Powered-By reveals the version of IIS being used on the server. Disable this header by doing the following:
- Open the IIS Manager.
- Select the Default website.
- Select HTTP Response Headers.
- Select the X-Powered-By HTTP header and select Remove.
The HTTP header X-AspNet-Version reveals the version of ASP.NET being used by the Management Server application pool. Disable this header by doing the following:
- Open the web.config file located in %windir%\Microsoft.NET\Framework\v4.0.30319\CONFIG.
- After the <system.web> tag, add this: <httpRuntime enableVersionHeader="false" />
- Save the file.
The SERVER header variable should not be removed, because it will cause functionality within Management Server to break.
Was this article helpful?
Thanks for your feedback!