summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2017-07-19fix support for unknown key types; ok djm@Markus Friedl
2017-07-19switch from select() to poll() for the ssh-agent mainloop; ok markusDamien Miller
2017-07-14Make ""Killed by signal 1" LogLevel verbose so it's not shown at the defaultDarren Tucker
2017-07-13man pages with pseudo synopses which list filenames end up creatingJason McIntyre
2017-07-10zap redundant Makefile variables.Marc Espie
2017-07-08slightly rework previous, to avoid an article issue;Jason McIntyre
2017-07-07When generating all hostkeys (ssh-keygen -A), clobber existing keysDamien Miller
2017-07-01actually remove these filesDamien Miller
2017-07-01remove post-SSHv1 removal dead code from rsa.c and merge theDamien Miller
2017-06-30Only call close once in confree(). ssh_packet_close will close the FDDarren Tucker
2017-06-28Allow ssh-keygen to use a key held in ssh-agent as a CA when signingDamien Miller
2017-06-24correct env var nameDamien Miller
2017-06-24spelling;Jason McIntyre
2017-06-24don't pass pointer to struct sshcipher between privsep processes,Damien Miller
2017-06-24refactor authentication loggingDamien Miller
2017-06-24word fix;Jason McIntyre
2017-06-24switch sshconnect.c from (slightly abused) select() to poll();Damien Miller
2017-06-24use HostKeyAlias if specified instead of hostname for matching hostDamien Miller
2017-06-24no need to call log_init to reinitialise logged PID in child sessions,Damien Miller
2017-06-23When using the escape sequence &~ the code path is client_loop() ->Ricardo Mestre
2017-06-23Import regenerated moduli.Darren Tucker
2017-06-23Run the screen twice so we end up with more candidate groups. ok djm@Darren Tucker
2017-06-14Add user@host prefix to client's "Permisison denied" messages, useful inDarren Tucker
2017-06-13Do not require that unknown EXT_INFO extension values not containDamien Miller
2017-06-13missing prototype.Damien Miller
2017-06-10print '?' instead of incorrect link count (that the protocol doesn'tDamien Miller
2017-06-10implement sorting for globbed ls; bz#2649 ok dtucker@Damien Miller
2017-06-09return failure rather than fatal() for more cases during muxDamien Miller
2017-06-09in description of public key authentication, mention that the serverDamien Miller
2017-06-09better translate libcrypto errors by looking deeper in the accursedDamien Miller
2017-06-09Add comments referring to the relevant RFC sections for rekeyingDarren Tucker
2017-06-06Fix compression output stats broken in rev 1.201. Patch originally byDarren Tucker
2017-06-02rationalise the long list of manual CDIAGFLAGS that we add; most ofDamien Miller
2017-06-01no need to bzero allocated space now that we use use recallocarray;Damien Miller
2017-06-01unconditionally zero init size of buffer; ok markus@ deraadt@Damien Miller
2017-06-01some warnings spotted by clang; ok markus@Damien Miller
2017-06-01fix casts re constnessDamien Miller
2017-05-31make sure we don't pass a NULL string to vfprintf (triggered by theMarkus Friedl
2017-05-31use SO_ZEROIZE for privsep communication (if available)Markus Friedl
2017-05-31Switch to recallocarray() for a few operations. Both growth and shrinkageTheo de Raadt
2017-05-31These shutdown() SHUT_RDWR are not needed before close()Theo de Raadt
2017-05-31clear session keys from memory; ok djm@Markus Friedl
2017-05-31remove now obsolete ctx from ssh_dispatch_run; ok djm@Markus Friedl
2017-05-31use the ssh_dispatch_run_fatal variantMarkus Friedl
2017-05-31another ctx => ssh conversion (in GSSAPI code)Damien Miller
2017-05-31spell out that custom options/extensions should follow the usual SSHDamien Miller
2017-05-31one more void *ctx => struct ssh *ssh conversionDamien Miller
2017-05-31one more void *ctx => struct ssh *ssh conversionDamien Miller
2017-05-31fix possible OOB strlen() in SOCKS4A hostname parsing; ok markus@Damien Miller
2017-05-30tweak previous;Jason McIntyre