Dê uma olhada no InSpec, uma ferramenta que permite "transformar seus requisitos de conformidade, segurança e outros requisitos de política em testes automatizados".
https://www.inspec.io
Ele pode fazer todos os testes de configuração necessários para o servidor Nginx. Aqui está uma maneira de testar a existência do arquivo conf e o valor de server_tokens
:
conf_path = '/etc/nginx/nginx.conf'
control 'Server tokens should be off' do
describe file(conf_path) do
it 'The config file should exist and be a file.' do
expect(subject).to(exist)
expect(subject).to(be_file)
end
end
if (File.exist?(conf_path))
Array(nginx_conf(conf_path).params['http']).each do |http|
describe "http:" do
it 'server_tokens should be off if found in the http context.' do
Array(http["server_tokens"]).each do |tokens|
expect(tokens).to(cmp 'off')
end
end
end
end
end
end
Se definido corretamente, o InSpec retornará:
✔ Server tokens should be off: File /etc/nginx/nginx.conf
✔ File /etc/nginx/nginx.conf The config file should exist and be a file.
✔ http: server_tokens should be off if found in the http context.
Se não:
× Server tokens should be off: File /etc/nginx/nginx.conf (1 failed)
✔ File /etc/nginx/nginx.conf The config file should exist and be a file.
× http: server_tokens should be off if found in the http context.
expected: "off"
got: ["on"]
(compared using `cmp` matcher)
server_token
não tem nada a ver com a versão PHP. Geralmente é enviado em cabeçalho separadoX-Powered-By
. Eu acho que você precisa de php.net/manual/pt/ini.core.php#ini.expose-php #