=begin Copyright 2010-2016 Tasos Laskos 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 HTTPDicattack plugin # # @author Tasos "Zapotek" Laskos class PluginFormatters::HTTPDicattack < Arachni::Plugin::Formatter def run( xml ) xml.username results['username'] xml.password results['password'] end end end