HTTP headers | Server Last Updated : 28 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The HTTP Server header is a response-type header that contains the information about the used software by the server to handle all the requests. This header will only a few details of the server like the server name software like sffe, cloudflare etc. Hide all the important information because that can be easier for attackers to attack that server software. Syntax: Server: <product> Directives: The HTTP Server header accepts single directive that mentioned above and described below: <product>: This directive contains the name of the software that has been used by the server. Below examples will illustrates the HTTP Server header: Example: In this example the name of the software used by the server is Cloudflare. server: cloudflare In this example the server name is Akamai Resource Optimizer and it is also showing the server-timing header with that. server: Akamai Resource Optimizer server-timing: cdn-cache; desc=HIT server-timing: edge; dur=1 To check the Server in action go to Inspect Element -> Network check the response header for Server like below, Server is highlighted. Supported Browsers: The browsers are compatible with the HTTP Server header are listed below: Google Chrome Internet Explorer Firefox Safari Opera Comment More infoAdvertise with us Next Article HTTP headers | Server V varunsv29102001 Follow Improve Article Tags : Computer Networks HTTP-headers Similar Reads HTTP headers | Origin The Origin HTTP Header is a response HTTP header that indicates the security contexts that initiates an HTTP request without indicating the path information. The Origin header is added by the browser and can not be controlled by the user. Syntax: Origin: <scheme> "://" <hostname> ":" 1 min read HTTP headers | Host The HTTP Host represents the domain name of the server. It may also represent the Transmission Control Protocol (TCP) port number which the server uses. Defining the port number is optional, the default value is considered. For example, "80" is assigned as the port number for an HTTP URL when there 1 min read Tornado- HTTP servers and clients Tornado is a Python web framework and a library for async networks. It is meant for non-blocking, highly effective apps. Tornado has become popular because it can handle large numbers of simultaneous connections easily. In this article, we will explain Tornado HTTP servers and clients. What are HTTP 4 min read DNS server A DNS (Domain Name System) server is a computer that helps convert human-readable domain names (like www.example.com) into IP addresses (like 192.0.2.1) that computers can use to identify each other on the internet. To understand how a DNS server works, imagine it as a large phonebook for the intern 4 min read HTTP headers | Forwarded HTTP headers allow client and server to pass supplementary information with an HTTP request or HTTP response. Headers can be classified according to their context. General headers contain information about both request and response but no relation with the data being transmitted. Request headers con 2 min read Like