Sha256: 63184fece1b336732bdc37f201377fb84d8ba282f60f943892c41db069ab6d17

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 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 HTML
module PluginFormatters

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

        def run
            return ERB.new( tpl ).result( binding )
        end

        def tpl
            %q{
                    <ul>
                    <%@results.each do |issue| %>
                        <li>
                            <a href="#issue_<%=issue['index']%>">
                                [#<%=issue['index']%>] <%=issue['name']%> at <%=issue['url']%>
                            </a>
                        </li>
                    <%end%>
                    </ul>
            }
        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/html/discovery.rb
arachni-0.4.0.3 reports/plugin_formatters/html/discovery.rb
arachni-0.4.0.2 reports/plugin_formatters/html/discovery.rb
arachni-0.4.0.1 reports/plugin_formatters/html/discovery.rb
arachni-0.4 reports/plugin_formatters/html/discovery.rb