Sha256: 86dc1e285d83d2921be904e009681c6150d5a7d141498c4c1cfccf7a9beb5a97
Contents?: true
Size: 1 KB
Versions: 8
Compression:
Stored size: 1 KB
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/agent/protect/rule/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 Contrast::Agent::Protect::Rule::InputClassification::Base include Contrast::Components::Logger::InstanceMethods end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems