Kaynağa Gözat

Don't read invalid TLS auth reason

The specification only states a single result byte and not any reason
after a TLS authentication failure.
tags/v1.11.90
Pierre Ossman 4 yıl önce
ebeveyn
işleme
5f09e7c662
1 değiştirilmiş dosya ile 2 ekleme ve 9 silme
  1. 2
    9
      common/rfb/CSecurityTLS.cxx

+ 2
- 9
common/rfb/CSecurityTLS.cxx Dosyayı Görüntüle

@@ -157,15 +157,8 @@ bool CSecurityTLS::processMsg()
if (!is->checkNoWait(1))
return false;

if (is->readU8() == 0) {
rdr::U32 result = is->readU32();
CharArray reason;
if (result == secResultFailed || result == secResultTooMany)
reason.buf = is->readString();
else
reason.buf = strDup("protocol error");
throw AuthFailureException(reason.buf);
}
if (is->readU8() == 0)
throw AuthFailureException("Server failed to initialize TLS session");

if (gnutls_init(&session, GNUTLS_CLIENT) != GNUTLS_E_SUCCESS)
throw AuthFailureException("gnutls_init failed");

Loading…
İptal
Kaydet