This file is indexed.

/usr/lib/ruby/vendor_ruby/domain_name/etld_data.rb.erb is in ruby-domain-name 0.5.20160216-2.

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
class DomainName
  ETLD_DATA_DATE = '<%= etld_data_date.utc.strftime('%Y-%m-%dT%H:%M:%SZ') %>'

  ETLD_DATA = {
<% etld_data.each_pair { |key, value| %>    <%= key.inspect %> => <%= value.inspect %>,
<% } %>  }

  def self.etld_data
    ETLD_DATA
  end
end