Sha256: 88a3193003e15b27e28ab3bfde313106ba619b63257cbcb3d59fa7e52b866b1a

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

# Copyright (c) 2021 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?
            PROTECT.forcibly_disabled?
          end

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
contrast-agent-4.8.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-4.7.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-4.6.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-4.5.0 lib/contrast/agent/protect/policy/policy.rb