summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2019-01-20DH-GEX min value is now specified in RFC8270. ok djm@Darren Tucker
2019-01-19fix error in refactor: use ssh_packet_disconnect() instead ofDamien Miller
2019-01-19remove last traces of old packet API!Damien Miller
2019-01-19remove last references to active_stateDamien Miller
2019-01-19convert monitor.c to new packet APIDamien Miller
2019-01-19convert sshd.c to new packet APIDamien Miller
2019-01-19convert session.c to new packet APIDamien Miller
2019-01-19convert auth.c to new packet APIDamien Miller
2019-01-19convert serverloop.c to new packet APIDamien Miller
2019-01-19convert the remainder of sshconnect2.c to new packet APIDamien Miller
2019-01-19convert the remainder of clientloop.c to new packet APIDamien Miller
2019-01-19convert auth2.c to new packet APIDamien Miller
2019-01-19convert servconf.c to new packet APIDamien Miller
2019-01-19convert channels.c to new packet APIDamien Miller
2019-01-19convert sshconnect.c to new packet APIDamien Miller
2019-01-19convert ssh.c to new packet APIDamien Miller
2019-01-19convert mux.c to new packet APIDamien Miller
2019-01-19convert sshconnect2.c to new packet APIDamien Miller
2019-01-19convert clientloop.c to new packet APIDamien Miller
2019-01-19allow sshpkt_fatal() to take a varargs format; we'll use this to giveDamien Miller
2019-01-19begin landing remaining refactoring of packet parsing API, startedDamien Miller
2019-01-19Print an \r in front of the password prompt so parts of a passwordTheo Buehler
2019-01-17tun_fwd_ifnames variable should be extern; from Hanno BöckDamien Miller
2019-01-17include time.h for time(3)/nanosleep(2); from Ian McKellarDamien Miller
2019-01-17many of the global variables in this file can be made static;Damien Miller
2019-01-16Add "-h" flag to sftp chown/chgrp/chmod commands to request they doDamien Miller
2019-01-16add support for a "lsetstat@openssh.com" extension. This replicates theDamien Miller
2019-01-04eliminate function-static attempt counters for passwd/kbdintDamien Miller
2019-01-04fix memory leak of ciphercontext when rekeying; bz#2942Damien Miller
2019-01-01static on global vars, const on handler tables that contain functionDamien Miller
2018-12-27Request RSA-SHA2 signatures for rsa-sha2-{256|512}-cert-v01@openssh.comDamien Miller
2018-12-27move client/server SSH-* banners to buffers under ssh->kex and factorDamien Miller
2018-12-07Fix calculation of initial bandwidth limits.Darren Tucker
2018-12-07only consider the ext-info-c extension during the initial KEX. It shouldn'tDamien Miller
2018-12-07fix option letter pasto in previousDamien Miller
2018-12-07mention that the ssh-keygen -F (find host in authorized_keys) and -RDamien Miller
2018-12-07no need to allocate channels_pre/channels_post in channel_init_channels()Damien Miller
2018-11-30don't attempt to connect to empty SSH_AUTH_SOCK; bz#293Damien Miller
2018-11-28don't truncate user or host name in "user@host's password: " prompts.Damien Miller
2018-11-23tweak previous;Jason McIntyre
2018-11-23add a ssh_config "Match final" predicateDamien Miller
2018-11-19silence (to log level debug2) failure messages when loading the defaultDamien Miller
2018-11-18Fix inverted logic for redirecting ProxyCommand stderr to /dev/null.Darren Tucker
2018-11-16redirect stderr of ProxyCommands to /dev/null when ssh is started withDamien Miller
2018-11-16make grandparent-parent-child sshbuf chains robust to use-after-freeDamien Miller
2018-11-16use path_absolute() for pathname checks; from Manoj AmpalamDamien Miller
2018-11-16disallow empty incoming filename or ones that refer to the currentDamien Miller
2018-11-16fix bug in client that was keeping a redundant ssh-agent socket aroundDamien Miller
2018-11-16fix bug in HostbasedAcceptedKeyTypes and PubkeyAcceptedKeyTypes options.Damien Miller
2018-11-16support a prefix of '@' to suppress echo of sftp batch commands;Damien Miller