Sha256: 6f363ca9bc55f97d6503e8c3d36cae66ef65e8ddf5adda5158eb057581d98336

Contents?: true

Size: 631 Bytes

Versions: 11

Compression:

Stored size: 631 Bytes

Contents

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

require 'contrast/agent/protect/rule/base_service'

module Contrast
  module Agent
    module Protect
      module Rule
        # The Ruby implementation of the Protect Unsafe File Upload rule.
        class UnsafeFileUpload < Contrast::Agent::Protect::Rule::BaseService
          NAME = 'unsafe-file-upload'
          BLOCK_MESSAGE = 'Unsafe file upload rule triggered. Request blocked.'

          def name
            NAME
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
contrast-agent-4.4.1 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.4.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.3.2 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.3.1 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.3.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.2.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.1.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-4.0.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-3.16.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-3.15.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb
contrast-agent-3.14.0 lib/contrast/agent/protect/rule/unsafe_file_upload.rb