Sha256: da65ed5a444da0c58a6d7a36c09f1d5e98ab6d6733c9b66f9ea23480df8db3bb
Contents?: true
Size: 979 Bytes
Versions: 4
Compression:
Stored size: 979 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/protect/rule/cmd_injection' require 'contrast/agent/reporting/input_analysis/score_level' require 'contrast/agent/protect/input_analyzer/input_analyzer' require 'contrast/utils/input_classification_base' require 'contrast/components/logger' module Contrast module Agent module Protect module Rule # This module will do the Input Classification stage of CMD Injection rule # as a result input would be marked as WORTHWATCHING or IGNORE, # to be analyzed at the sink level. module CmdiInputClassification WORTHWATCHING_MATCH = 'cmdi-worth-watching-v2'.cs__freeze class << self include InputClassificationBase include Contrast::Components::Logger::InstanceMethods end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems