Sha256: 7cb1637a1de0374bbe7f54c60cfc95b359a47d953e12be64527603ce58f7d36e

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

=begin
                  Arachni
  Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>

  This is free software; you can copy and distribute and modify
  this program under the term of the GPL v2.0 License
  (See LICENSE file for details)

=end

module Arachni
module Reports

class Stdout
module PluginFormatters

    #
    # Stdout formatter for the results of the CookieCollector plugin
    #
    # @author: Tasos "Zapotek" Laskos
    #                                      <tasos.laskos@gmail.com>
    #                                      <zapotek@segfault.gr>
    # @version: 0.1
    #
    class CookieCollector < Arachni::Plugin::Formatter

        def run
            print_status( 'Cookie collector' )
            print_info( '~~~~~~~~~~~~~~~~~~' )

            print_info( 'Description: ' + @description )
            print_line

            @results.each_with_index {
                |result, i|

                print_info( "[#{(i + 1).to_s}] On #{result[:time]}" )
                print_info( "URL: " + result[:res]['effective_url'] )
                print_info( 'Cookies forced to: ' )
                result[:cookies].each_pair{
                    |name, value|
                    print_info( "    #{name} => #{value}" )
                }
                print_line
            }

            print_line
        end

    end

end
end

end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arachni-0.4.0.4 reports/plugin_formatters/stdout/cookie_collector.rb
arachni-0.4.0.3 reports/plugin_formatters/stdout/cookie_collector.rb
arachni-0.4.0.2 reports/plugin_formatters/stdout/cookie_collector.rb
arachni-0.4.0.1 reports/plugin_formatters/stdout/cookie_collector.rb
arachni-0.4 reports/plugin_formatters/stdout/cookie_collector.rb