# File lib/brakeman/checks/check_create_with.rb, line 48
  def danger_level exp
    return unless sexp? exp

    if call? exp and exp.method == :permit
      nil
    elsif request_value? exp
      :high
    elsif hash? exp
      nil
    elsif has_immediate_user_input?(exp)
      :high
    elsif include_user_input? exp
      :medium
    else
      :weak
    end
  end