Sha256: 0ef643859a4c5875706fe4b82ca9ac572bd6908a00445836aaef54e7be1c6e5d

Contents?: true

Size: 1.23 KB

Versions: 24

Compression:

Stored size: 1.23 KB

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/patching/policy/policy'

# classes required by patches in the policy
require 'contrast/agent/protect/policy/applies_command_injection_rule'
require 'contrast/agent/protect/policy/applies_deserialization_rule'
require 'contrast/agent/protect/policy/applies_no_sqli_rule'
require 'contrast/agent/protect/policy/applies_path_traversal_rule'
require 'contrast/agent/protect/policy/applies_sqli_rule'
require 'contrast/agent/protect/policy/applies_xxe_rule'
require 'contrast/agent/protect/policy/trigger_node'

module Contrast
  module Agent
    module Protect
      module Policy
        # This is just a holder for our policy. Takes the policy JSON and
        # converts it into hashes that we can access nicely
        class Policy < Contrast::Agent::Patching::Policy::Policy
          def self.policy_folder
            'protect'
          end

          def disabled_globally?
            ::Contrast::PROTECT.forcibly_disabled?
          end

          def node_type
            Contrast::Agent::Protect::Policy::TriggerNode
          end
        end
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
contrast-agent-6.11.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.10.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.9.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.8.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.7.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.5 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.4 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.3 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.2 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.1 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.6.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.5.1 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.5.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.4.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.3.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.2.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.1.2 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.1.1 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.1.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-6.0.0 lib/contrast/agent/protect/policy/policy.rb