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