# File lib/brakeman/checks/check_default_routes.rb, line 17
  def check_for_default_routes
    if allow_all_actions?
      #Default routes are enabled globally
      warn :warning_type => "Default Routes",
        :warning_code => :all_default_routes,
        :message => msg("All public methods in controllers are available as actions in ", msg_file("routes.rb")),
        :line => tracker.routes[:allow_all_actions].line,
        :confidence => :high,
        :file => "#{tracker.app_path}/config/routes.rb"
    end
  end