summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2008-02-09Document the correct permissions for the ~/.ssh/ directory.Ryan Thomas McBride
2008-02-09missing `)';Jason McIntyre
2008-02-08add sshd_config ChrootDirectory option to chroot(2) users to a directory andDamien Miller
2008-02-04link sftp-server into sshd; feedback and ok djm@Markus Friedl
2008-01-31explain how to handle local file names containing colons;Jason McIntyre
2008-01-23Revert the change for bz #1307 as it causes connection aborts if an IGNOREDarren Tucker
2008-01-21when a remote write error occurs during an upload, ensure that ACKs for allDamien Miller
2008-01-21Remove the fixed 100 handle limit in sftp-server and allocate as manyDamien Miller
2008-01-20When uploading, correctly handle the case of an unquoted filename withDamien Miller
2008-01-19promote rekeylimit to a int64 so it can hold the maximum useful limitDamien Miller
2008-01-19When we added support for specified bind addresses for port forwards, weDamien Miller
2008-01-19unbreak line numbering (broken in revision 1.164), fix error messageDamien Miller
2008-01-19when hashing individual hosts (ssh-keygen -Hf hostname), make sure weDamien Miller
2008-01-19fix remote handle leak in do_download() local file open error path;Damien Miller
2008-01-19ignore SIGPIPE in multiplex client mode - we can receive this if theDamien Miller
2008-01-19fd leak on session multiplexing error path. Report and patch fromDamien Miller
2008-01-19scp -q implies ssh -q for the underlying connection, it doesn't justDamien Miller
2008-01-19satisfy the pedants: -q does not suppress all diagnostic messages (e.g.Damien Miller
2008-01-11disable unused functionsCharles Longeau
2008-01-01Allow PermitRootLogin in a Match block. Allows for, eg, permitting rootDarren Tucker
2008-01-01If scp -p encounters a pre-epoch timestamp, use the epoch which isDarren Tucker
2008-01-01spaces -> tabs from my previous commitDarren Tucker
2007-12-31When in inetd mode, have sshd generate a Protocol 1 ephemeral serverDarren Tucker
2007-12-31Prevent strict-aliasing warnings on newer gcc versions. bz #1355, patchDarren Tucker
2007-12-28Use the correct packet maximum sizes for remote port and agent forwarding.Darren Tucker
2007-12-28Make SSH2_MSG_UNIMPLEMENTED and SSH2_MSG_IGNORE messages reset theDarren Tucker
2007-12-27Add a small helper function to consistently handle the EAI_SYSTEM errorDarren Tucker
2007-12-12unbreak lls command and add a regress test that would have caught theDamien Miller
2007-11-03avoid errno trashing in signal handler; ok dtuckerTheo de Raadt
2007-11-03Use xstrdup/xfree when saving pwname and pwdir; ok deraadt@Darren Tucker
2007-11-03bz #1377: getpwuid results were being clobbered by another getpw* callTheo de Raadt
2007-11-03fix memory leak in process_cmdline(), patch from Jan.Pechanec AT Sun.COM;Damien Miller
2007-10-29clean up after previous macro removal;Jason McIntyre
2007-10-29Make LocalCommand work for Protocol 1 too; ok djm@Darren Tucker
2007-10-29ProxyCommand and LocalCommand use the user's shell, not /bin/sh; ok djm@Darren Tucker
2007-10-29Send config block back to slave for invalid users too so optionsDarren Tucker
2007-10-29Plug tiny mem leaks in ControlPath and ProxyCommand option processing; ok djm@Darren Tucker
2007-10-29Allow build without -DGSSAPI; ok deraadt@Darren Tucker
2007-10-24factor out network read/write into an atomicio()-like function, and use itDamien Miller
2007-10-24rework argument splitting and parsing to cope correctly with common shellDamien Miller
2007-10-22make sure that both the local and remote port are correct whenMarkus Friedl
2007-10-02handles zero-sized strings that fgets can returnCharles Longeau
2007-09-29Remove unused prototype. ok djm@Darren Tucker
2007-09-27Don't return -1 on error in dh_pub_is_valid(), since it evaluatesRay Lai
2007-09-25When adding a key that already exists, update the propertiesCan Erkin Acar
2007-09-21unifdef -DBSD_AUTHDamien Miller
2007-09-21document KbdInteractiveAuthentication in ssh_config.5;Damien Miller
2007-09-16use off_t instead of u_int64_t for file offsets, matching what theDamien Miller
2007-09-13fix incorrect test when setting syslog facility; from Jan PechanecDamien Miller
2007-09-12use xmalloc() and xfree(); ok markus@ pvalchev@Kevin Steves