# File lib/mechanize/http/auth_store.rb, line 64
  def add_default_auth user, pass, domain = nil
    warn "You have supplied default authentication credentials that apply to ANY SERVER.\nYour username and password can be retrieved by ANY SERVER using Basic\nauthentication.\n\nTHIS EXPOSES YOUR USERNAME AND PASSWORD TO DISCLOSURE WITHOUT YOUR KNOWLEDGE.\n\nUse add_auth to set authentication credentials that will only be delivered\nonly to a particular server you specify.\n"

    @default_auth = [user, pass, domain]
  end