Sha256: 2a1f9f52eaa58fabdeef17dbdd780beace5b4f1a746daf365f51ffaa61dd3ee2

Contents?: true

Size: 994 Bytes

Versions: 7

Compression:

Stored size: 994 Bytes

Contents

=begin
    Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com>

    This file is part of the Arachni Framework project and is subject to
    redistribution and commercial restrictions. Please see the Arachni Framework
    web site for more information on licensing and terms of use.
=end

class Arachni::Reporters::HTML

# HTML formatter for the results of the FormDicattack plugin.
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class PluginFormatters::FormDicattack < Arachni::Plugin::Formatter
    include TemplateUtilities

    def run
        ERB.new( tpl ).result( binding )
    end

    def tpl
        <<-HTML
            <h3>Credentials</h3>

            <dl class="dl-horizontal">
                <dt>Username</dt>
                <dd><kbd><%= escapeHTML results['username'] %></kbd></dd>

                <dt>Password</dt>
                <dd><kbd><%= escapeHTML results['password'] %><kbd></dd>
            </dl>
        HTML
    end

end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
arachni-1.0.6 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0.5 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0.4 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0.3 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0.2 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0.1 components/reporters/plugin_formatters/html/form_dicattack.rb
arachni-1.0 components/reporters/plugin_formatters/html/form_dicattack.rb