Sha256: 4de37dabd930145ec11b048cc2972bda3aaf4658a3128021c3c9fe3fd403ff4d
Contents?: true
Size: 822 Bytes
Versions: 18
Compression:
Stored size: 822 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' module Contrast module Agent module Reporting module Details # PathTraversalDetails IA result details info. class PathTraversalSemanticAnalysisDetails < ProtectRuleDetails # @return [String] attr_accessor :path # @return [Array<Symbol>] attr_accessor :findings def initialize @findings = [] super end def to_controlled_hash { path: path, findings: findings&.map(&:to_s) } end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems