Sha256: 6957cf5daaa07023f2b8beabdba14f9cd2321267f4e873f19fd7b06d1f4cf05b

Contents?: true

Size: 746 Bytes

Versions: 6

Compression:

Stored size: 746 Bytes

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

require Arachni::Options.paths.lib + 'element/base'

module Arachni::Element

# Represents an auditable path element, currently a placeholder for a vulnerable
# path vector.
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>
class Path < Base
    include Capabilities::WithAuditor

    def initialize( url )
        super url: url
        @initialization_options = url
    end

    def action
        url
    end

end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
arachni-1.3.2 lib/arachni/element/path.rb
arachni-1.3.1 lib/arachni/element/path.rb
arachni-1.3 lib/arachni/element/path.rb
arachni-1.2.1 lib/arachni/element/path.rb
arachni-1.2 lib/arachni/element/path.rb
arachni-1.1 lib/arachni/element/path.rb