Sha256: 82988e1caafd0ed80d4e41d3a694db5eb0dbaf9244cfc27183d5c766dedccfa3
Contents?: true
Size: 576 Bytes
Versions: 12
Compression:
Stored size: 576 Bytes
Contents
require 'spec_helper' describe Arachni::Platform::Fingerprinters::Symfony do include_examples 'fingerprinter' def platforms [:php, :symfony] end context 'when there is a symfony cookie' do it 'identifies it as Symfony' do check_platforms Arachni::Page.from_data( url: 'http://stuff.com/blah', cookies: [Arachni::Cookie.new( url: 'http://stuff.com/blah', inputs: { 'symfony' => 'stuff' } )] ) end end end
Version data entries
12 entries across 12 versions & 1 rubygems