Sha256: d1529a59b70b4628cc135d48f93c061f78ddd5fe4ed76547b87b1acc9c9989cc

Contents?: true

Size: 747 Bytes

Versions: 5

Compression:

Stored size: 747 Bytes

Contents

=begin
    Copyright 2010-2022 Ecsypno <http://www.ecsypno.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 AutoLogin plugin
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class PluginFormatters::AutoLogin < Arachni::Plugin::Formatter

    def run
        print_ok results['message']

        return if !results['cookies']
        print_info 'Cookies set to:'
        results['cookies'].each_pair { |name, val| print_info "    * #{name} = #{val}" }
    end

end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-1.6.1.3 components/reporters/plugin_formatters/stdout/autologin.rb
arachni-1.6.1.2 components/reporters/plugin_formatters/stdout/autologin.rb
arachni-1.6.1.1 components/reporters/plugin_formatters/stdout/autologin.rb
arachni-1.6.1 components/reporters/plugin_formatters/stdout/autologin.rb
arachni-1.6.0 components/reporters/plugin_formatters/stdout/autologin.rb