Sha256: 26f54cf3d7e48cb03a8bb0a395713292d5464c5ccee598011ab04f0df9a40c6e
Contents?: true
Size: 797 Bytes
Versions: 9
Compression:
Stored size: 797 Bytes
Contents
require 'spec_helper' describe Arachni::Platform::Fingerprinters::Unix do include_examples 'fingerprinter' context 'when there is an Server header' do it 'identifies it as Unix' do page = Arachni::Page.new( url: 'http://stuff.com/blah', response_headers: { 'Server' => 'Apache/2.2.21 (Unix)' } ) platforms_for( page ).should include :unix end end context 'when there is a X-Powered-By header' do it 'identifies it as Unix' do page = Arachni::Page.new( url: 'http://stuff.com/blah', response_headers: { 'X-Powered-By' => 'Stuf/0.4 (Unix)' } ) platforms_for( page ).should include :unix end end end
Version data entries
9 entries across 9 versions & 1 rubygems