Make it clearer which protocol version various bugs apply to.

[originally from svn r5490]
This commit is contained in:
Jacob Nevins 2005-03-11 15:24:09 +00:00
Родитель ab659aac49
Коммит 1ddb28955c
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1842,10 +1842,10 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist,
ctrl_droplist(s, "Requires padding on SSH-2 RSA signatures", 'p', 20,
HELPCTX(ssh_bugs_rsapad2),
sshbug_handler, I(offsetof(Config,sshbug_rsapad2)));
ctrl_droplist(s, "Misuses the session ID in PK auth", 'n', 20,
ctrl_droplist(s, "Misuses the session ID in SSH-2 PK auth", 'n', 20,
HELPCTX(ssh_bugs_pksessid2),
sshbug_handler, I(offsetof(Config,sshbug_pksessid2)));
ctrl_droplist(s, "Handles key re-exchange badly", 'k', 20,
ctrl_droplist(s, "Handles SSH-2 key re-exchange badly", 'k', 20,
HELPCTX(ssh_bugs_rekey2),
sshbug_handler, I(offsetof(Config,sshbug_rekey2)));
}

Просмотреть файл

@ -2670,7 +2670,7 @@ to talking to OpenSSH.
This is an SSH-2-specific bug.
\S{config-ssh-bug-pksessid2} \q{Misuses the session ID in PK auth}
\S{config-ssh-bug-pksessid2} \q{Misuses the session ID in SSH-2 PK auth}
\cfg{winhelp-topic}{ssh.bugs.pksessid2}
@ -2688,7 +2688,7 @@ SSH-2 public-key authentication will fail.
This is an SSH-2-specific bug.
\S{config-ssh-bug-rekey} \q{Handles key re-exchange badly}
\S{config-ssh-bug-rekey} \q{Handles SSH-2 key re-exchange badly}
\cfg{winhelp-topic}{ssh.bugs.rekey2}

2
ssh.c
Просмотреть файл

@ -2112,7 +2112,7 @@ static void ssh_detect_bugs(Ssh ssh, char *vstring)
* an AUTH_RSA message.
*/
ssh->remote_bugs |= BUG_CHOKES_ON_RSA;
logevent("We believe remote version can't handle RSA authentication");
logevent("We believe remote version can't handle SSH-1 RSA authentication");
}
if (ssh->cfg.sshbug_hmac2 == FORCE_ON ||