Sha256: bc9586d2fa548d7713b35486807962c6abea7abf6d212e4113ab6da9f94703d8
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 KB
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # protect rule modes of the Agent. class ProtectRulesConfiguration < BaseConfiguration KEYS = { disabled_rules: EMPTY_VALUE, 'bot-blocker' => Contrast::Config::ProtectRuleConfiguration, 'cmd-injection' => Contrast::Config::ProtectRuleConfiguration, 'sql-injection' => Contrast::Config::ProtectRuleConfiguration, 'nosql-injection' => Contrast::Config::ProtectRuleConfiguration, 'untrusted-deserialization' => Contrast::Config::ProtectRuleConfiguration, 'method-tampering' => Contrast::Config::ProtectRuleConfiguration, xxe: Contrast::Config::ProtectRuleConfiguration, 'path-traversal' => Contrast::Config::ProtectRuleConfiguration, 'reflected-xss' => Contrast::Config::ProtectRuleConfiguration, 'unsafe-file-upload' => Contrast::Config::ProtectRuleConfiguration, 'Contrast::Agent::Protect::Rule::Base' => Contrast::Config::ProtectRuleConfiguration }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
contrast-agent-5.1.0 | lib/contrast/config/protect_rules_configuration.rb |
contrast-agent-5.0.0 | lib/contrast/config/protect_rules_configuration.rb |