summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Expand)Author
2008-03-27remove trailing whitespace;Jason McIntyre
2008-03-27openssh-4.9Damien Miller
2008-03-26Fix RCS identDamien Miller
2008-03-26add no-user-rc authorized_keys option to disable execution of ~/.ssh/rcDamien Miller
2008-03-25last patch had backwards test; spotted by termim AT gmail.comDamien Miller
2008-03-25ignore ~/.ssh/rc if a sshd_config ForceCommand is specified;Damien Miller
2008-03-24msg_controllen has to be CMSG_SPACE so that the kernel can account forTheo de Raadt
2008-03-23prefer POSIX-style file renaming over filexfer rename behaviour if the serverDamien Miller
2008-03-15Repair the simple cases for msg_controllen where it should just beTheo de Raadt
2008-03-13Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due toTheo de Raadt
2008-03-04crank version; from djmTheo de Raadt
2008-03-02use a union to ensure alignment of the cmsg (pay attention: various otherTheo de Raadt
2008-02-27add an extension method "posix-rename@openssh.com" to perform POSIX atomicDamien Miller
2008-02-22Allow all SSH2 packet types, including UNIMPLEMENTED to reset theDarren Tucker
2008-02-22closefrom() call was too early, delay it until just before we executeDamien Miller
2008-02-20correct boolean encoding for coredump; der Mouse via dugsongMarkus Friedl
2008-02-14When started in configuration test mode (-t) do not check that sshd isMarc Balmer
2008-02-13rekey arc4random and OpenSSL RNG in postauth childDamien Miller
2008-02-11bump Mdocdate for pages committed in "febuary", necessary becauseJason McIntyre
2008-02-10delay ~ expansion for ChrootDirectory so it expands to the logged-in user'sDamien Miller
2008-02-10mantion that "internal-sftp" is useful with ForceCommand tooDamien Miller
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