This file is indexed.

/usr/lib/ruby/vendor_ruby/rack/attack/track.rb is in ruby-rack-attack 4.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
module Rack
  class Attack
    class Track
      extend Forwardable

      attr_reader :filter

      def initialize(name, options = {}, block)
        options[:type] = :track

        if options[:limit] && options[:period]
          @filter = Throttle.new(name, options, block)
        else
          @filter = Check.new(name, options, block)
        end
      end

      def_delegator :@filter, :[]
    end
  end
end