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