Sha256: 28a5ce3ffa43d049306a9de369efb2328d649978bddd72be157070618efe3184
Contents?: true
Size: 667 Bytes
Versions: 7
Compression:
Stored size: 667 Bytes
Contents
=begin Copyright 2010-2014 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 # Network port option. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class Arachni::Component::Options::Port < Arachni::Component::Options::Base def normalize effective_value.to_i end def valid? return false if !super (1..65535).include?( normalize ) end def type :port end end
Version data entries
7 entries across 7 versions & 1 rubygems