Safety. How to hide some headers (http headers) in requests

By default, the web application sends some headers to the client that allow identifying server technologies and software.

In order to make it more difficult to obtain this information, you can exclude these headers. To do this, you need to register in the web.config section in the system.webserver section:

<httpprotocol>
   <customheaders>
	  <remove name="Server"></remove>
	  <remove name="X-AspNet-Version"></remove>
	  <remove name="X-AspNetMvc-Version"></remove>
	  <remove name="X-Powered-By"></remove>
    </customheaders>
</httpprotocol>

In the Core version, you also need to add to the web.config section system.webServer/rewrite:

<outboundrules>
	<rule name="remove_server_header">
	   <match servervariable="RESPONSE_SERVER" pattern=".+"></match>
	   <action type="Rewrite"></action>
	</rule>
</outboundrules>
Falcon Space is a functional web development platform on a narrow stack MS SQL/Bootstrap. Falcon Space Gettting started
{sp-shortDemostandLinks}

Falcon Space Platform

This is a reduction in the cost of ownership

at the expense of fewer people to support

This is a quick change

while using the program

This is a modern interface

full adaptation for mobile devices

Note