Sha256: d37f549a18ec297fc6fdf6eacafb24fa360a468421882a66072c96b59ad3da22

Contents?: true

Size: 1.13 KB

Versions: 9

Compression:

Stored size: 1.13 KB

Contents

require 'spec_helper'

describe Arachni::Platform::Fingerprinters::Linux do
    include_examples 'fingerprinter'

    context 'when there is an Server header' do
        described_class::IDs.each do |id|
            context "and it contains #{id}" do
                it 'identifies it as Linux' do
                    page = Arachni::Page.new(
                        url:     'http://stuff.com/blah',
                        response_headers: { 'Server' => "Apache/2.2.21 (#{id})" }
                    )
                    platforms_for( page ).should include :linux
                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 Linux' do
                    page = Arachni::Page.new(
                        url:     'http://stuff.com/blah',
                        response_headers: { 'X-Powered-By' => "Apache/2.2.21 (#{id})" }
                    )
                    platforms_for( page ).should include :linux
                end
            end
        end
    end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
arachni-0.4.7 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.6 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.5.2 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.5.1 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.5 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.4 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.3.2 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.3.1 spec/fingerprinters/os/linux_spec.rb
arachni-0.4.3 spec/fingerprinters/os/linux_spec.rb