Sha256: e69c87f74c676193a986517346f2d3bb2026d1367886754eb3c880466cf78025

Contents?: true

Size: 780 Bytes

Versions: 6

Compression:

Stored size: 780 Bytes

Contents

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

require 'contrast/agent/reporting/details/protect_rule_details'

module Contrast
  module Agent
    module Reporting
      module Details
        # Matcher data for XSS rule.
        class XssMatch
          # @return [Integer] in ms
          attr_accessor :evidence_start
          # @return [String]
          attr_accessor :evidence
          # @return [Integer]
          attr_accessor :offset

          def to_controlled_hash
            {
                evidenceStart: evidence_start,
                evidence: evidence,
                offset: offset
            }
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
contrast-agent-6.11.0 lib/contrast/agent/reporting/details/xss_match.rb
contrast-agent-6.10.0 lib/contrast/agent/reporting/details/xss_match.rb
contrast-agent-6.9.0 lib/contrast/agent/reporting/details/xss_match.rb
contrast-agent-6.8.0 lib/contrast/agent/reporting/details/xss_match.rb
contrast-agent-6.7.0 lib/contrast/agent/reporting/details/xss_match.rb
contrast-agent-6.6.5 lib/contrast/agent/reporting/details/xss_match.rb