Sha256: 24009f428fad9b913ad14c44e4ee309a01156cac029827afc0ddd575aef99bba
Contents?: true
Size: 1.09 KB
Versions: 13
Compression:
Stored size: 1.09 KB
Contents
require 'spec_helper' describe Arachni::Platform::Fingerprinters::Solaris do include_examples 'fingerprinter' def platforms [:solaris] end context 'when there is an Server header' do described_class::IDs.each do |id| context "and it contains #{id}" do it 'identifies it as Solaris' do check_platforms Arachni::Page.from_data( url: 'http://stuff.com/blah', response: { headers: { 'Server' => "Apache/2.2.21 (#{id})" } } ) end end end end context 'when there is a X-Powered-By header' do described_class::IDs.each do |id| context "and it contains #{id}" do it 'identifies it as Solaris' do check_platforms Arachni::Page.from_data( url: 'http://stuff.com/blah', response: { headers: { 'X-Powered-By' => "Apache/2.2.21 (#{id})" } } ) end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems