class Arachni::Component::Options::Path

Network address option.

@author Tasos “Zapotek” Laskos <tasos.laskos@arachni-scanner.com>

Public Instance Methods

type() click to toggle source
# File lib/arachni/component/options/path.rb, line 19
def type
    :path
end
valid?() click to toggle source
# File lib/arachni/component/options/path.rb, line 14
def valid?
    return false if !super
    File.exists?( effective_value )
end