This file is indexed.

/usr/lib/ruby/vendor_ruby/action_controller/vendor/html-scanner.rb is in ruby-actionpack-2.3 2.3.14-5.

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
$LOAD_PATH << "#{File.dirname(__FILE__)}/html-scanner"

module HTML
  autoload :CDATA, 'html/node'
  autoload :Document, 'html/document'
  autoload :FullSanitizer, 'html/sanitizer'
  autoload :LinkSanitizer, 'html/sanitizer'
  autoload :Node, 'html/node'
  autoload :Sanitizer, 'html/sanitizer'
  autoload :Selector, 'html/selector'
  autoload :Tag, 'html/node'
  autoload :Text, 'html/node'
  autoload :Tokenizer, 'html/tokenizer'
  autoload :Version, 'html/version'
  autoload :WhiteListSanitizer, 'html/sanitizer'
end