Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-02 | add missing library dependencies | Markus Friedl | |
2013-07-02 | remove extra whitespace | Markus Friedl | |
2013-06-27 | do not use Sx for sections outwith the man page - ingo informs me that | Jason McIntyre | |
stuff like html will render with broken links; issue reported by Eric S. Raymond, via djm | |||
2013-06-22 | improved time_t overflow check suggested by guenther@ | Damien Miller | |
2013-06-21 | make this -Wsign-compare clean after time_t conversion | Damien Miller | |
2013-06-21 | sprinkle in some error() to explain moduli(5) parse failures | Damien Miller | |
2013-06-21 | explicitly mention that IdentitiesOnly can be used with IdentityFile | Damien Miller | |
to control which keys are offered from an agent. | |||
2013-06-21 | for hostbased authentication, print the client host and user on | Damien Miller | |
the auth success/failure line; bz#2064, ok dtucker@ | |||
2013-06-20 | don't leak the rdata blob on errors; ok djm@ | Markus Friedl | |
2013-06-19 | stop doing kerberos in ssh and sshd | Theo de Raadt | |
the code bloat makes that no longer trustworthy functionality ok guenther | |||
2013-06-18 | Shuffle library link order to appease the static arch deities. | Miod Vallat | |
2013-06-17 | link to the new kerberos libraries | Robert Nagy | |
2013-06-17 | Handle time_t values as long long's when formatting them and when | Philip Guenther | |
parsing them from remote servers. Improve error checking in parsing of 'T' lines. ok dtucker@ deraadt@ | |||
2013-06-10 | revert 1.203 while we investigate crashes reported by okan@ | Darren Tucker | |
2013-06-07 | Add an "ABANDONED" channel state and use for mux sessions that are | Darren Tucker | |
disconnected via the ~. escape sequence. Channels in this state will be able to close if the server responds, but do not count as active channels. This means that if you ~. all of the mux clients when using ControlPersist on a broken network, the backgrounded mux master will exit when the Control Persist time expires rather than hanging around indefinitely. bz#1917, also reported and tested by tedu@. ok djm@ markus@. | |||
2013-06-05 | plug another memleak. bz#1967, from Zhenbo Xu, detected by Melton, ok djm | Darren Tucker | |
2013-06-05 | Fix memory leaks found by Zhenbo Xu and the Melton tool. bz#1967, ok djm | Darren Tucker | |
2013-06-05 | When running sshd -D, close stderr unless we have explicitly requesting | Darren Tucker | |
logging to stderr. From james.hunt at ubuntu.com via bz#1976, djm's patch so, err, ok dtucker. | |||
2013-06-05 | fix leaks in mux error paths, from Zhenbo Xu, found by Melton. bz#1967, ok djm | Darren Tucker | |
2013-06-04 | Make sftp's libedit interface marginally multibyte aware by building up the | Darren Tucker | |
quoted string by character instead of by byte. Prevents failures when linked against a libedit built with wide character support (bz#1990). "looks ok" djm | |||
2013-06-04 | use MAXPATHLEN for buffer size instead of fixed value. ok markus | Darren Tucker | |
2013-06-03 | force the MAC output to be 64-bit aligned so umac won't see unaligned | Darren Tucker | |
accesses on strict-alignment architectures. bz#2101, patch from tomas.kuthan at oracle.com, ok djm@ | |||
2013-06-02 | No need for the mux cleanup callback to be visible so restore it to static | Darren Tucker | |
and call it through the detach_user function pointer. ok djm@ | |||
2013-06-02 | typo in comment | Darren Tucker | |
2013-06-02 | Make parent_alive_interval time_t to avoid signed/unsigned comparison | Darren Tucker | |
2013-06-02 | Add misc.h for monotim prototype. | Darren Tucker | |
2013-06-01 | Update progressmeter when data is acked, not when it's sent. bz#2108, from | Darren Tucker | |
Debian via Colin Watson, ok djm@ | |||
2013-06-01 | Replace S_IWRITE, which isn't standardized, with S_IWUSR, which is. Patch | Darren Tucker | |
from Nathan Osman via bz#2085. ok deraadt. | |||
2013-06-01 | Use clock_gettime(CLOCK_MONOTONIC ...) for ssh timers so that things like | Darren Tucker | |
keepalives and rekeying will work properly over clock steps. Suggested by markus@, "looks good" djm@. | |||
2013-05-31 | Use time_t where appropriate. ok djm | Darren Tucker | |
2013-05-19 | Standardise logging of supplemental information during userauth. Keys | Damien Miller | |
and ruser is now logged in the auth success/failure message alongside the local username, remote host/port and protocol in use. Certificates contents and CA are logged too. Pushing all logging onto a single line simplifies log analysis as it is no longer necessary to relate information scattered across multiple log entries. "I like it" markus@ | |||
2013-05-19 | fix failure to recognise cert-authority keys if a key of a different type | Damien Miller | |
appeared in authorized_keys before it; ok markus@ | |||
2013-05-17 | bye, bye xfree(); ok markus@ | Damien Miller | |
2013-05-16 | remove another now-unused variable | Darren Tucker | |
2013-05-16 | remove now-unused variables | Darren Tucker | |
2013-05-16 | switch RekeyLimit traffic volume parsing to scan_scaled. ok djm@ | Darren Tucker | |
2013-05-16 | Fix some "unused result" warnings found via clang and -portable. ok markus@ | Darren Tucker | |
2013-05-16 | oops! avoid Xr to self; | Jason McIntyre | |
2013-05-16 | put IgnoreUnknown in the right place; | Jason McIntyre | |
2013-05-16 | add the ability to ignore specific unrecognised ssh_config options; | Damien Miller | |
bz#866; ok markus@ | |||
2013-05-16 | Add RekeyLimit to sshd with the same syntax as the client allowing rekeying | Darren Tucker | |
based on traffic volume or time. ok djm@, help & ok jmc@ for the man page. | |||
2013-05-16 | Add an optional second argument to RekeyLimit in the client to allow | Darren Tucker | |
rekeying based on elapsed time in addition to amount of traffic. with djm@ jmc@, ok djm | |||
2013-05-10 | remove unused extern optarg. ok markus@ | Darren Tucker | |
2013-05-10 | memleak in cert_free(), wasn't actually freeing the struct; | Damien Miller | |
bz#2096 from shm AT digitalsun.pl | |||
2013-05-10 | fix bzero(ptr_to_struct, sizeof(ptr_to_struct)); bz#2100 from | Damien Miller | |
Colin Watson | |||
2013-05-06 | Reference the version of the sftp draft we actually implement. ok djm@ | Darren Tucker | |
2013-04-24 | remove extra parens noticed by nicm | Ted Unangst | |
2013-04-23 | use xasprintf instead of a series of strlcats and strdup. ok djm | Ted Unangst | |
2013-04-22 | typo in debug output: evitval->exitval | Darren Tucker | |
2013-04-19 | remove duplicated list entry pointed out by naddy@ | Damien Miller | |