Sha256: 53c9aa9e50931a5c430b7d18f1e3020417e6425ba17689e8efcfe7cce9f52a1a

Contents?: true

Size: 728 Bytes

Versions: 6

Compression:

Stored size: 728 Bytes

Contents

=begin
    Copyright 2010-2015 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::Stdout

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

    def run
        print_info 'Cracked credentials:'
        print_ok "    Username: '#{results['username']}'"
        print_ok "    Password: '#{results['password']}'"
    end

end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
arachni-1.3.2 components/reporters/plugin_formatters/stdout/http_dicattack.rb
arachni-1.3.1 components/reporters/plugin_formatters/stdout/http_dicattack.rb
arachni-1.3 components/reporters/plugin_formatters/stdout/http_dicattack.rb
arachni-1.2.1 components/reporters/plugin_formatters/stdout/http_dicattack.rb
arachni-1.2 components/reporters/plugin_formatters/stdout/http_dicattack.rb
arachni-1.1 components/reporters/plugin_formatters/stdout/http_dicattack.rb