Sha256: 9414bdede13588e1077cef1b8326cd124bd27836a0f58fad3c331ffddf2260c1

Contents?: true

Size: 1.35 KB

Versions: 6

Compression:

Stored size: 1.35 KB

Contents

# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

cs__scoped_require 'contrast/agent/patching/policy/policy'

# classes required by patches in the policy
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_command_injection_rule'
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_deserialization_rule'
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_no_sqli_rule'
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_path_traversal_rule'
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_sqli_rule'
cs__scoped_require 'contrast/extensions/ruby_core/protect/applies_xxe_rule'
cs__scoped_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

6 entries across 6 versions & 1 rubygems

Version Path
contrast-agent-3.11.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-3.10.2 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-3.10.1 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-3.10.0 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-3.9.1 lib/contrast/agent/protect/policy/policy.rb
contrast-agent-3.9.0 lib/contrast/agent/protect/policy/policy.rb