Sha256: 430ae557e9bbcfe8de1ff5613d016b039189d15d1f7d674cba46875d280b949e
Contents?: true
Size: 822 Bytes
Versions: 6
Compression:
Stored size: 822 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 # 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
6 entries across 6 versions & 1 rubygems