Sha256: 1159ed33aec238afa5171ad82d2700a1ab93c413937455b3195d0a8e9d1bb837

Contents?: true

Size: 1.12 KB

Versions: 9

Compression:

Stored size: 1.12 KB

Contents

require 'spec_helper'

describe Arachni::Platform::Fingerprinters::Ruby 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 Ruby' do
                    page = Arachni::Page.new(
                        url:     'http://stuff.com/blah',
                        response_headers: { 'Server' => "Apache/2.2.21 (#{id})" }
                    )
                    platforms_for( page ).should include :ruby
                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 Ruby' 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 :ruby
                end
            end
        end
    end

end

Version data entries

9 entries across 9 versions & 1 rubygems

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