CVS log for src/usr.bin/ssh/monitor.c
Up to [OpenBSD] / src / usr.bin / ssh
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.110: download - view: text, markup, annotated - select for diffs
Thu Sep 9 10:45:45 2010 UTC (7 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_9_BASE,
OPENBSD_4_9,
HEAD
Diff to: previous 1.109: preferred, coloured
Changes since revision 1.109: +4 -4
lines
ECDH/ECDSA compliance fix: these methods vary the hash function they use
(SHA256/384/512) depending on the length of the curve in use. The previous
code incorrectly used SHA256 in all cases.
This fix will cause authentication failure when using 384 or 521-bit curve
keys if one peer hasn't been upgraded and the other has. (256-bit curve
keys work ok). In particular you may need to specify HostkeyAlgorithms
when connecting to a server that has not been upgraded from an upgraded
client.
ok naddy@
Revision 1.109: download - view: text, markup, annotated - select for diffs
Tue Aug 31 11:54:45 2010 UTC (7 months, 1 week ago) by djm
Branches: MAIN
Diff to: previous 1.108: preferred, coloured
Changes since revision 1.108: +2 -1
lines
Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and
host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer
better performance than plain DH and DSA at the same equivalent symmetric
key length, as well as much shorter keys.
Only the mandatory sections of RFC5656 are implemented, specifically the
three REQUIRED curves nistp256, nistp384 and nistp521 and only ECDH and
ECDSA. Point compression (optional in RFC5656 is NOT implemented).
Certificate host and user keys using the new ECDSA key types are supported.
Note that this code has not been tested for interoperability and may be
subject to change.
feedback and ok markus@
Revision 1.108: download - view: text, markup, annotated - select for diffs
Tue Jul 13 23:13:16 2010 UTC (8 months, 4 weeks ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_8_BASE,
OPENBSD_4_8
Diff to: previous 1.107: preferred, coloured
Changes since revision 1.107: +6 -6
lines
s/timing_safe_cmp/timingsafe_bcmp/g
Revision 1.107: download - view: text, markup, annotated - select for diffs
Tue Jul 13 11:52:06 2010 UTC (9 months ago) by djm
Branches: MAIN
Diff to: previous 1.106: preferred, coloured
Changes since revision 1.106: +8 -8
lines
implement a timing_safe_cmp() function to compare memory without leaking
timing information by short-circuiting like memcmp() and use it for
some of the more sensitive comparisons (though nothing high-value was
readily attackable anyway); "looks ok" markus@
Revision 1.106: download - view: text, markup, annotated - select for diffs
Sun Mar 7 11:57:13 2010 UTC (13 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_7_BASE,
OPENBSD_4_7
Diff to: previous 1.105: preferred, coloured
Changes since revision 1.105: +1 -17
lines
Hold authentication debug messages until after successful authentication.
Fixes an info leak of environment variables specified in authorized_keys,
reported by Jacob Appelbaum. ok djm@
Revision 1.105: download - view: text, markup, annotated - select for diffs
Fri Feb 26 20:29:54 2010 UTC (13 months, 2 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.104: preferred, coloured
Changes since revision 1.104: +3 -2
lines
Add support for certificate key types for users and hosts.
OpenSSH certificate key types are not X.509 certificates, but a much
simpler format that encodes a public key, identity information and
some validity constraints and signs it with a CA key. CA keys are
regular SSH keys. This certificate style avoids the attack surface
of X.509 certificates and is very easy to deploy.
Certified host keys allow automatic acceptance of new host keys
when a CA certificate is marked as trusted in ~/.ssh/known_hosts.
see VERIFYING HOST KEYS in ssh(1) for details.
Certified user keys allow authentication of users when the signing
CA key is marked as trusted in authorized_keys. See "AUTHORIZED_KEYS
FILE FORMAT" in sshd(8) for details.
Certificates are minted using ssh-keygen(1), documentation is in
the "CERTIFICATES" section of that manpage.
Documentation on the format of certificates is in the file
PROTOCOL.certkeys
feedback and ok markus@
Revision 1.104: download - view: text, markup, annotated - select for diffs
Fri Jun 12 20:43:22 2009 UTC (22 months ago) by andreas
Branches: MAIN
CVS tags: OPENBSD_4_6_BASE,
OPENBSD_4_6
Diff to: previous 1.103: preferred, coloured
Changes since revision 1.103: +2 -1
lines
Fix warnings found by chl@ and djm@ and change roaming_atomicio's
return type to match atomicio's
Diff from djm@, ok markus@
Revision 1.103: download - view: text, markup, annotated - select for diffs
Thu May 28 16:50:16 2009 UTC (22 months, 2 weeks ago) by andreas
Branches: MAIN
Diff to: previous 1.102: preferred, coloured
Changes since revision 1.102: +13 -1
lines
Keep track of number of bytes read and written. Needed for upcoming
changes. Most code from Martin Forssen, maf at appgate dot com.
ok markus@
Revision 1.102: download - view: text, markup, annotated - select for diffs
Mon May 25 06:48:01 2009 UTC (22 months, 2 weeks ago) by andreas
Branches: MAIN
Diff to: previous 1.101: preferred, coloured
Changes since revision 1.101: +6 -6
lines
Put the globals in packet.c into a struct and don't access it directly
from other files. No functional changes.
ok markus@ djm@
Revision 1.101: download - view: text, markup, annotated - select for diffs
Thu Feb 12 03:26:22 2009 UTC (2 years, 1 month ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_5_BASE,
OPENBSD_4_5
Diff to: previous 1.100: preferred, coloured
Changes since revision 1.100: +4 -2
lines
some paranoia: check that the serialised key is really KEY_RSA before
diddling its internals
Revision 1.100: download - view: text, markup, annotated - select for diffs
Tue Nov 4 08:22:13 2008 UTC (2 years, 5 months ago) by djm
Branches: MAIN
Diff to: previous 1.99: preferred, coloured
Changes since revision 1.99: +226 -1
lines
Add support for an experimental zero-knowledge password authentication
method using the J-PAKE protocol described in F. Hao, P. Ryan,
"Password Authenticated Key Exchange by Juggling", 16th Workshop on
Security Protocols, Cambridge, April 2008.
This method allows password-based authentication without exposing
the password to the server. Instead, the client and server exchange
cryptographic proofs to demonstrate of knowledge of the password while
revealing nothing useful to an attacker or compromised endpoint.
This is experimental, work-in-progress code and is presently
compiled-time disabled (turn on -DJPAKE in Makefile.inc).
"just commit it. It isn't too intrusive." deraadt@
Revision 1.99: download - view: text, markup, annotated - select for diffs
Thu Jul 10 18:08:11 2008 UTC (2 years, 9 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_4_4_BASE,
OPENBSD_4_4
Diff to: previous 1.98: preferred, coloured
Changes since revision 1.98: +6 -4
lines
sync v1 and v2 traffic accounting; add it to sshd, too; ok djm@, dtucker@
Revision 1.98: download - view: text, markup, annotated - select for diffs
Fri Jul 4 03:47:02 2008 UTC (2 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.97: preferred, coloured
Changes since revision 1.97: +2 -2
lines
Make debug a little clearer. ok djm@
Revision 1.97: download - view: text, markup, annotated - select for diffs
Fri Jun 13 13:56:59 2008 UTC (2 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.96: preferred, coloured
Changes since revision 1.96: +5 -1
lines
Clear key options in the monitor on failed authentication, prevents
applying additional restrictions to non-pubkey authentications in
the case where pubkey fails but another method subsequently succeeds.
bz #1472, found by Colin Watson, ok markus@ djm@
Revision 1.96: download - view: text, markup, annotated - select for diffs
Thu May 8 12:21:16 2008 UTC (2 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.95: preferred, coloured
Changes since revision 1.95: +2 -2
lines
Make the maximum number of sessions run-time controllable via
a sshd_config MaxSessions knob. This is useful for disabling
login/shell/subsystem access while leaving port-forwarding working
(MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
simply increasing the number of allows multiplexed sessions.
Because some bozos are sure to configure MaxSessions in excess of the
number of available file descriptors in sshd (which, at peak, might be
as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
on error paths, and make it fail gracefully on out-of-fd conditions -
sending channel errors instead of than exiting with fatal().
bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com
ok markus@
Revision 1.95: download - view: text, markup, annotated - select for diffs
Thu May 8 12:02:23 2008 UTC (2 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.94: preferred, coloured
Changes since revision 1.94: +2 -1
lines
Implement a channel success/failure status confirmation callback
mechanism. Each channel maintains a queue of callbacks, which will
be drained in order (RFC4253 guarantees confirm messages are not
reordered within an channel).
Also includes a abandonment callback to clean up if a channel is
closed without sending confirmation messages. This probably
shouldn't happen in compliant implementations, but it could be
abused to leak memory.
ok markus@ (as part of a larger diff)
Revision 1.94: download - view: text, markup, annotated - select for diffs
Mon Oct 29 04:08:08 2007 UTC (3 years, 5 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_3_BASE,
OPENBSD_4_3
Diff to: previous 1.93: preferred, coloured
Changes since revision 1.93: +3 -3
lines
Send config block back to slave for invalid users too so options
set by a Match block (eg Banner) behave the same for non-existent
users. Found by and ok djm@
Revision 1.93: download - view: text, markup, annotated - select for diffs
Fri Sep 21 08:15:29 2007 UTC (3 years, 6 months ago) by djm
Branches: MAIN
Diff to: previous 1.92: preferred, coloured
Changes since revision 1.92: +1 -65
lines
unifdef -DBSD_AUTH
unifdef -USKEY
These options have been in use for some years;
ok markus@ "no objection" millert@
Revision 1.92: download - view: text, markup, annotated - select for diffs
Tue Sep 4 03:21:03 2007 UTC (3 years, 7 months ago) by djm
Branches: MAIN
Diff to: previous 1.91: preferred, coloured
Changes since revision 1.91: +4 -3
lines
make file descriptor passing code return an error rather than call fatal()
when it encounters problems, and use this to make session multiplexing
masters survive slaves failing to pass all stdio FDs; ok markus@
Revision 1.91: download - view: text, markup, annotated - select for diffs
Thu May 17 20:52:13 2007 UTC (3 years, 10 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_2_BASE,
OPENBSD_4_2
Diff to: previous 1.90: preferred, coloured
Changes since revision 1.90: +2 -1
lines
pass received SIGINT from monitor to postauth child so it can clean
up properly. bz#1196, patch from senthilkumar_sen AT hotpop.com;
ok markus@
Revision 1.90: download - view: text, markup, annotated - select for diffs
Mon Feb 19 10:45:58 2007 UTC (4 years, 1 month ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_1_BASE,
OPENBSD_4_1
Diff to: previous 1.89: preferred, coloured
Changes since revision 1.89: +4 -1
lines
Teach Match how handle config directives that are used before authentication.
This allows configurations such as permitting password authentication from
the local net only while requiring pubkey from offsite. ok djm@, man page
bits ok jmc@
Revision 1.63.4.3: download - view: text, markup, annotated - select for diffs
Wed Nov 8 00:44:05 2006 UTC (4 years, 5 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.63.4.2: preferred, coloured; branchpoint 1.63: preferred, coloured; next MAIN 1.64: preferred, coloured
Changes since revision 1.63.4.2: +4 -4
lines
upgrade to OpenSSH 4.5
Revision 1.88.4.1: download - view: text, markup, annotated - select for diffs
Wed Nov 8 00:42:10 2006 UTC (4 years, 5 months ago) by brad
Branches: OPENBSD_4_0
Diff to: previous 1.88: preferred, coloured; next MAIN 1.89: preferred, coloured
Changes since revision 1.88: +4 -4
lines
upgrade to OpenSSH 4.5
Revision 1.68.2.2: download - view: text, markup, annotated - select for diffs
Wed Nov 8 00:17:14 2006 UTC (4 years, 5 months ago) by brad
Branches: OPENBSD_3_9
Diff to: previous 1.68.2.1: preferred, coloured; branchpoint 1.68: preferred, coloured; next MAIN 1.69: preferred, coloured
Changes since revision 1.68.2.1: +4 -4
lines
upgrade to OpenSSH 4.5
Revision 1.89: download - view: text, markup, annotated - select for diffs
Tue Nov 7 10:31:31 2006 UTC (4 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.88: preferred, coloured
Changes since revision 1.88: +4 -4
lines
correctly check for bad signatures in the monitor, otherwise the monitor and
the unpriv process can get out of sync. with dtucker@, ok djm@, dtucker@
Revision 1.63.4.2: download - view: text, markup, annotated - select for diffs
Fri Oct 6 03:19:32 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.63.4.1: preferred, coloured; branchpoint 1.63: preferred, coloured
Changes since revision 1.63.4.1: +53 -20
lines
upgrade to OpenSSH 4.4
Revision 1.68.2.1: download - view: text, markup, annotated - select for diffs
Sat Sep 30 04:06:50 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_9
Diff to: previous 1.68: preferred, coloured
Changes since revision 1.68: +48 -21
lines
upgrade to OpenSSH 4.4
Revision 1.88: download - view: text, markup, annotated - select for diffs
Sat Aug 12 20:46:46 2006 UTC (4 years, 8 months ago) by miod
Branches: MAIN
CVS tags: OPENBSD_4_0_BASE
Branch point for: OPENBSD_4_0
Diff to: previous 1.87: preferred, coloured
Changes since revision 1.87: +2 -2
lines
Revert previous include file ordering change, for ssh to compile under gcc2
(or until openssl include files are cleaned of parameter names in function
prototypes)
Revision 1.87: download - view: text, markup, annotated - select for diffs
Sun Aug 6 01:13:32 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.86: preferred, coloured
Changes since revision 1.86: +2 -2
lines
"zlib.h" can be <zlib.h>; ok djm@ markus@
Revision 1.86: download - view: text, markup, annotated - select for diffs
Fri Aug 4 20:46:05 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.85: preferred, coloured
Changes since revision 1.85: +3 -3
lines
spaces
Revision 1.85: download - view: text, markup, annotated - select for diffs
Thu Aug 3 03:34:42 2006 UTC (4 years, 8 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.84: preferred, coloured
Changes since revision 1.84: +10 -7
lines
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk
makes the pain stop in one easy step
Revision 1.84: download - view: text, markup, annotated - select for diffs
Wed Jul 26 13:57:17 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.83: preferred, coloured
Changes since revision 1.83: +2 -1
lines
move #include <stdlib.h> out of includes.h
Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Jul 26 02:35:17 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.82: preferred, coloured
Changes since revision 1.82: +2 -1
lines
move #include <sys/param.h> out of includes.h
Revision 1.82: download - view: text, markup, annotated - select for diffs
Sat Jul 22 20:48:23 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.81: preferred, coloured
Changes since revision 1.81: +2 -1
lines
move #include <string.h> out of includes.h
Revision 1.81: download - view: text, markup, annotated - select for diffs
Tue Jul 11 20:07:25 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.80: preferred, coloured
Changes since revision 1.80: +2 -1
lines
move #include <errno.h> out of includes.h; ok markus@
Revision 1.80: download - view: text, markup, annotated - select for diffs
Sun Jul 9 15:15:10 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.79: preferred, coloured
Changes since revision 1.79: +2 -1
lines
move #include <fcntl.h> out of includes.h
Revision 1.79: download - view: text, markup, annotated - select for diffs
Sat Jul 8 21:48:53 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.78: preferred, coloured
Changes since revision 1.78: +2 -1
lines
missed these from last commit:
move #include <sys/socket.h> out of includes.h
Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu Jul 6 16:03:53 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.77: preferred, coloured
Changes since revision 1.77: +4 -3
lines
move #include <pwd.h> out of includes.h; ok markus@
Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu Mar 30 11:40:21 2006 UTC (5 years ago) by dtucker
Branches: MAIN
Diff to: previous 1.76: preferred, coloured
Changes since revision 1.76: +14 -4
lines
Prevent duplicate log messages when privsep=yes; ok djm@
Revision 1.76: download - view: text, markup, annotated - select for diffs
Sat Mar 25 13:17:02 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.75: preferred, coloured
Changes since revision 1.75: +1 -0
lines
Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that
Theo nuked - our scripts to sync -portable need them in the files
Revision 1.75: download - view: text, markup, annotated - select for diffs
Sat Mar 25 00:05:41 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.74: preferred, coloured
Changes since revision 1.74: +2 -4
lines
introduce xcalloc() and xasprintf() failure-checked allocations functions
and use them throughout openssh
xcalloc is particularly important because malloc(nmemb * size) is a
dangerous idiom (subject to integer overflow) and it is time for it to
die
feedback and ok deraadt@
Revision 1.74: download - view: text, markup, annotated - select for diffs
Mon Mar 20 18:27:50 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.73: preferred, coloured
Changes since revision 1.73: +1 -1
lines
spacing
Revision 1.73: download - view: text, markup, annotated - select for diffs
Mon Mar 20 18:26:55 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.72: preferred, coloured
Changes since revision 1.72: +1 -1
lines
annoying spacing fixes getting in the way of real diffs
Revision 1.72: download - view: text, markup, annotated - select for diffs
Mon Mar 20 04:09:44 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.71: preferred, coloured
Changes since revision 1.71: +4 -0
lines
memory leaks detected by Coverity via elad AT netbsd.org;
deraadt@ ok
that should be all of them now
Revision 1.71: download - view: text, markup, annotated - select for diffs
Sun Mar 19 18:53:12 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.70: preferred, coloured
Changes since revision 1.70: +1 -1
lines
spacing
Revision 1.70: download - view: text, markup, annotated - select for diffs
Sun Mar 19 18:51:18 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.69: preferred, coloured
Changes since revision 1.69: +0 -1
lines
RCSID() can die
Revision 1.69: download - view: text, markup, annotated - select for diffs
Tue Mar 7 09:07:40 2006 UTC (5 years, 1 month ago) by djm
Branches: MAIN
Diff to: previous 1.68: preferred, coloured
Changes since revision 1.68: +7 -2
lines
Implement the diffie-hellman-group-exchange-sha256 key exchange method
using the SHA256 code in libc (and wrapper to make it into an OpenSSL
EVP), interop tested against CVS PuTTY
Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Feb 20 17:02:44 2006 UTC (5 years, 1 month ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_3_9_BASE
Branch point for: OPENBSD_3_9
Diff to: previous 1.67: preferred, coloured
Changes since revision 1.67: +2 -1
lines
move #include <signal.h> out of includes.h; ok markus@
Revision 1.67: download - view: text, markup, annotated - select for diffs
Fri Feb 10 01:44:26 2006 UTC (5 years, 2 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.66: preferred, coloured
Changes since revision 1.66: +4 -1
lines
move #include <sys/wait.h> out of includes.h; ok markus@
Revision 1.66: download - view: text, markup, annotated - select for diffs
Wed Feb 8 13:15:44 2006 UTC (5 years, 2 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.65: preferred, coloured
Changes since revision 1.65: +3 -3
lines
small KNF
Revision 1.65: download - view: text, markup, annotated - select for diffs
Wed Feb 8 12:15:27 2006 UTC (5 years, 2 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.64: preferred, coloured
Changes since revision 1.64: +4 -2
lines
move #include <paths.h> out of includes.h; ok markus@
Revision 1.63.4.1: download - view: text, markup, annotated - select for diffs
Fri Feb 3 03:01:56 2006 UTC (5 years, 2 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.63: preferred, coloured
Changes since revision 1.63: +5 -5
lines
upgrade to OpenSSH 4.3
Revision 1.63.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 3 02:53:44 2006 UTC (5 years, 2 months ago) by brad
Branches: OPENBSD_3_7
Diff to: previous 1.63: preferred, coloured; next MAIN 1.64: preferred, coloured
Changes since revision 1.63: +5 -5
lines
upgrade to OpenSSH 4.3
Revision 1.64: download - view: text, markup, annotated - select for diffs
Thu Oct 13 22:24:31 2005 UTC (5 years, 5 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.63: preferred, coloured
Changes since revision 1.63: +5 -5
lines
KNF; ok djm@
Revision 1.61.2.2: download - view: text, markup, annotated - select for diffs
Sun Jun 5 02:22:39 2005 UTC (5 years, 10 months ago) by brad
Branches: OPENBSD_3_6
Diff to: previous 1.61.2.1: preferred, coloured; branchpoint 1.61: preferred, coloured; next MAIN 1.62: preferred, coloured
Changes since revision 1.61.2.1: +2 -2
lines
upgrade to OpenSSH 4.1
Revision 1.63: download - view: text, markup, annotated - select for diffs
Thu Mar 10 22:01:05 2005 UTC (6 years, 1 month ago) by deraadt
Branches: MAIN
CVS tags: OPENBSD_3_8_BASE,
OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_8,
OPENBSD_3_7
Diff to: previous 1.62: preferred, coloured
Changes since revision 1.62: +2 -2
lines
spacing
Revision 1.55.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 10 17:15:04 2005 UTC (6 years, 1 month ago) by brad
Branches: OPENBSD_3_5
Diff to: previous 1.55.2.1: preferred, coloured; branchpoint 1.55: preferred, coloured; next MAIN 1.56: preferred, coloured
Changes since revision 1.55.2.1: +2 -2
lines
upgrade to OpenSSH 4.0
Revision 1.61.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 10 16:28:27 2005 UTC (6 years, 1 month ago) by brad
Branches: OPENBSD_3_6
Diff to: previous 1.61: preferred, coloured
Changes since revision 1.61: +2 -2
lines
upgrade to OpenSSH 4.0
Revision 1.62: download - view: text, markup, annotated - select for diffs
Sun Jan 30 11:18:08 2005 UTC (6 years, 2 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.61: preferred, coloured
Changes since revision 1.61: +2 -2
lines
Make code match intent; ok djm@
Revision 1.49.2.2: download - view: text, markup, annotated - select for diffs
Thu Aug 19 22:37:31 2004 UTC (6 years, 7 months ago) by brad
Branches: OPENBSD_3_4
Diff to: previous 1.49.2.1: preferred, coloured; branchpoint 1.49: preferred, coloured; next MAIN 1.50: preferred, coloured
Changes since revision 1.49.2.1: +70 -64
lines
upgrade to OpenSSH 3.9
Revision 1.55.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 19 04:13:26 2004 UTC (6 years, 7 months ago) by brad
Branches: OPENBSD_3_5
Diff to: previous 1.55: preferred, coloured
Changes since revision 1.55: +70 -64
lines
upgrade to OpenSSH 3.9
Revision 1.61: download - view: text, markup, annotated - select for diffs
Sat Jul 17 05:31:41 2004 UTC (6 years, 8 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_6
Diff to: previous 1.60: preferred, coloured
Changes since revision 1.60: +11 -5
lines
Move "Last logged in at.." message generation to the monitor, right
before recording the new login. Fixes missing lastlog message when
/var/log/lastlog is not world-readable and incorrect datestamp when
multiple sessions are used (bz #463); much assistance & ok markus@
Revision 1.60: download - view: text, markup, annotated - select for diffs
Tue Jun 22 05:05:45 2004 UTC (6 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.59: preferred, coloured
Changes since revision 1.59: +7 -7
lines
Change login->username, will prevent -Wshadow errors in Portable; ok markus@
Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Jun 21 17:36:31 2004 UTC (6 years, 9 months ago) by avsm
Branches: MAIN
Diff to: previous 1.58: preferred, coloured
Changes since revision 1.58: +55 -55
lines
make ssh -Wshadow clean, no functional changes
markus@ ok
Revision 1.58: download - view: text, markup, annotated - select for diffs
Sun Jun 13 12:53:24 2004 UTC (6 years, 10 months ago) by djm
Branches: MAIN
Diff to: previous 1.57: preferred, coloured
Changes since revision 1.57: +2 -1
lines
implement diffie-hellman-group14-sha1 kex method (trivial extension to
existing diffie-hellman-group1-sha1); ok markus@
Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue May 11 19:01:43 2004 UTC (6 years, 11 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.56: preferred, coloured
Changes since revision 1.56: +2 -2
lines
improve some code lint did not like; djm millert ok
Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun May 9 01:19:27 2004 UTC (6 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.55: preferred, coloured
Changes since revision 1.55: +1 -2
lines
kill some more tiny files; ok deraadt@
Revision 1.34.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 4 18:18:15 2004 UTC (7 years, 1 month ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.34.2.1: preferred, coloured; branchpoint 1.34: preferred, coloured; next MAIN 1.35: preferred, coloured
Changes since revision 1.34.2.1: +42 -13
lines
upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8
Revision 1.49.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 28 03:51:33 2004 UTC (7 years, 1 month ago) by brad
Branches: OPENBSD_3_4
Diff to: previous 1.49: preferred, coloured
Changes since revision 1.49: +42 -13
lines
upgrade to OpenSSH 3.8
Revision 1.55: download - view: text, markup, annotated - select for diffs
Thu Feb 5 05:37:17 2004 UTC (7 years, 2 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_5
Diff to: previous 1.54: preferred, coloured
Changes since revision 1.54: +2 -1
lines
Pass SIGALRM through to privsep child if LoginGraceTime expires. ok markus@
Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Nov 21 11:57:03 2003 UTC (7 years, 4 months ago) by djm
Branches: MAIN
Diff to: previous 1.53: preferred, coloured
Changes since revision 1.53: +8 -8
lines
unexpand and delete whitespace at EOL; ok markus@
Revision 1.53: download - view: text, markup, annotated - select for diffs
Tue Nov 18 10:53:07 2003 UTC (7 years, 4 months ago) by djm
Branches: MAIN
Diff to: previous 1.52: preferred, coloured
Changes since revision 1.52: +2 -1
lines
unbreak fake authloop for non-existent users (my screwup). Spotted and
tested by dtucker@; ok markus@
Revision 1.52: download - view: text, markup, annotated - select for diffs
Mon Nov 17 11:06:07 2003 UTC (7 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.51: preferred, coloured
Changes since revision 1.51: +33 -3
lines
replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Tue Nov 4 08:54:09 2003 UTC (7 years, 5 months ago) by djm
Branches: MAIN
Diff to: previous 1.50: preferred, coloured
Changes since revision 1.50: +2 -2
lines
standardise arguments to auth methods - they should all take authctxt.
check authctxt->valid rather then pw != NULL; ok markus@
Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Sep 23 20:17:11 2003 UTC (7 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.49: preferred, coloured
Changes since revision 1.49: +7 -10
lines
replace fatal_cleanup() and linked list of fatal callbacks with static
cleanup_exit() function. re-refine cleanup_exit() where appropriate,
allocate sshd's authctxt eary to allow simpler cleanup in sshd.
tested by many, ok deraadt@
Revision 1.29.2.3: download - view: text, markup, annotated - select for diffs
Tue Sep 16 21:20:26 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_2
Diff to: previous 1.29.2.2: preferred, coloured; branchpoint 1.29: preferred, coloured; next MAIN 1.30: preferred, coloured
Changes since revision 1.29.2.2: +125 -105
lines
upgrade to OpenSSH 3.7
Revision 1.34.2.1: download - view: text, markup, annotated - select for diffs
Tue Sep 16 20:50:43 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.34: preferred, coloured
Changes since revision 1.34: +125 -105
lines
upgrade to OpenSSH 3.7
Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Aug 28 12:54:34 2003 UTC (7 years, 7 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_4_BASE
Branch point for: OPENBSD_3_4
Diff to: previous 1.48: preferred, coloured
Changes since revision 1.48: +1 -49
lines
remove kerberos support from ssh1, since it has been replaced with GSSAPI;
but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
Revision 1.48: download - view: text, markup, annotated - select for diffs
Tue Aug 26 09:58:43 2003 UTC (7 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.47: preferred, coloured
Changes since revision 1.47: +2 -2
lines
fix passwd auth for 'username leaks via timing'; with djm@, original patches from solar
Revision 1.47: download - view: text, markup, annotated - select for diffs
Sun Aug 24 17:36:52 2003 UTC (7 years, 7 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.46: preferred, coloured
Changes since revision 1.46: +4 -2
lines
64 bit cleanups; markus ok
Revision 1.46: download - view: text, markup, annotated - select for diffs
Fri Aug 22 10:56:09 2003 UTC (7 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.45: preferred, coloured
Changes since revision 1.45: +90 -2
lines
support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.
Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Jul 22 13:35:22 2003 UTC (7 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.44: preferred, coloured
Changes since revision 1.44: +1 -53
lines
remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
test+ok henning@
Revision 1.44: download - view: text, markup, annotated - select for diffs
Tue Jun 24 08:23:46 2003 UTC (7 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.43: preferred, coloured
Changes since revision 1.43: +2 -2
lines
int -> u_int; ok djm@, deraadt@, mouring@
Revision 1.43: download - view: text, markup, annotated - select for diffs
Thu Jun 12 07:57:38 2003 UTC (7 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.42: preferred, coloured
Changes since revision 1.42: +2 -2
lines
typos; dtucker at zip.com.au
Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Jun 2 09:17:34 2003 UTC (7 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.41: preferred, coloured
Changes since revision 1.41: +2 -2
lines
deprecate VerifyReverseMapping since it's dangerous if combined
with IP based access control as noted by Mike Harding; replace with
a UseDNS option, UseDNS is on by default and includes the
VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@
ok deraadt@, djm@
Revision 1.41: download - view: text, markup, annotated - select for diffs
Sat May 24 09:30:40 2003 UTC (7 years, 10 months ago) by djm
Branches: MAIN
Diff to: previous 1.40: preferred, coloured
Changes since revision 1.40: +2 -2
lines
cast some types for printing; ok markus@
Revision 1.40: download - view: text, markup, annotated - select for diffs
Wed May 14 08:57:49 2003 UTC (7 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.39: preferred, coloured
Changes since revision 1.39: +18 -1
lines
http://bugzilla.mindrot.org/show_bug.cgi?id=560
Privsep child continues to run after monitor killed.
Pass monitor signals through to child; Darren Tucker
Revision 1.39: download - view: text, markup, annotated - select for diffs
Wed May 14 02:15:47 2003 UTC (7 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.38: preferred, coloured
Changes since revision 1.38: +6 -1
lines
implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@
server interops with commercial client; ok jakob@ djm@
Revision 1.38: download - view: text, markup, annotated - select for diffs
Tue Apr 8 20:21:28 2003 UTC (8 years ago) by itojun
Branches: MAIN
Diff to: previous 1.37: preferred, coloured
Changes since revision 1.37: +3 -3
lines
rename log() into logit() to avoid name conflict. markus ok, from netbsd
Revision 1.29.2.2: download - view: text, markup, annotated - select for diffs
Thu Apr 3 23:27:12 2003 UTC (8 years ago) by margarida
Branches: OPENBSD_3_2
Diff to: previous 1.29.2.1: preferred, coloured; branchpoint 1.29: preferred, coloured
Changes since revision 1.29.2.1: +3 -1
lines
Update to OpenSSH 3.6.1
Revision 1.9.2.5: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:35:17 2003 UTC (8 years ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.9.2.4: preferred, coloured; branchpoint 1.9: preferred, coloured; next MAIN 1.10: preferred, coloured
Changes since revision 1.9.2.4: +26 -16
lines
Merge OpenSSH 3.6.1
Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Apr 2 09:48:07 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.36: preferred, coloured
Changes since revision 1.36: +11 -3
lines
reapply rekeying chage, tested by henning@, ok djm@
Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue Apr 1 10:22:21 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.35: preferred, coloured
Changes since revision 1.35: +3 -11
lines
backout rekeying changes (for 3.6.1)
Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Apr 1 10:10:23 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.34: preferred, coloured
Changes since revision 1.34: +11 -3
lines
rekeying bugfixes and automatic rekeying:
* 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
Revision 1.29.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 1 00:12:13 2003 UTC (8 years ago) by margarida
Branches: OPENBSD_3_2
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +24 -16
lines
Update to OpenSSH 3.6
Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun Mar 23 19:02:00 2003 UTC (8 years ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_3_BASE
Branch point for: OPENBSD_3_3
Diff to: previous 1.33: preferred, coloured
Changes since revision 1.33: +3 -1
lines
unbreak rekeying for privsep; ok millert@
Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Mar 5 22:33:43 2003 UTC (8 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.32: preferred, coloured
Changes since revision 1.32: +9 -3
lines
fix memory leaks; from dlheine@suif.Stanford.EDU/CLOUSEAU; ok djm@
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Feb 16 17:30:33 2003 UTC (8 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +3 -1
lines
fix permitrootlogin forced-commands-only for privsep; bux #387; ok provos@
Revision 1.31: download - view: text, markup, annotated - select for diffs
Tue Feb 4 09:33:22 2003 UTC (8 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.30: preferred, coloured
Changes since revision 1.30: +13 -13
lines
skey/bsdauth: use 0 to indicate failure instead of -1, because
the buffer API only supports unsigned ints.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Tue Nov 5 19:45:20 2002 UTC (8 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +2 -2
lines
handle overflows for size_t larger than u_int; siw@goneko.de, bug #425
Revision 1.11.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 11 14:53:06 2002 UTC (8 years, 6 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.11.2.3: preferred, coloured; next MAIN 1.12: preferred, coloured
Changes since revision 1.11.2.3: +114 -16
lines
Update to OpenSSH 3.5
Revision 1.9.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 11 14:51:52 2002 UTC (8 years, 6 months ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.9.2.3: preferred, coloured; branchpoint 1.9: preferred, coloured
Changes since revision 1.9.2.3: +114 -16
lines
Update to OpenSSH 3.5
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Sep 26 11:38:43 2002 UTC (8 years, 6 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_2
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +52 -1
lines
krb4 + privsep; ok dugsong@, deraadt@
Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Sep 24 08:46:04 2002 UTC (8 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.27: preferred, coloured
Changes since revision 1.27: +3 -2
lines
only call kerberos code for authctxt->valid
Revision 1.27: download - view: text, markup, annotated - select for diffs
Mon Sep 23 22:11:05 2002 UTC (8 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.26: preferred, coloured
Changes since revision 1.26: +3 -2
lines
only call auth_krb5 if kerberos is enabled; ok deraadt@
Revision 1.26: download - view: text, markup, annotated - select for diffs
Mon Sep 9 14:54:15 2002 UTC (8 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.25: preferred, coloured
Changes since revision 1.25: +9 -8
lines
signed vs unsigned from -pedantic; ok henning@
Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Sep 9 06:48:06 2002 UTC (8 years, 7 months ago) by itojun
Branches: MAIN
Diff to: previous 1.24: preferred, coloured
Changes since revision 1.24: +44 -1
lines
kerberos support for privsep. confirmed to work by lha@stacken.kth.se
patch from markus
Revision 1.24: download - view: text, markup, annotated - select for diffs
Thu Aug 29 15:57:25 2002 UTC (8 years, 7 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.23: preferred, coloured
Changes since revision 1.23: +3 -3
lines
pass addrlen with sockaddr *; from Hajimu UMEMOTO <ume@FreeBSD.org>
NOTE: there are also p-specific parts to this patch. ok markus@
Revision 1.23: download - view: text, markup, annotated - select for diffs
Fri Aug 2 14:43:15 2002 UTC (8 years, 8 months ago) by millert
Branches: MAIN
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +3 -3
lines
Change mm_zalloc() sanity checks to be more in line with what
we do in calloc() and add a check to monitor_mm.c.
OK provos@ and markus@
Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Jul 22 17:32:56 2002 UTC (8 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.21: preferred, coloured
Changes since revision 1.21: +3 -2
lines
u_int here; ok provos@
Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Jun 27 10:35:47 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.20: preferred, coloured
Changes since revision 1.20: +2 -2
lines
use xfree()
Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Jun 27 09:08:00 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.19: preferred, coloured
Changes since revision 1.19: +2 -2
lines
improve mm_zalloc check; markus ok
Revision 1.11.2.3: download - view: text, markup, annotated - select for diffs
Wed Jun 26 18:22:35 2002 UTC (8 years, 9 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.11.2.2: preferred, coloured
Changes since revision 1.11.2.2: +8 -4
lines
There was an update to OpenSSH 3.4, and people rejoiced.
Revision 1.9.2.3: download - view: text, markup, annotated - select for diffs
Wed Jun 26 15:30:38 2002 UTC (8 years, 9 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.9.2.2: preferred, coloured; branchpoint 1.9: preferred, coloured
Changes since revision 1.9.2.2: +141 -99
lines
Pull in OpenSSH-3.4
Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed Jun 26 14:49:36 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +3 -3
lines
correct %u
Revision 1.18: download - view: text, markup, annotated - select for diffs
Wed Jun 26 13:20:57 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.17: preferred, coloured
Changes since revision 1.17: +6 -2
lines
be careful in mm_zalloc
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Jun 22 23:09:51 2002 UTC (8 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.16: preferred, coloured
Changes since revision 1.16: +3 -3
lines
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
Revision 1.11.2.2: download - view: text, markup, annotated - select for diffs
Sat Jun 22 07:23:17 2002 UTC (8 years, 9 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.11.2.1: preferred, coloured
Changes since revision 1.11.2.1: +135 -97
lines
Update OpenSSH to version 3.3 (with local changes, configuration files still
living in /etc and privsep user being nobody).
Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Jun 21 05:50:51 2002 UTC (8 years, 9 months ago) by djm
Branches: MAIN
Diff to: previous 1.15: preferred, coloured
Changes since revision 1.15: +13 -8
lines
Don't initialise compression buffers when compression=no in sshd_config;
ok Niels@
Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Jun 19 18:01:00 2002 UTC (8 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.14: preferred, coloured
Changes since revision 1.14: +9 -6
lines
make the monitor sync the transfer ssh1 session key;
transfer keycontext only for RC4 (this is still depends on EVP
implementation details and is broken).
Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Jun 4 23:05:49 2002 UTC (8 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.13: preferred, coloured
Changes since revision 1.13: +71 -71
lines
__FUNCTION__ -> __func__
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Jun 4 19:53:40 2002 UTC (8 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.12: preferred, coloured
Changes since revision 1.12: +31 -7
lines
save the session id (hash) for ssh2 (it will be passed with the initial sign request)
and verify that this value is used during authentication; ok provos@
Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Jun 4 19:42:35 2002 UTC (8 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +15 -9
lines
only allow enabled authentication methods; ok provos@
Revision 1.11.4.1: download - view: text, markup, annotated - select for diffs
Sun Jun 2 22:56:10 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.11: preferred, coloured; next MAIN 1.12: preferred, coloured
Changes since revision 1.11: +1 -1
lines
Upgrade to OpenSSH 3.2.3.
Except for improbable compilation error fixes, this should be the last
commit made to the 2.9-STABLE branche. Have fun upgrading.
Revision 1.9.2.2: download - view: text, markup, annotated - select for diffs
Sat May 18 04:50:38 2002 UTC (8 years, 10 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.9.2.1: preferred, coloured; branchpoint 1.9: preferred, coloured
Changes since revision 1.9.2.1: +0 -0
lines
Update to OpenSSH-3.2.3
Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Sat May 18 04:12:10 2002 UTC (8 years, 10 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +40 -21
lines
Update to OpenSSH-3.2.2
Revision 1.11.2.1: download - view: text, markup, annotated - select for diffs
Fri May 17 00:03:23 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +1 -1
lines
Update OpenSSH to version 3.2.2.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed May 15 15:47:49 2002 UTC (8 years, 11 months ago) by mouring
Branches: MAIN
Branch point for: OPENBSD_3_0,
OPENBSD_2_9
Diff to: previous 1.10: preferred, coloured
Changes since revision 1.10: +20 -20
lines
'monitor' variable clashes with at least one lame platform (NeXT). Renamed
to 'pmonitor'. provos@
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun May 12 23:53:45 2002 UTC (8 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +21 -2
lines
Fix sshd Banner option for privsep; ok markus@ provos@
Revision 1.9: download - view: text, markup, annotated - select for diffs
Sat Mar 30 18:51:15 2002 UTC (9 years ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Diff to: previous 1.8: preferred, coloured
Changes since revision 1.8: +4 -3
lines
check waitpid for EINTR; based on patch from peter@ifm.liu.se
Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Mar 27 17:45:42 2002 UTC (9 years ago) by mouring
Branches: MAIN
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +2 -2
lines
monitor_allowed_key() returns int instead of pointer. ok markus@
Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Mar 24 23:20:00 2002 UTC (9 years ago) by stevesk
Branches: MAIN
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +2 -2
lines
remove "\n" from fatal()
Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Mar 21 18:38:33 2002 UTC (9 years ago) by stevesk
Branches: MAIN
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +4 -4
lines
fix NULL %s on debug3(); ok markus@
Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Mar 19 21:12:48 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.4: preferred, coloured
Changes since revision 1.4: +4 -3
lines
use SSH_SESSION_KEY_LENGTH for key length
Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Mar 19 14:27:39 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.3: preferred, coloured
Changes since revision 1.3: +2 -2
lines
make getpwnamallow() allways call pwcopy()
Revision 1.3: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:41:32 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.2: preferred, coloured
Changes since revision 1.2: +22 -22
lines
whitespace KNF
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:35:39 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.1: preferred, coloured
Changes since revision 1.1: +5 -30
lines
clean up prototypes
Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Mar 18 17:28:37 2002 UTC (9 years ago) by provos
Branches: MAIN
implementation of the interface between privileged and unprivileged process
for ssh-privsep
OpenBSD CVSweb server maintained by <beck@openbsd.org>