Age | Commit message (Expand) | Author |
2024-01-11 | make DSA key support compile-time optional, defaulting to on | Damien Miller |
2023-12-18 | ban user/hostnames with most shell metacharacters | Damien Miller |
2023-10-12 | don't dereference NULL pointer when hashing jumphost | Damien Miller |
2023-10-12 | add %j token that expands to the configured ProxyJump hostname (or | Damien Miller |
2023-10-11 | sync usage() with ssh.1; spotted by kn@ | Damien Miller |
2023-10-11 | add ChannelTimeout support to the client, mirroring the same option | Damien Miller |
2023-09-03 | set interactive mode for ControlPersist sessions if they originally | Damien Miller |
2023-07-26 | make ssh -f (fork after authentication) work properly in multiplexed | Damien Miller |
2023-07-17 | - add -P to usage() | Jason McIntyre |
2023-07-17 | Add support for configuration tags to ssh(1). | Damien Miller |
2023-07-04 | add support for unix domain sockets to ssh -W | David Gwynne |
2023-06-21 | make `ssh -Q CASignatureAlgorithms` only list signature algorithms that | Damien Miller |
2023-04-26 | Check for ProxyJump=none in CanonicalizeHostname logic. | Damien Miller |
2023-03-30 | Ignore return value from muxclient(). It normally loops without returning, | Darren Tucker |
2023-03-27 | Add tilde and environment variable expansion to RevokedHostKeys. | Darren Tucker |
2023-02-10 | make `ssh -Q CASignatureAlgorithms` work as the manpage says it should | Damien Miller |
2023-01-17 | For "ssh -V" always exit 0, there is no need to check opt again. | Todd C. Miller |
2023-01-13 | Add a "Host" line to the output of ssh -G showing the original host arg. | Darren Tucker |
2023-01-06 | Add channel_force_close() | Damien Miller |
2022-12-09 | Warn if no host keys for hostbased auth can be loaded. From bz#3507, ok djm@ | Darren Tucker |
2022-11-09 | typo in comment | Damien Miller |
2022-10-24 | Be more paranoid with host/domain names coming from the resolver: | Damien Miller |
2022-10-13 | use correct type with sizeof | Jonathan Gray |
2022-10-06 | honour user's umask if it is more restrictive then the ssh default | Damien Miller |
2022-09-17 | add a RequiredRSASize for checking RSA key length in ssh(1). | Damien Miller |
2022-07-01 | ignore SIGPIPE earlier in main(), specifically before muxclient() | Damien Miller |
2022-03-30 | ssh is almost out of getopt() characters; note the remaining | Damien Miller |
2022-02-08 | Switch hpdelim interface to accept only ":" as delimiter. | Darren Tucker |
2022-01-06 | log some details on hostkeys that ssh loads for hostbased authn | Damien Miller |
2022-01-01 | spelling | Jonathan Gray |
2021-12-02 | don't put the tty into raw mode when SessionType=none, avoids ^c being | Damien Miller |
2021-09-20 | Fix "Allocated port" debug message for unix sockets. From peder.stray at | Darren Tucker |
2021-09-15 | allow CanonicalizePermittedCNAMEs=none in ssh_config; ok markus@ | Damien Miller |
2021-09-10 | Document behaviour of arguments following non-interactive commands. | Darren Tucker |
2021-08-08 | xstrdup environment variable used by ForwardAgent. bz#3328 from | Darren Tucker |
2021-07-23 | note successful authentication method in final "Authenticated to ..." | Damien Miller |
2021-07-23 | Add a ForkAfterAuthentication ssh_config(5) counterpart to the | Damien Miller |
2021-07-23 | Add a StdinNull directive to ssh_config(5) that allows the config | Damien Miller |
2021-07-17 | wrap some long lines | Damien Miller |
2021-07-17 | fix sftp on ControlPersist connections, broken by recent SessionType | Damien Miller |
2021-07-13 | add a SessionType directive to ssh_config, allowing the configuration | Damien Miller |
2021-06-08 | Switch ssh_config parsing to use argv_split() | Damien Miller |
2021-06-04 | allow ssh_config SetEnv to override $TERM, which is otherwise handled | Damien Miller |
2021-05-19 | restore blocking status on stdio fds before close | Damien Miller |
2021-05-17 | fix breakage of -W forwaring introduced in 1.554; reported by | Damien Miller |
2021-05-14 | fix previous: test saved no_shell_flag, not the one that just got | Damien Miller |
2021-05-14 | Fix ssh started with ControlPersist incorrectly executing a shell | Damien Miller |
2021-04-03 | ensure that pkcs11_del_provider() is called before exit - some PKCS#11 | Damien Miller |
2021-02-23 | warn when the user specifies a ForwardAgent path that does not exist | Damien Miller |
2021-02-15 | ssh: add PermitRemoteOpen for remote dynamic forwarding with SOCKS | Markus Friedl |