mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-15 01:57:40 -05:00
Demote SSH bypass-auth option; downplay in docs.
It's too esoteric to be the first thing on the Auth panel; I've never heard of any SSH server that supports it in the decade since I implemented it. The only Google hits are lost souls mistakenly believing they need it for passwordless public-key login and the like.
This commit is contained in:
8
config.c
8
config.c
@ -2321,14 +2321,14 @@ void setup_config_box(struct controlbox *b, int midsession,
|
||||
"Options controlling SSH authentication");
|
||||
|
||||
s = ctrl_getset(b, "Connection/SSH/Auth", "main", NULL);
|
||||
ctrl_checkbox(s, "Bypass authentication entirely (SSH-2 only)", 'b',
|
||||
HELPCTX(ssh_auth_bypass),
|
||||
conf_checkbox_handler,
|
||||
I(CONF_ssh_no_userauth));
|
||||
ctrl_checkbox(s, "Display pre-authentication banner (SSH-2 only)",
|
||||
'd', HELPCTX(ssh_auth_banner),
|
||||
conf_checkbox_handler,
|
||||
I(CONF_ssh_show_banner));
|
||||
ctrl_checkbox(s, "Bypass authentication entirely (SSH-2 only)", 'b',
|
||||
HELPCTX(ssh_auth_bypass),
|
||||
conf_checkbox_handler,
|
||||
I(CONF_ssh_no_userauth));
|
||||
|
||||
s = ctrl_getset(b, "Connection/SSH/Auth", "methods",
|
||||
"Authentication methods");
|
||||
|
Reference in New Issue
Block a user