Sha256: e3794a65e5c85328d754480a82be21e026ea45aca8cd45cf1fced1e1ebf8b861

Contents?: true

Size: 1.61 KB

Versions: 25

Compression:

Stored size: 1.61 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 => "Detailed exceptions may be enabled in '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

25 entries across 25 versions & 3 rubygems

Version Path
brakeman-4.3.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.3.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.3.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.3.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.3.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.3.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.2.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.2.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.2.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.2.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.2.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.2.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.1.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.1.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.1.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.1.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-lib-4.1.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.1.0 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-4.0.1 lib/brakeman/checks/check_detailed_exceptions.rb
brakeman-min-4.0.1 lib/brakeman/checks/check_detailed_exceptions.rb