Sha256: dd85648ba62d49d80c99c3827ae566da5fd5141097877e9cc8a8107e9b71abe9

Contents?: true

Size: 1.63 KB

Versions: 81

Compression:

Stored size: 1.63 KB

Contents

require 'brakeman/checks/base_check'

# Check for detailed exceptions enabled for production
class Brakeman::CheckDetailedExceptions < Brakeman::BaseCheck
  Brakeman::Checks.add self

  LOCAL_REQUEST = s(:call, s(:call, nil, :request), :local?)

  @description = "Checks for information disclosure displayed via detailed exceptions"

  def run_check
    check_local_request_config
    check_detailed_exceptions
  end

  def check_local_request_config
    if true? tracker.config.rails[:consider_all_requests_local]
      warn :warning_type => "Information Disclosure",
           :warning_code => :local_request_config,
           :message => "Detailed exceptions are enabled in production",
           :confidence => :high,
           :file => "config/environments/production.rb"
    end
  end

  def check_detailed_exceptions
    tracker.controllers.each do |_name, controller|
      controller.methods_public.each do |method_name, definition|
        src = definition[:src]
        body = src.body.last
        next unless body

        if method_name == :show_detailed_exceptions? and not safe? body
          if true? body
            confidence = :high
          else
            confidence = :medium
          end

          warn :warning_type => "Information Disclosure",
               :warning_code => :detailed_exceptions,
               :message => msg("Detailed exceptions may be enabled in ", msg_code("show_detailed_exceptions?")),
               :confidence => confidence,
               :code => src,
               :file => definition[:file]
        end
      end
    end
  end

  def safe? body
    false? body or
    body == LOCAL_REQUEST
  end
end

Version data entries

81 entries across 67 versions & 4 rubygems

Version Path
brakeman-min-5.0.4 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-5.0.4 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-5.0.4 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-5.0.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-5.0.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-5.0.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-5.0.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-5.0.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-5.0.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.10.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.10.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.10.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-5.0.0.pre1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-5.0.0.pre1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-5.0.0.pre1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.10.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.10.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.10.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.9.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.9.1 lib/brakeman/checks/check_detailed_exceptions.rb