Sha256: 5537ccd71462d9d96471db37ca88d0570b42e4cd08e155bf8ad9f7f4dfdb5da6
Contents?: true
Size: 753 Bytes
Versions: 3
Compression:
Stored size: 753 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 module Arachni::Element class Header module Capabilities # Extends {Arachni::Element::Capabilities::Inputtable} with {Header}-specific # functionality. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> module Inputtable include Arachni::Element::Capabilities::Inputtable INVALID_INPUT_DATA = [ "\0" ] def valid_input_data?( data ) !INVALID_INPUT_DATA.find { |c| data.include? c } end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems