summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2021-03-02openssh-8.5Damien Miller
2021-02-28Add %k to list of keywords. From Eero Häkkinenvia bz#3267Darren Tucker
2021-02-28Do not try to reset signal handler for signal 0 in subprocess.Darren Tucker
2021-02-27fix alphabetic ordering of options; spotted by Iain MorganDamien Miller
2021-02-26a bit more debugging behind #ifdef DEBUG_SKDamien Miller
2021-02-24Put obsolete aliases for hostbasedalgorithms and pubkeyacceptedalgorithmsDarren Tucker
2021-02-23lots more s/key types/signature algorithms/ mostly inDamien Miller
2021-02-23Correct reference to signature algorithms as keys; from Jakub JelenDamien Miller
2021-02-23warn when the user specifies a ForwardAgent path that does not existDamien Miller
2021-02-18Fix the hostkeys rotation extension documentationDamien Miller
2021-02-18make names in function prototypes match those in definitionDamien Miller
2021-02-18unbreak SK_DEBUG buildsDamien Miller
2021-02-18sftp-server: implement limits@openssh.com extensionDamien Miller
2021-02-15ssh: add PermitRemoteOpen for remote dynamic forwarding with SOCKSMarkus Friedl
2021-02-15factor out opt_array_append; ok djm@Markus Friedl
2021-02-15ProxyJump takes "none" to disable processing like ProxyCommand doesDavid Gwynne
2021-02-12sftp: add missing lsetstat@openssh.com documentationDamien Miller
2021-02-12factor SSH_AGENT_CONSTRAIN_EXTENSION parsing into its own functionDamien Miller
2021-02-05Remove debug message from sigchld handler. While this works on OpenBSDDarren Tucker
2021-02-02whitespaceDamien Miller
2021-02-02fix memleaks in private key deserialisation; enforce more consistencyDamien Miller
2021-02-02memleak on error path; ok markus@Damien Miller
2021-01-31more strictly enforce KEX state-machine by banning packet typesDamien Miller
2021-01-31Set linesize returned by getline to zero when freeing and NULLing theDarren Tucker
2021-01-29fix the values of enum sock_typeDamien Miller
2021-01-29give typedef'd struct a struct name; makes the fuzzer I'm writing a bitDamien Miller
2021-01-27fix leak: was double allocating kex->session_id bufferDamien Miller
2021-01-27this needs kex.h nowDamien Miller
2021-01-27make ssh->kex->session_id a sshbuf instead of u_char*/size_t andDamien Miller
2021-01-27remove global variable used to stash compat flags and use theDamien Miller
2021-01-27Logical not bitwise or. ok djm@Darren Tucker
2021-01-26move HostbasedAcceptedAlgorithms to the right place in alphabetical orderChristian Weisgerber
2021-01-26Remove unused variables leftover from refactoring. ok djm@Darren Tucker
2021-01-26Rename HostbasedKeyTypes (ssh) and HostbasedAcceptedKeyTypes (sshd) toDarren Tucker
2021-01-26refactor key constraint parsing in ssh-agentDamien Miller
2021-01-26more ssh-agent refactoringDamien Miller
2021-01-26make struct hostkeys public; I have no idea why I made it opaqueDamien Miller
2021-01-26move check_host_cert() from sshconnect,c to sshkey.c and refactorDamien Miller
2021-01-26use recallocarray to allocate the agent sockets table; also clearDamien Miller
2021-01-26factor out common code in the agent clientDamien Miller
2021-01-25make ssh hostbased authentication send the signature algorithm inDamien Miller
2021-01-22PubkeyAcceptedKeyTypes->PubkeyAcceptedAlgorithms here too.Darren Tucker
2021-01-22Rename PubkeyAcceptedKeyTypes keyword to PubkeyAcceptedAlgorithms.Darren Tucker
2021-01-15Make output buffer larger to prevent potential truncation warnings fromDarren Tucker
2021-01-15Change types in convtime() unit test to int to match change its new type.Darren Tucker
2021-01-15In waitfd(), when poll returns early we are subtracting the elapsed timeDarren Tucker
2021-01-14Minor grammatical correction.rob
2021-01-11Correct spelling of persourcenetblocksize in config-dump mode.Darren Tucker
2021-01-11Change convtime() from returning long to returning int. On platformsDarren Tucker
2021-01-09add a comma to previous;Jason McIntyre