Sha256: 759a07bf424d6de7856e52612051944dd8e8e4d9791b58acd3ff669e25453598

Contents?: true

Size: 847 Bytes

Versions: 5

Compression:

Stored size: 847 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

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

    def run
        results.each do |stage, data|
            print_status "#{stage}: #{data['executable']}"
            print_info "Status:  #{data['status']}"
            print_info "PID:     #{data['pid']}"
            print_info "Runtime: #{data['runtime']}"
            print_info "STDOUT:  #{data['stdout']}"
            print_info "STDERR:  #{data['stderr']}"
        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/stdout/exec.rb
arachni-1.6.1.2 components/reporters/plugin_formatters/stdout/exec.rb
arachni-1.6.1.1 components/reporters/plugin_formatters/stdout/exec.rb
arachni-1.6.1 components/reporters/plugin_formatters/stdout/exec.rb
arachni-1.6.0 components/reporters/plugin_formatters/stdout/exec.rb