summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/session.c
AgeCommit message (Expand)Author
2013-07-19add ssh-agent(1) support to sshd(8); allows encrypted hostkeys,Markus Friedl
2013-05-17bye, bye xfree(); ok markus@Damien Miller
2013-04-19reintroduce 1.262 without the connection-killing bug:Damien Miller
2013-04-17revert rev 1.262; it fails because uid is already set here. ok djm@Darren Tucker
2013-03-06fatal() when ChrootDirectory specified by running without root privileges;Damien Miller
2012-12-02make AllowTcpForwarding accept "local" and "remote" in addition to itsDamien Miller
2012-03-15root should always be excluded from the test for /etc/nologin insteadPhilip Guenthe
2011-10-24bz#1859: send tty break to pty master instead of (probably alreadyDamien Miller
2010-11-25replace close() loop for fds 3->64 with closefrom();Damien Miller
2010-11-13allow ssh and sshd to set arbitrary TOS/DSCP/QoS values instead ofDamien Miller
2010-06-25bz#1750: fix requirement for /dev/null inside ChrootDirectory forDamien Miller
2010-06-22include the user name on "subsystem request for ..." log messages;Damien Miller
2010-06-18Missing check for chroot_director == "none" (we already checked againstDamien Miller
2010-04-23set stderr to /dev/null for subsystems rather than just closing it.Damien Miller
2010-03-07Hold authentication debug messages until after successful authentication.Darren Tucker
2010-01-12Add explicit stat so we reliably detect nologin with bad perms. ok djm markusDarren Tucker
2010-01-12Do not allow logins if /etc/nologin exists but is not readable by the userDarren Tucker
2009-11-20Warn but do not fail if stat()ing the subsystem binary fails. This helpsDarren Tucker
2009-11-19bz#1606: error when an attempt is made to connect to a serverDamien Miller
2009-10-06bz#1596: fflush(NULL) before exec() to ensure that everying (motdDamien Miller
2009-04-17use INTERNAL_SFTP_NAME for setproctitle() of in-process sftp-server;Kevin Steves
2009-01-22make Channel->path an allocated string, saving a few bytes here andDamien Miller
2008-11-09typo fixed (overriden -> overridden)Tobias Stoeckmann
2008-10-02Convert an unchecked strdup to xstrdup. OK deraadt@Todd C. Miller
2008-08-21allow ForceCommand internal-sftp with arguments. based on patch fromDamien Miller
2008-06-16Rename the isatty argument to is_tty so we don't shadow isatty(3).Darren Tucker
2008-06-15don't call isatty() on a pty master, instead pass a flag down toDamien Miller
2008-06-14suppress the warning message from chdir(homedir) failuresDamien Miller
2008-05-09re-add the USE_PIPES code and enable it.Markus Friedl
2008-05-08Make the maximum number of sessions run-time controllable viaDamien Miller
2008-05-08Implement a channel success/failure status confirmation callbackDamien Miller
2008-05-07Enable the AllowAgentForwarding option in sshd_config (global and matchPierre-Yves Ritschard
2008-04-18remove unneccessary parenthesesDamien 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-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-13rekey arc4random and OpenSSL RNG in postauth childDamien Miller
2008-02-10delay ~ expansion for ChrootDirectory so it expands to the logged-in user'sDamien Miller
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
2007-09-11use strcspn to properly overwrite '\n' in fgets returned bufferGilles Chehade
2007-08-23missed include bits from last commitDamien Miller
2007-08-23unifdef HAVE_LOGIN_CAP; ok deraadt@ millert@Damien Miller
2007-01-21spacesKevin Steves
2006-10-09xmalloc -> xcalloc that was missed previously, from portableDamien Miller
2006-08-29normalise some inconsistent (but harmless) NULL pointer checksDamien Miller
2006-08-18delay authentication related cleanups until we're authenticated andMarkus Friedl
2006-08-04spacesKevin Steves