Sha256: 0e9bac8de2faf55ff5ccab48f78716cd184262b1f65ccc50ae1160dc82e773ee

Contents?: true

Size: 666 Bytes

Versions: 11

Compression:

Stored size: 666 Bytes

Contents

# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

require 'contrast/agent/protect/rule/base_service'

module Contrast
  module Agent
    module Protect
      module Rule
        # The Ruby implementation of the Protect Cross-Site Scripting rule.
        class Xss < Contrast::Agent::Protect::Rule::BaseService
          NAME = 'reflected-xss'
          BLOCK_MESSAGE = 'XSS rule triggered. Response blocked.'

          def rule_name
            NAME
          end

          def stream_safe?
            false
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
contrast-agent-4.14.1 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.14.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.13.1 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.13.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.12.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.11.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.10.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.9.1 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.9.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.8.0 lib/contrast/agent/protect/rule/xss.rb
contrast-agent-4.7.0 lib/contrast/agent/protect/rule/xss.rb