Sha256: faf83cde43efde89d86a40f3a5bb4be9df3fb736c2f7c543045639c03ec9318d

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

require 'brakeman/checks/base_check'

class Brakeman::CheckSecrets < Brakeman::BaseCheck
  Brakeman::Checks.add_optional self

  @description = "Checks for secrets stored in source code"

  def run_check
    check_constants
  end

  def check_constants
    @warned = Set.new

    @tracker.constants.each do |constant|
      name = constant.name.last
      value = constant.value

      if string? value and not value.value.empty? and looks_like_secret? name
        match = [name, value, value.line]

        unless @warned.include? match
          @warned << match

          warn :warning_code => :secret_in_source,
            :warning_type => "Authentication",
            :message => "Hardcoded value for #{name} in source code",
            :confidence => CONFIDENCE[:med],
            :file => constant.file,
            :line => constant.line
        end
      end
    end
  end

  def looks_like_secret? name
    # REST_AUTH_SITE_KEY is the pepper in Devise
    name.match /password|secret|(rest_auth_site|api)_key$/i
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
brakeman-3.3.1 lib/brakeman/checks/check_secrets.rb
brakeman-min-3.3.1 lib/brakeman/checks/check_secrets.rb
brakeman-lib-3.3.1 lib/brakeman/checks/check_secrets.rb
brakeman-3.3.0 lib/brakeman/checks/check_secrets.rb
brakeman-min-3.3.0 lib/brakeman/checks/check_secrets.rb