Sha256: e9a486d5cf3fc84ae7a1882df5aae4ae2be2abf774647f81cfc7062381f8df5f
Contents?: true
Size: 883 Bytes
Versions: 18
Compression:
Stored size: 883 Bytes
Contents
# Copyright (c) 2023 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
18 entries across 18 versions & 1 rubygems