Sha256: 2f84e4c2796394a8351e14d42292fcab73a7cc911e50dc52f7979469de5285da

Contents?: true

Size: 744 Bytes

Versions: 5

Compression:

Stored size: 744 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::XML

# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class PluginFormatters::LoginScript < Arachni::Plugin::Formatter

    def run( xml )
        xml.message results['message']
        xml.status results['status']

        if results['cookies']
            xml.cookies {
                results['cookies'].each { |name, value| xml.cookie name: name, value: value }
            }
        end
    end

end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-1.6.1.3 components/reporters/plugin_formatters/xml/login_script.rb
arachni-1.6.1.2 components/reporters/plugin_formatters/xml/login_script.rb
arachni-1.6.1.1 components/reporters/plugin_formatters/xml/login_script.rb
arachni-1.6.1 components/reporters/plugin_formatters/xml/login_script.rb
arachni-1.6.0 components/reporters/plugin_formatters/xml/login_script.rb