Sha256: 2477713c5ee7b34ef79902de70b62c2018c37d554397e91358ec065b0b6a023e
Contents?: true
Size: 1.06 KB
Versions: 6
Compression:
Stored size: 1.06 KB
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::XML # XML formatter for the results of the ContentTypes plugin # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::ContentTypes < Arachni::Plugin::Formatter def run( xml ) results.each do |type, infos| infos.each do |info| xml.entry { xml.content_type type xml.url info['url'] xml.method_ info['method'] info['parameters'].each do |name, value| xml.parameters { xml.name name xml.value value } end } end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems