A Netcraft não conhece o histórico do sistema operacional, pois alguns servidores da Web podem ser configurados para fins de segurança, não para fornecer informações / sequências que não sejam consideradas apropriadas.
Por exemplo, o servidor web Apache pode ser configurado, no Debian, no arquivo /etc/apache2/conf-available/security.conf
as:
ServerTokens Prod
ServerSignature Off
A configuração de segurança também é normalmente ativada por padrão no Apache, caso contrário você teria que executar:
sudo a2enconf security
Nos comentários do arquivo:
ServerTokens: This directive configures what you return as the Server HTTP response
Header. The default is 'Full' which sends information about the OS-Type and compiled in modules. Set to one of: Full | OS | Minimal | Minor | Major | Prod
where Full conveys the most information, and Prod the least.ServerSignature: Optionally add a line containing the server version and virtual host name to server-generated pages (internal error documents, FTP directory listings, mod_status and mod_info output etc., but not CGI generated documents or custom error documents).
Set to "EMail" to also include a mailto: link to the ServerAdmin.
Set to one of: On | Off | EMail
Quanto às alterações de endereço IP, um IP flutuante em um longo período de tempo pode significar a mudança de ISP / provedores de hospedagem. Mudanças de IP mais frequentes podem significar que o site está hospedado em uma conexão residencial ISP / home, ou pode significar que o nome do servidor da Web está trabalhando com vários endereços IP.
Como teste, com ServerTokens Prod
e ServerSignature Off
:
$telnet localhost 80
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET / HTTP/1.1
HTTP/1.1 400 Bad Request
Date: Fri, 09 Jun 2017 17:18:08 GMT
Server: Apache
Sem essa configuração de segurança, você teria outra forma:
$telnet localhost 80
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
GET / HTTP/1.1
HTTP/1.1 400 Bad Request
Date: Fri, 09 Jun 2017 17:23:25 GMT
Server: Apache/2.4.10 (Debian) SVN/1.8.10 mod_jk/1.2.37 OpenSSL/1.0.2j