summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/readconf.c
AgeCommit message (Expand)Author
2024-09-26fix previous change to ssh_config Match, which broken on negatedDamien Miller
2024-09-25fix regression introduced when I switched the "Match" criteria tokeniserDamien Miller
2024-09-15switch "Match" directive processing over to the argv stringDamien Miller
2024-09-03allow the "Include" directive to expand the same set of %-tokensDamien Miller
2024-08-23As defined in the RFC, the SSH protocol has negotiable compression supportTheo de Raadt
2024-05-17spelling; ok djm@Jonathan Gray
2024-03-04fix leak of CanonicalizePermittedCNAMEs on error path; spottedDamien Miller
2024-03-04Separate parsing of string array options from applying them to theDamien Miller
2024-01-11make DSA key support compile-time optional, defaulting to onDamien Miller
2023-10-12add %j token that expands to the configured ProxyJump hostname (orDamien Miller
2023-10-11add ChannelTimeout support to the client, mirroring the same optionDamien Miller
2023-08-28Add keystroke timing obfuscation to the client.Damien Miller
2023-07-17missing match localnetwork negation checkDamien Miller
2023-07-17Add support for configuration tags to ssh(1).Damien Miller
2023-07-17add a "match localnetwork" predicate.Damien Miller
2023-06-21better validate CASignatureAlgorithms in ssh_config and sshd_config.Damien Miller
2023-03-31don't leak arg2 on parse_pubkey_algos error path; ok dtucker@Damien Miller
2023-03-10Remove no-op (int) > INT_MAX checks since they can never be true.Darren Tucker
2023-03-09modify parentheses in conditionals to make it clearer what is beingJoshua Stein
2023-03-05Remove unused compat.h includes. We've previously removed a lotDarren Tucker
2023-01-13Add a "Host" line to the output of ssh -G showing the original host arg.Darren Tucker
2023-01-02fix bug in PermitRemoteOpen which caused it to ignore its firstDamien Miller
2022-11-28New EnableEscapeCommandline ssh_config(5) optionDamien Miller
2022-09-17add a RequiredRSASize for checking RSA key length in ssh(1).Damien Miller
2022-06-03Make SetEnv directives first-match-wins in both sshd_config andDamien Miller
2022-04-20Avoid an unnecessary xstrdup in rm_env() when matching patterns.Todd C. Miller
2022-02-08Switch hpdelim interface to accept only ":" as delimiter.Darren Tucker
2022-02-04Since they are deprecated, move DSA to the end of the default list ofDarren Tucker
2021-12-19PubkeyAuthentication=yes|no|unbound|host-boundDamien Miller
2021-09-16missing space character in ssh -G output broke the t-sshcfgparseDamien Miller
2021-09-15allow CanonicalizePermittedCNAMEs=none in ssh_config; ok markus@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-13add a SessionType directive to ssh_config, allowing the configurationDamien Miller
2021-07-02Remove references to ChallengeResponseAuthentication in favour ofDarren Tucker
2021-06-08fix regression in r1.356: for ssh_config options that acceptedDamien Miller
2021-06-08Switch ssh_config parsing to use argv_split()Damien Miller
2021-06-08Check if IPQoS or TunnelDevice are already set before overriding.Darren Tucker
2021-05-23ssh: The client configuration keyword is "hostbasedacceptedalgorithms"Christian Weisgerber
2021-04-03highly polished whitespace, mostly fixing spaces-for-tab and badDamien Miller
2021-02-24Put obsolete aliases for hostbasedalgorithms and pubkeyacceptedalgorithmsDarren Tucker
2021-02-15ssh: add PermitRemoteOpen for remote dynamic forwarding with SOCKSMarkus Friedl
2021-01-26Rename HostbasedKeyTypes (ssh) and HostbasedAcceptedKeyTypes (sshd) toDarren Tucker
2021-01-22Rename PubkeyAcceptedKeyTypes keyword to PubkeyAcceptedAlgorithms.Darren Tucker
2021-01-08make CheckHostIP default to 'no'. It doesn't provide any perceptibleDamien Miller
2020-12-22Remove lines accidentally left behind in the ProxyJump parsing fix r1.345.Theo Buehler
2020-12-22add a ssh_config KnownHostsCommand that allows the client to obtainDamien Miller
2020-12-21properly fix ProxyJump parsing; Thanks to tb@ for pointing out my errorDamien Miller
2020-12-17prepare readconf.c for fuzzing; remove fatal calls and fix someDamien Miller
2020-11-30Ignore comments at the end of config lines in ssh_config, similar to whatDarren Tucker