Sha256: 7ba8ddcc85f7e070ba2e5c17261a4d4d9dc8f99307343266133dc41815ef0a17

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

require_relative '../spec_helper'

describe name_from_filename do
    include_examples 'plugin'

    before( :all ) do
        options.plugins[name] = {
            'username_list'  => spec_path + 'fixtures/usernames.txt',
            'password_list'  => spec_path + 'fixtures/passwords.txt',
        }
    end

    def results
        results_for( name_from_filename )
    end

    context "when given the right params" do
        it 'locates the form and login successfully' do
            options.url = server_url_for( name_from_filename )
            run
            results.should == { username: 'admin', password: 'pass' }
        end
    end

    context "when being unable to login" do
        it 'logs nothing' do
            options.url = server_url_for( "#{name_from_filename}_secure" )
            run
            results.should be_nil
        end
    end

    context "when the page isn't protected" do
        it 'logs nothing' do
            options.url = server_url_for( "#{name_from_filename}_unprotected" )
            run
            results.should be_nil
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
arachni-0.4.2 spec/plugins/http_dicattack_spec.rb