Sha256: de7338dc217aea56f277939c3c2135f71bb4a37f798aacd84ea648fd9fa65398
Contents?: true
Size: 762 Bytes
Versions: 6
Compression:
Stored size: 762 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 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
6 entries across 6 versions & 1 rubygems