# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Agent module Assess module Rule # Provider rules are those which do not fit into the standard dataflow # paradigm. For our purposes, these rules are currently those which # function on class definition to determine if there are dangerous # constants defined therein. module Provider end end end end end require 'contrast/agent/assess/rule/provider/hardcoded_value_rule' require 'contrast/agent/assess/rule/provider/hardcoded_key' require 'contrast/agent/assess/rule/provider/hardcoded_password'