Sha256: 010ba14be7f8e69aa2decfafdc9edc7826c94e4f355fa717e123552f1da2ece2
Contents?: true
Size: 788 Bytes
Versions: 18
Compression:
Stored size: 788 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 # CMDI IA result details info. class CmdInjectionDetails < ProtectRuleDetails # @return [String] attr_accessor :cmd # @return [Integer] attr_accessor :start_idx # @return [Integer] attr_accessor :end_idx def to_controlled_hash { command: cmd, startIndex: start_idx, endIndex: end_idx } end end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems