summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/readconf.c
AgeCommit message (Expand)Author
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
2020-11-15revert r1.341; it breaks ProxyJump; reported by sthen@Damien Miller
2020-11-11fix logic error that broke URI parsing in ProxyJump directives;Damien Miller
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-07disable UpdateHostkeys by default if VerifyHostKeyDNS is enabled;Damien Miller
2020-10-03There are lots of place where we want to redirect stdin, stdoutDamien Miller
2020-10-03enable UpdateHostkeys by default when the configuration has notDamien Miller
2020-08-27remove unreachable code I forgot to delete in r1.334Damien Miller
2020-08-11let ssh_config(5)'s AddKeysToAgent keyword accept a time limit forDamien Miller
2020-07-17Add %k to the TOKENs for Match Exec for consistency with the other keywordsDarren Tucker
2020-07-05some language improvements; ok markusDamien Miller
2020-05-29Allow some keywords to expand shell-style ${ENV} environmentDarren Tucker
2020-05-27fix crash in recallocarray when deleting SendEnv variables;Damien Miller
2020-04-24Fix incorrect error message for "too many known hosts files." bz#3149, patchDarren Tucker
2020-04-03%C expansion just added to Match Exec should include remote user not localDarren Tucker
2020-04-03Make with config keywords support which percent_expansions more consistent.Darren Tucker
2020-02-06expand HostkeyAlgorithms prior to config dump, matching otherDamien Miller
2020-02-03revert enabling UpdateHostKeys by default - there are still corner casesDamien Miller
2020-01-30enable UpdateKnownHosts=yes if the configuration specifies only theDamien Miller
2020-01-25set UpdateKnownHosts=ask by default; bz#2894; ok markus@Damien Miller
2020-01-23Make zlib optional. This adds a "ZLIB" build time option that allowsDarren Tucker
2020-01-23Replace all calls to signal(2) with a wrapper around sigaction(2).Darren Tucker
2020-01-23Remove unsupported algorithms from list of defaults at run time andDarren Tucker