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