summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Collapse)Author
2003-04-30Escape ?, * and ! in .Ql for nroff compatibility. OpenSSH Portable Bug #550mouring
and * escaping suggested by jmc@.
2003-04-26-t in usage(); rogier@quaak.orgTheo de Raadt
2003-04-16document struct Authctxt; with solarMarkus Friedl
2003-04-14Missing globfree(&g) in process_put() spotted by Vince Brimhallmouring
<VBrimhall@novell.com>. ok@ Theo
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-12document -V switch, fix wording; ok markus@Christian Weisgerber
2003-04-12debug->debug2Markus Friedl
2003-04-12hide cipher details; ok djm@Markus Friedl
2003-04-10unbreak linking on elf - stupid kerberosPeter Valchev
2003-04-09strip trailing whitespace from config lines before parsing. Fixes bz 528;Damien Miller
ok markus@
2003-04-09Disable Kerberos 4 support.Hans Insulander
ok markus@
2003-04-09Don't include <krb.h> when compiling with Kerberos 5 supportHans Insulander
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2003-04-08progressmeter.c is 4 clause NetBSD.Markus Friedl
2003-04-07The UCB copyright here is incorrect. This code did not originateTodd C. Miller
at UCB, it was written by Luke Mewburn. Updated the copyright at the author's request. markus@ OK
2003-04-07typo: get correct counters; introduced during rekeying change.Markus Friedl
2003-04-03remove $OpenBSD$, as other *.c does not have it.Jun-ichiro itojun Hagino
2003-04-03$OpenBSD$Jun-ichiro itojun Hagino
2003-04-02potential segfault if KEY_UNSPEC; cjwatson@debian.org; bug #526Markus Friedl
2003-04-02reapply rekeying chage, tested by henning@, ok djm@Markus Friedl
2003-04-013.6.1Markus Friedl
2003-04-01bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; tested ↵Markus Friedl
by ho@ and myself
2003-04-01backout rekeying changes (for 3.6.1)Markus Friedl
2003-04-01rekeying bugfixes and automatic rekeying:Markus Friedl
* both client and server rekey _automatically_ (a) after 2^31 packets, because after 2^32 packets the sequence number for packets wraps (b) after 2^(blocksize_in_bits/4) blocks (see: http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt) (a) and (b) are _enabled_ by default, and only disabled for known openssh versions, that don't support rekeying properly. * client option 'RekeyLimit' * do not reply to requests during rekeying
2003-03-28- killed whitespaceJason McIntyre
- new sentence new line - .Bk for arguments ok markus@
2003-03-26one last fix to the tree: race fix broke stuff; pr 3169; srp@srparish.net,Theo de Raadt
help from djm
2003-03-23unbreak rekeying for privsep; ok millert@Markus Friedl
2003-03-17enter 3.6Markus Friedl
2003-03-17don't print \n if backgrounded; from ho@Markus Friedl
2003-03-13ssh-agent is similar to ssh-keysign (allows other processes to useMarkus Friedl
private rsa keys). however, it gets key over socket and not from a file, so we have to do blinding here as well.
2003-03-13move RSA_blinding_on to generic key load methodMarkus Friedl
2003-03-05fix memory leaks; from dlheine@suif.Stanford.EDU/CLOUSEAU; ok djm@Markus Friedl
2003-02-21...sizeof(&adat.session) is not good here.Mike Pechkin
henning@, deraadt@, millert@
2003-02-21print sshd_config filename in debug2 mode.Markus Friedl
2003-02-21move server only kex and monitor code to sshd.Markus Friedl
2003-02-16fix permitrootlogin forced-commands-only for privsep; bux #387; ok provos@Markus Friedl
2003-02-16split kex into client and server code, no need to linkMarkus Friedl
server code into the client; ok provos@
2003-02-12replace crc32.c with a BSD licensed version; noted by David TurnerMarkus Friedl
2003-02-12merge ssh-dss.h ssh-rsa.h into key.h; ok deraadt@Markus Friedl
2003-02-10xref sshd_config.5 (not sshd.8); mark@summersault.com; bug #490Markus Friedl
2003-02-06undo broken fix for #387, fixes #486Markus Friedl
2003-02-06fix races in rename/symlink; from Tony Finch; ok djm@Markus Friedl
2003-02-06support 'ProxyCommand none'; bugzilla #433; binder@arago.de; ok djm@Markus Friedl
2003-02-06missing call to setproctitle() after authentication; ok provos@Markus Friedl
2003-02-05simplify ProxyCommand parsing, remove strcat/xrealloc; ok henning@, djm@Markus Friedl
2003-02-04skey/bsdauth: use 0 to indicate failure instead of -1, becauseMarkus Friedl
the buffer API only supports unsigned ints.
2003-02-04better debug3 messageMarkus Friedl
2003-02-03don't call error() for readonly /dev; from soekris list; ok mcbride,Markus Friedl
henning, deraadt.
2003-02-02add support for key exchange guesses; based on work byMarkus Friedl
avraham.fraenkel@commatch.com; fixes bug #148; ok deraadt@
2003-02-02call okname() only when using system(3) for remote-remote copy;Markus Friedl
fixes bugs #483, #472; ok deraadt@, mouring@