Sha256: 5266ba1959af42fb81033767daa6a3b72b6ad64e4a762f293c7e2f2a34b5c9ef

Contents?: true

Size: 976 Bytes

Versions: 17

Compression:

Stored size: 976 Bytes

Contents

# frozen_string_literal: true
module SecureHeaders
  class XXssProtectionConfigError < StandardError; end
  class XXssProtection
    HEADER_NAME = "X-XSS-Protection".freeze
    DEFAULT_VALUE = "1; mode=block"
    VALID_X_XSS_HEADER = /\A[01](; mode=block)?(; report=.*)?\z/

    class << self
      # Public: generate an X-Xss-Protection header.
      #
      # Returns a default header if no configuration is provided, or a
      # header name and value based on the config.
      def make_header(config = nil, user_agent = nil)
        return if config == OPT_OUT
        [HEADER_NAME, config || DEFAULT_VALUE]
      end

      def validate_config!(config)
        return if config.nil? || config == OPT_OUT
        raise TypeError.new("Must be a string. Found #{config.class}: #{config}") unless config.is_a?(String)
        raise XXssProtectionConfigError.new("Invalid format (see VALID_X_XSS_HEADER)") unless config.to_s =~ VALID_X_XSS_HEADER
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
secure_headers-6.7.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.6.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.5.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.4.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.3.4 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.3.3 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.3.2 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.3.1 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.3.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.2.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.1.2 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.1.1 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.1.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.0.0 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.0.0.alpha03 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.0.0.alpha02 lib/secure_headers/headers/x_xss_protection.rb
secure_headers-6.0.0.alpha01 lib/secure_headers/headers/x_xss_protection.rb