# File lib/brakeman/tracker/config.rb, line 27
    def default_protect_from_forgery?
      if version_between? "5.2.0", "9.9.9"
        if @rails[:action_controller] and
            @rails[:action_controller][:default_protect_from_forgery] == Sexp.new(:false)

          return false
        else
          return true
        end
      end

      false
    end