Lihatlah InSpec, alat yang memungkinkan Anda "mengubah kepatuhan, keamanan, dan persyaratan kebijakan Anda menjadi pengujian otomatis."
https://www.inspec.io
Itu dapat melakukan semua pengujian konfigurasi yang Anda butuhkan untuk server Nginx Anda. Inilah satu cara untuk menguji keberadaan file conf dan nilai dari 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
Jika diatur dengan benar, InSpec mengembalikan:
✔ 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.
Jika tidak:
× 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
tidak ada hubungannya dengan versi PHP. Biasanya dikirim dalam tajuk terpisahX-Powered-By
. Saya kira Anda perlu php.net/manual/en/ini.core.php#ini.expose-php