summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
AgeCommit message (Expand)Author
2022-11-09typo in commentDamien Miller
2022-10-24Be more paranoid with host/domain names coming from the resolver:Damien Miller
2022-10-13use correct type with sizeofJonathan Gray
2022-10-06honour user's umask if it is more restrictive then the ssh defaultDamien Miller
2022-09-17add a RequiredRSASize for checking RSA key length in ssh(1).Damien Miller
2022-07-01ignore SIGPIPE earlier in main(), specifically before muxclient()Damien Miller
2022-03-30ssh is almost out of getopt() characters; note the remainingDamien Miller
2022-02-08Switch hpdelim interface to accept only ":" as delimiter.Darren Tucker
2022-01-06log some details on hostkeys that ssh loads for hostbased authnDamien Miller
2022-01-01spellingJonathan Gray
2021-12-02don't put the tty into raw mode when SessionType=none, avoids ^c beingDamien Miller
2021-09-20Fix "Allocated port" debug message for unix sockets. From peder.stray atDarren Tucker
2021-09-15allow CanonicalizePermittedCNAMEs=none in ssh_config; ok markus@Damien Miller
2021-09-10Document behaviour of arguments following non-interactive commands.Darren Tucker
2021-08-08xstrdup environment variable used by ForwardAgent. bz#3328 fromDarren Tucker
2021-07-23note successful authentication method in final "Authenticated to ..."Damien Miller
2021-07-23Add a ForkAfterAuthentication ssh_config(5) counterpart to theDamien Miller
2021-07-23Add a StdinNull directive to ssh_config(5) that allows the configDamien Miller
2021-07-17wrap some long linesDamien Miller
2021-07-17fix sftp on ControlPersist connections, broken by recent SessionTypeDamien Miller
2021-07-13add a SessionType directive to ssh_config, allowing the configurationDamien Miller
2021-06-08Switch ssh_config parsing to use argv_split()Damien Miller
2021-06-04allow ssh_config SetEnv to override $TERM, which is otherwise handledDamien Miller
2021-05-19restore blocking status on stdio fds before closeDamien Miller
2021-05-17fix breakage of -W forwaring introduced in 1.554; reported byDamien Miller
2021-05-14fix previous: test saved no_shell_flag, not the one that just gotDamien Miller
2021-05-14Fix ssh started with ControlPersist incorrectly executing a shellDamien Miller
2021-04-03ensure that pkcs11_del_provider() is called before exit - some PKCS#11Damien Miller
2021-02-23warn when the user specifies a ForwardAgent path that does not existDamien Miller
2021-02-15ssh: add PermitRemoteOpen for remote dynamic forwarding with SOCKSMarkus Friedl
2021-02-02whitespaceDamien Miller
2021-01-27remove global variable used to stash compat flags and use theDamien Miller
2021-01-26Rename HostbasedKeyTypes (ssh) and HostbasedAcceptedKeyTypes (sshd) toDarren Tucker
2021-01-22Rename PubkeyAcceptedKeyTypes keyword to PubkeyAcceptedAlgorithms.Darren Tucker
2020-12-20plumb ssh_conn_info through to sshconnect.c; feedback/ok markus@Damien Miller
2020-12-20allow UserKnownHostsFile=none; feedback and ok markus@Damien Miller
2020-12-17refactor client percent_expand() argument passing; consolidate theDamien Miller
2020-12-17prepare readconf.c for fuzzing; remove fatal calls and fix someDamien Miller
2020-11-12Prevent integer overflow when ridiculously large ConnectTimeout isDarren Tucker
2020-11-08Replace WITH_OPENSSL ifdefs in log calls with a macro. The log callsDarren Tucker
2020-10-18use the new variant log macros instead of prepending __func__ andDamien Miller
2020-10-16LogVerbose keyword for ssh and sshdDamien Miller
2020-10-12Zap unused family parameter from ssh_connect_direct()kn
2020-10-03There are lots of place where we want to redirect stdin, stdoutDamien Miller
2020-09-21close stdin when forking after authentication too; ok markusDamien Miller
2020-09-20close stdout/stderr after "ssh -f ..." forkingDamien Miller
2020-07-31Also compare username when checking for JumpHost loops. bz#3057, ok djm@Darren Tucker
2020-07-17Add a '%k' TOKEN that expands to the effective HostKey of theDarren Tucker
2020-07-17Add %-TOKEN, environment variable and tilde expansion to UserKnownHostsFile,Darren Tucker
2020-07-05some language improvements; ok markusDamien Miller