You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard VNC auth with a password is broken, because a missing return in_negotiate_std_vnc_auth makes it proceed with a blank password instead of waiting for the password dialog. The following 1-liner fixes it:
--- a/include/rfb.js
+++ b/include/rfb.js
@@ -739,6 +739,7 @@ var RFB;
// an RFB state change and a UI interface issue
this._updateState('password', "Password Required");
this._onPasswordRequired(this);
+ return false;
}
if (this._sock.rQwait("auth challenge", 16)) { return false; }
The text was updated successfully, but these errors were encountered:
Standard VNC auth with a password is broken, because a missing return in_negotiate_std_vnc_auth makes it proceed with a blank password instead of waiting for the password dialog. The following 1-liner fixes it:
The text was updated successfully, but these errors were encountered: