class Net::SSH::Verifiers::Lenient

def verify(arguments)

returns true. Otherwise, performs the standard strict verification.
Tries to determine if the connection is being tunnelled, and if so,
def verify(arguments)
  return true if tunnelled?(arguments)
  super
end