Sha256: 6a235546096fe1d9459efc06b150e4a851c2b28fa395da4a1e8de32c6d561840

Contents?: true

Size: 883 Bytes

Versions: 6

Compression:

Stored size: 883 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'
require 'contrast/agent/reporting/details/xss_match'

module Contrast
  module Agent
    module Reporting
      module Details
        # XssDetails IA result details info.
        class XssDetails < ProtectRuleDetails
          # @return [String]
          attr_accessor :input
          # @return [<Array<Contrast::Agent::Reporting::XssMatch>]
          attr_accessor :matches

          def initialize
            @matches = []
            super
          end

          def to_controlled_hash
            {
                input: input,
                matches: matches&.map(&:to_controlled_hash)
            }
          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_details.rb
contrast-agent-6.10.0 lib/contrast/agent/reporting/details/xss_details.rb
contrast-agent-6.9.0 lib/contrast/agent/reporting/details/xss_details.rb
contrast-agent-6.8.0 lib/contrast/agent/reporting/details/xss_details.rb
contrast-agent-6.7.0 lib/contrast/agent/reporting/details/xss_details.rb
contrast-agent-6.6.5 lib/contrast/agent/reporting/details/xss_details.rb