CVS log for src/usr.bin/ssh/auth.c
Up to [OpenBSD] / src / usr.bin / ssh
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.91: download - view: text, markup, annotated - select for diffs
Mon Nov 29 23:45:51 2010 UTC (4 months, 1 week ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_9_BASE,
OPENBSD_4_9,
HEAD
Diff to: previous 1.90: preferred, coloured
Changes since revision 1.90: +18 -12
lines
automatically order the hostkeys requested by the client based on
which hostkeys are already recorded in known_hosts. This avoids
hostkey warnings when connecting to servers with new ECDSA keys
that are preferred by default; with markus@
Revision 1.90: download - view: text, markup, annotated - select for diffs
Tue Nov 23 02:35:50 2010 UTC (4 months, 2 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.89: preferred, coloured
Changes since revision 1.89: +2 -2
lines
use strict_modes already passed as function argument over referencing
global options.strict_modes
Revision 1.89: download - view: text, markup, annotated - select for diffs
Wed Aug 4 05:42:47 2010 UTC (8 months, 1 week ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_8_BASE,
OPENBSD_4_8
Diff to: previous 1.88: preferred, coloured
Changes since revision 1.88: +2 -2
lines
enable certificates for hostbased authentication, from Iain Morgan;
"looks ok" markus@
Revision 1.88: download - view: text, markup, annotated - select for diffs
Tue Jun 22 04:49:47 2010 UTC (9 months, 3 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.87: preferred, coloured
Changes since revision 1.87: +4 -1
lines
queue auth debug messages for bad ownership or permissions on the user's
keyfiles. These messages will be sent after the user has successfully
authenticated (where our client will display them with LogLevel=debug).
bz#1554; ok dtucker@
Revision 1.87: download - view: text, markup, annotated - select for diffs
Fri May 7 11:30:29 2010 UTC (11 months ago) by djm
Branches: MAIN
Diff to: previous 1.86: preferred, coloured
Changes since revision 1.86: +30 -11
lines
add some optional indirection to matching of principal names listed
in certificates. Currently, a certificate must include the a user's name
to be accepted for authentication. This change adds the ability to
specify a list of certificate principal names that are acceptable.
When authenticating using a CA trusted through ~/.ssh/authorized_keys,
this adds a new principals="name1[,name2,...]" key option.
For CAs listed through sshd_config's TrustedCAKeys option, a new config
option "AuthorizedPrincipalsFile" specifies a per-user file containing
the list of acceptable names.
If either option is absent, the current behaviour of requiring the
username to appear in principals continues to apply.
These options are useful for role accounts, disjoint account namespaces
and "user@realm"-style naming policies in certificates.
feedback and ok markus@
Revision 1.86: download - view: text, markup, annotated - select for diffs
Fri Mar 5 02:58:11 2010 UTC (13 months, 1 week ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_7_BASE,
OPENBSD_4_7
Diff to: previous 1.85: preferred, coloured
Changes since revision 1.85: +3 -2
lines
make the warning for a revoked key louder and more noticable
Revision 1.85: download - view: text, markup, annotated - select for diffs
Thu Mar 4 10:36:03 2010 UTC (13 months, 1 week ago) by djm
Branches: MAIN
Diff to: previous 1.84: preferred, coloured
Changes since revision 1.84: +30 -1
lines
Add a TrustedUserCAKeys option to sshd_config to specify CA keys that
are trusted to authenticate users (in addition than doing it per-user
in authorized_keys).
Add a RevokedKeys option to sshd_config and a @revoked marker to
known_hosts to allow keys to me revoked and banned for user or host
authentication.
feedback and ok markus@
Revision 1.84: download - view: text, markup, annotated - select for diffs
Tue Feb 9 06:18:46 2010 UTC (14 months ago) by djm
Branches: MAIN
Diff to: previous 1.83: preferred, coloured
Changes since revision 1.83: +21 -36
lines
unbreak ChrootDirectory+internal-sftp by skipping check for executable shell
when chrooting; reported by danh AT wzrd.com; ok dtucker@
Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Jan 13 23:47:26 2010 UTC (14 months, 4 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.82: preferred, coloured
Changes since revision 1.82: +23 -3
lines
when using ChrootDirectory, make sure we test for the existence of the
user's shell inside the chroot; bz #1679, patch from alex AT rtfs.hu;
ok dtucker
Revision 1.82: download - view: text, markup, annotated - select for diffs
Wed Jan 13 00:19:04 2010 UTC (14 months, 4 weeks ago) by dtucker
Branches: MAIN
Diff to: previous 1.81: preferred, coloured
Changes since revision 1.81: +2 -2
lines
Fix a couple of typos/mispellings in comments
Revision 1.81: download - view: text, markup, annotated - select for diffs
Sun Jan 10 07:15:56 2010 UTC (15 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.80: preferred, coloured
Changes since revision 1.80: +6 -2
lines
Output a debug if we can't open an existing keyfile. bz#1694, ok djm@
Revision 1.80: download - view: text, markup, annotated - select for diffs
Tue Nov 4 07:58:09 2008 UTC (2 years, 5 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_6_BASE,
OPENBSD_4_6,
OPENBSD_4_5_BASE,
OPENBSD_4_5
Diff to: previous 1.79: preferred, coloured
Changes since revision 1.79: +2 -1
lines
need unistd.h for close() prototype
Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed Jul 2 12:03:51 2008 UTC (2 years, 9 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_4_BASE,
OPENBSD_4_4
Diff to: previous 1.78: preferred, coloured
Changes since revision 1.78: +43 -2
lines
Merge duplicate host key file checks, based in part on a patch from Rob
Holland via bz #1348 . Also checks for non-regular files during protocol
1 RSA auth. ok djm@
Revision 1.78: 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
CVS tags: OPENBSD_4_3_BASE,
OPENBSD_4_3
Diff to: previous 1.77: preferred, coloured
Changes since revision 1.77: +1 -5
lines
unifdef -DBSD_AUTH
unifdef -USKEY
These options have been in use for some years;
ok markus@ "no objection" millert@
Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu Aug 23 02:55:51 2007 UTC (3 years, 7 months ago) by djm
Branches: MAIN
Diff to: previous 1.76: preferred, coloured
Changes since revision 1.76: +2 -1
lines
missed include bits from last commit
Revision 1.76: download - view: text, markup, annotated - select for diffs
Thu Aug 23 02:49:43 2007 UTC (3 years, 7 months ago) by djm
Branches: MAIN
Diff to: previous 1.75: preferred, coloured
Changes since revision 1.75: +1 -5
lines
unifdef HAVE_LOGIN_CAP; ok deraadt@ millert@
Revision 1.60.2.1: 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.60: preferred, coloured; next MAIN 1.61: preferred, coloured
Changes since revision 1.60: +29 -13
lines
upgrade to OpenSSH 4.4
Revision 1.62.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.62: preferred, coloured; next MAIN 1.63: preferred, coloured
Changes since revision 1.62: +26 -14
lines
upgrade to OpenSSH 4.4
Revision 1.75: download - view: text, markup, annotated - select for diffs
Thu Aug 3 03:34:41 2006 UTC (4 years, 8 months ago) by deraadt
Branches: MAIN
CVS tags: OPENBSD_4_2_BASE,
OPENBSD_4_2,
OPENBSD_4_1_BASE,
OPENBSD_4_1,
OPENBSD_4_0_BASE,
OPENBSD_4_0
Diff to: previous 1.74: preferred, coloured
Changes since revision 1.74: +7 -6
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.74: download - view: text, markup, annotated - select for diffs
Tue Aug 1 23:22:47 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.73: preferred, coloured
Changes since revision 1.73: +2 -1
lines
move #include <stdio.h> out of includes.h
Revision 1.73: 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.72: preferred, coloured
Changes since revision 1.72: +2 -1
lines
move #include <sys/param.h> out of includes.h
Revision 1.72: download - view: text, markup, annotated - select for diffs
Sat Jul 22 20:48:22 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.71: preferred, coloured
Changes since revision 1.71: +2 -1
lines
move #include <string.h> out of includes.h
Revision 1.71: download - view: text, markup, annotated - select for diffs
Wed Jul 12 11:34:58 2006 UTC (4 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.70: preferred, coloured
Changes since revision 1.70: +4 -1
lines
Add support for conditional directives to sshd_config via a "Match" keyword,
which works similarly to the "Host" directive in ssh_config.
Lines after a Match line override the default set in the main section
if the condition on the Match line is true, eg
AllowTcpForwarding yes
Match User anoncvs
AllowTcpForwarding no
will allow port forwarding by all users except "anoncvs".
Currently only a very small subset of directives are supported.
ok djm@
Revision 1.70: 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.69: preferred, coloured
Changes since revision 1.69: +2 -1
lines
move #include <errno.h> out of includes.h; ok markus@
Revision 1.69: download - view: text, markup, annotated - select for diffs
Mon Jul 10 16:37:36 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.68: preferred, coloured
Changes since revision 1.68: +2 -1
lines
move #include <stdarg.h> out of includes.h; ok markus@
Revision 1.68: 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.67: preferred, coloured
Changes since revision 1.67: +2 -1
lines
move #include <pwd.h> out of includes.h; ok markus@
Revision 1.67: 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.66: preferred, coloured
Changes since revision 1.66: +6 -1
lines
Prevent duplicate log messages when privsep=yes; ok djm@
Revision 1.66: download - view: text, markup, annotated - select for diffs
Sat Mar 25 13:17:01 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.65: preferred, coloured
Changes since revision 1.65: +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.65: 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.64: preferred, coloured
Changes since revision 1.64: +5 -7
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.64: download - view: text, markup, annotated - select for diffs
Mon Mar 20 17:10:19 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.63: preferred, coloured
Changes since revision 1.63: +0 -1
lines
in a switch (), break after return or goto is stupid
Revision 1.63: 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.62: preferred, coloured
Changes since revision 1.62: +0 -1
lines
RCSID() can die
Revision 1.62: download - view: text, markup, annotated - select for diffs
Mon Feb 20 17:19:53 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.61: preferred, coloured
Changes since revision 1.61: +4 -1
lines
move #include <sys/stat.h> out of includes.h; ok markus@
Revision 1.61: 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.60: preferred, coloured
Changes since revision 1.60: +2 -1
lines
move #include <paths.h> out of includes.h; ok markus@
Revision 1.58.2.1: download - view: text, markup, annotated - select for diffs
Sun Sep 4 18:39:52 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_7
Diff to: previous 1.58: preferred, coloured; next MAIN 1.59: preferred, coloured
Changes since revision 1.58: +19 -42
lines
upgrade to OpenSSH 4.2
Revision 1.56.2.3: download - view: text, markup, annotated - select for diffs
Fri Sep 2 03:44:59 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_6
Diff to: previous 1.56.2.2: preferred, coloured; branchpoint 1.56: preferred, coloured; next MAIN 1.57: preferred, coloured
Changes since revision 1.56.2.2: +19 -42
lines
upgrade to OpenSSH 4.2
Revision 1.60: download - view: text, markup, annotated - select for diffs
Fri Jun 17 02:44:32 2005 UTC (5 years, 9 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_8
Diff to: previous 1.59: preferred, coloured
Changes since revision 1.59: +2 -2
lines
make this -Wsign-compare clean; ok avsm@ markus@
Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Jun 6 11:20:36 2005 UTC (5 years, 10 months ago) by djm
Branches: MAIN
Diff to: previous 1.58: preferred, coloured
Changes since revision 1.58: +18 -41
lines
introduce a generic %foo expansion function. replace existing % expansion and
add expansion to ControlPath; ok markus@
Revision 1.56.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.56.2.1: preferred, coloured; branchpoint 1.56: preferred, coloured
Changes since revision 1.56.2.1: +3 -2
lines
upgrade to OpenSSH 4.1
Revision 1.58: download - view: text, markup, annotated - select for diffs
Mon Mar 14 11:44:42 2005 UTC (6 years, 1 month ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_7
Diff to: previous 1.57: preferred, coloured
Changes since revision 1.57: +3 -2
lines
Populate host for log message for logins denied by AllowUsers and DenyUsers.
(bz #999); ok markus@
Revision 1.51.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.51.2.1: preferred, coloured; branchpoint 1.51: preferred, coloured; next MAIN 1.52: preferred, coloured
Changes since revision 1.51.2.1: +14 -11
lines
upgrade to OpenSSH 4.0
Revision 1.56.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.56: preferred, coloured
Changes since revision 1.56: +14 -11
lines
upgrade to OpenSSH 4.0
Revision 1.57: download - view: text, markup, annotated - select for diffs
Sat Jan 22 08:17:59 2005 UTC (6 years, 2 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.56: preferred, coloured
Changes since revision 1.56: +14 -11
lines
Log source of connections denied by AllowUsers, DenyUsers, AllowGroups and
DenyGroups. bz #909, ok djm@
Revision 1.49.2.2: download - view: text, markup, annotated - select for diffs
Thu Aug 19 22:37:30 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: +6 -7
lines
upgrade to OpenSSH 3.9
Revision 1.51.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.51: preferred, coloured
Changes since revision 1.51: +6 -7
lines
upgrade to OpenSSH 3.9
Revision 1.56: download - view: text, markup, annotated - select for diffs
Wed Jul 28 09:40:29 2004 UTC (6 years, 8 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_6
Diff to: previous 1.55: preferred, coloured
Changes since revision 1.55: +2 -2
lines
more s/illegal/invalid/
Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed Jul 21 08:56:12 2004 UTC (6 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.54: preferred, coloured
Changes since revision 1.54: +2 -2
lines
s/Illegal user/Invalid user/; many requests; ok djm, millert, niklas, miod, ...
Revision 1.54: download - view: text, markup, annotated - select for diffs
Sun May 23 23:59:53 2004 UTC (6 years, 10 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.53: preferred, coloured
Changes since revision 1.53: +2 -2
lines
Add MaxAuthTries sshd config option; ok markus@
Revision 1.53: 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.52: preferred, coloured
Changes since revision 1.52: +3 -3
lines
improve some code lint did not like; djm millert ok
Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat May 8 00:01:37 2004 UTC (6 years, 11 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.51: preferred, coloured
Changes since revision 1.51: +1 -2
lines
make two tiny header files go away; djm ok
Revision 1.46.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.46.2.1: preferred, coloured; branchpoint 1.46: preferred, coloured; next MAIN 1.47: preferred, coloured
Changes since revision 1.46.2.1: +2 -10
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:32 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: +2 -10
lines
upgrade to OpenSSH 3.8
Revision 1.51: download - view: text, markup, annotated - select for diffs
Fri Nov 21 11:57:02 2003 UTC (7 years, 4 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_5
Diff to: previous 1.50: preferred, coloured
Changes since revision 1.50: +2 -2
lines
unexpand and delete whitespace at EOL; 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: +1 -9
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.45.2.2: download - view: text, markup, annotated - select for diffs
Tue Sep 16 21:20:24 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_2
Diff to: previous 1.45.2.1: preferred, coloured; branchpoint 1.45: preferred, coloured; next MAIN 1.46: preferred, coloured
Changes since revision 1.45.2.1: +33 -14
lines
upgrade to OpenSSH 3.7
Revision 1.46.2.1: download - view: text, markup, annotated - select for diffs
Tue Sep 16 20:50:42 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.46: preferred, coloured
Changes since revision 1.46: +33 -14
lines
upgrade to OpenSSH 3.7
Revision 1.49: 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
CVS tags: OPENBSD_3_4_BASE
Branch point for: OPENBSD_3_4
Diff to: previous 1.48: preferred, coloured
Changes since revision 1.48: +20 -1
lines
fix passwd auth for 'username leaks via timing'; with djm@, original patches from solar
Revision 1.48: 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.47: preferred, coloured
Changes since revision 1.47: +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.47: 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.46: preferred, coloured
Changes since revision 1.46: +13 -13
lines
rename log() into logit() to avoid name conflict. markus ok, from netbsd
Revision 1.41.2.5: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:35:16 2003 UTC (8 years ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.41.2.4: preferred, coloured; branchpoint 1.41: preferred, coloured; next MAIN 1.42: preferred, coloured
Changes since revision 1.41.2.4: +5 -7
lines
Merge OpenSSH 3.6.1
Revision 1.45.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.45: preferred, coloured
Changes since revision 1.45: +5 -7
lines
Update to OpenSSH 3.6
Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon Nov 4 10:07:53 2002 UTC (8 years, 5 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_3_BASE
Branch point for: OPENBSD_3_3
Diff to: previous 1.45: preferred, coloured
Changes since revision 1.45: +5 -7
lines
don't compare against pw_home if realpath fails for pw_home (seen on AFS); ok djm@
Revision 1.28.2.5: 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.28.2.4: preferred, coloured; branchpoint 1.28: preferred, coloured; next MAIN 1.29: preferred, coloured
Changes since revision 1.28.2.4: +8 -3
lines
Update to OpenSSH 3.5
Revision 1.41.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 11 14:51:51 2002 UTC (8 years, 6 months ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.41.2.3: preferred, coloured; branchpoint 1.41: preferred, coloured
Changes since revision 1.41.2.3: +8 -3
lines
Update to OpenSSH 3.5
Revision 1.45: download - view: text, markup, annotated - select for diffs
Fri Sep 20 18:41:29 2002 UTC (8 years, 6 months ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_2
Diff to: previous 1.44: preferred, coloured
Changes since revision 1.44: +7 -2
lines
log illegal user here for missing privsep case (ssh2).
this is executed in the monitor. ok markus@
Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu Aug 8 23:54:52 2002 UTC (8 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.43: preferred, coloured
Changes since revision 1.43: +2 -2
lines
typo in comment
Revision 1.41.2.3: download - view: text, markup, annotated - select for diffs
Wed Jun 26 15:30:37 2002 UTC (8 years, 9 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.41.2.2: preferred, coloured; branchpoint 1.41: preferred, coloured
Changes since revision 1.41.2.2: +0 -0
lines
Pull in OpenSSH-3.4
Revision 1.21.2.5: download - view: text, markup, annotated - select for diffs
Sun Jun 2 22:56:09 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.21.2.4: preferred, coloured; branchpoint 1.21: preferred, coloured; next MAIN 1.22: preferred, coloured
Changes since revision 1.21.2.4: +88 -6
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.28.2.4: download - view: text, markup, annotated - select for diffs
Sun Jun 2 22:36:55 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.28.2.3: preferred, coloured; branchpoint 1.28: preferred, coloured
Changes since revision 1.28.2.3: +2 -2
lines
That long-delayed OpenSSH 3.2.3 update.
Revision 1.41.2.2: download - view: text, markup, annotated - select for diffs
Sat May 18 04:50:37 2002 UTC (8 years, 10 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.41.2.1: preferred, coloured; branchpoint 1.41: preferred, coloured
Changes since revision 1.41.2.1: +2 -2
lines
Update to OpenSSH-3.2.3
Revision 1.41.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.41: preferred, coloured
Changes since revision 1.41: +47 -1
lines
Update to OpenSSH-3.2.2
Revision 1.43: download - view: text, markup, annotated - select for diffs
Fri May 17 14:27:55 2002 UTC (8 years, 10 months ago) by millert
Branches: MAIN
Diff to: previous 1.42: preferred, coloured
Changes since revision 1.42: +2 -2
lines
Fix typo/thinko. Pass in as to auth_approval(), not NULL.
Closes PR 2659.
Revision 1.28.2.3: 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.28.2.2: preferred, coloured; branchpoint 1.28: preferred, coloured
Changes since revision 1.28.2.2: +88 -6
lines
Update OpenSSH to version 3.2.2.
Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon May 13 20:44:58 2002 UTC (8 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.41: preferred, coloured
Changes since revision 1.41: +47 -1
lines
move the packet_send_debug handling from auth-options.c to auth.c; ok provos@
Revision 1.41: download - view: text, markup, annotated - select for diffs
Tue Mar 19 15:31:47 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.40: preferred, coloured
Changes since revision 1.40: +4 -2
lines
check for NULL; from provos@
Revision 1.40: 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.39: preferred, coloured
Changes since revision 1.39: +3 -2
lines
make getpwnamallow() allways call pwcopy()
Revision 1.39: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:49:35 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.38: preferred, coloured
Changes since revision 1.38: +5 -5
lines
KNF whitespace
Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Mar 18 03:41:08 2002 UTC (9 years ago) by provos
Branches: MAIN
Diff to: previous 1.37: preferred, coloured
Changes since revision 1.37: +23 -3
lines
move auth_approval into getpwnamallow with help from millert@
Revision 1.37: download - view: text, markup, annotated - select for diffs
Sun Mar 17 20:25:56 2002 UTC (9 years ago) by provos
Branches: MAIN
Diff to: previous 1.36: preferred, coloured
Changes since revision 1.36: +13 -1
lines
getpwnamallow returns struct passwd * only if user valid; okay markus@
Revision 1.36: download - view: text, markup, annotated - select for diffs
Fri Mar 15 11:00:38 2002 UTC (9 years, 1 month ago) by itojun
Branches: MAIN
Diff to: previous 1.35: preferred, coloured
Changes since revision 1.35: +3 -2
lines
fix file type checking (use S_ISREG). ok by markus
Revision 1.21.2.4: download - view: text, markup, annotated - select for diffs
Sat Mar 9 00:20:43 2002 UTC (9 years, 1 month ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.21.2.3: preferred, coloured; branchpoint 1.21: preferred, coloured
Changes since revision 1.21.2.3: +32 -13
lines
Merge OpenSSH 3.1, keeping /etc as configuration files directory.
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)
Revision 1.11.2.8: download - view: text, markup, annotated - select for diffs
Fri Mar 8 17:04:41 2002 UTC (9 years, 1 month ago) by brad
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.7: preferred, coloured; branchpoint 1.11: preferred, coloured; next MAIN 1.12: preferred, coloured
Changes since revision 1.11.2.7: +32 -13
lines
Merge OpenSSH 3.1.
Revision 1.28.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 7 17:37:46 2002 UTC (9 years, 1 month ago) by jason
Branches: OPENBSD_3_0
Diff to: previous 1.28.2.1: preferred, coloured; branchpoint 1.28: preferred, coloured
Changes since revision 1.28.2.1: +32 -13
lines
Update to OpenSSH-3.1 on 3.0-stable branch
Revision 1.35: download - view: text, markup, annotated - select for diffs
Fri Mar 1 13:12:10 2002 UTC (9 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.34: preferred, coloured
Changes since revision 1.34: +9 -3
lines
undo the 'delay hostname lookup' change
match.c must not use compress.c (via canonhost.c/packet.c)
thanks to wilfried@
Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Feb 28 20:56:00 2002 UTC (9 years, 1 month ago) by stevesk
Branches: MAIN
Diff to: previous 1.33: preferred, coloured
Changes since revision 1.33: +25 -6
lines
log user not allowed details, from dwd@bell-labs.com; ok markus@
Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Feb 28 19:36:28 2002 UTC (9 years, 1 month ago) by stevesk
Branches: MAIN
Diff to: previous 1.32: preferred, coloured
Changes since revision 1.32: +3 -9
lines
delay hostname lookup until we see a ``@'' in DenyUsers and AllowUsers
for sshd -u0; ok markus@
Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Jan 29 14:32:03 2002 UTC (9 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +2 -2
lines
s/ReverseMappingCheck/VerifyReverseMapping/ and avoid confusion; ok stevesk@
Revision 1.31: download - view: text, markup, annotated - select for diffs
Wed Dec 19 07:18:56 2001 UTC (9 years, 3 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.30: preferred, coloured
Changes since revision 1.30: +4 -4
lines
basic KNF done while i was looking for something else
Revision 1.30: download - view: text, markup, annotated - select for diffs
Sat Nov 17 19:14:34 2001 UTC (9 years, 4 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +2 -2
lines
enum/int type cleanup where it made sense to do so; ok markus@
Revision 1.21.2.3: download - view: text, markup, annotated - select for diffs
Thu Nov 15 22:51:15 2001 UTC (9 years, 4 months ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.21.2.2: preferred, coloured; branchpoint 1.21: preferred, coloured
Changes since revision 1.21.2.2: +2 -2
lines
Merge OpenSSH 3.0.1.
Revision 1.11.2.7: download - view: text, markup, annotated - select for diffs
Thu Nov 15 22:50:30 2001 UTC (9 years, 4 months ago) by miod
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.6: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.6: +2 -2
lines
Merge OpenSSH 3.0.1.
This is likely to be the last commit to the 2.8-STABLE branch.
Revision 1.21.2.2: download - view: text, markup, annotated - select for diffs
Thu Nov 15 00:15:19 2001 UTC (9 years, 4 months ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.21.2.1: preferred, coloured; branchpoint 1.21: preferred, coloured
Changes since revision 1.21.2.1: +8 -3
lines
Merge OpenSSH 3.0
Revision 1.11.2.6: download - view: text, markup, annotated - select for diffs
Thu Nov 15 00:14:59 2001 UTC (9 years, 4 months ago) by miod
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.5: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.5: +8 -3
lines
Merge OpenSSH 3.0
Revision 1.28.2.1: download - view: text, markup, annotated - select for diffs
Wed Nov 14 03:24:38 2001 UTC (9 years, 5 months ago) by jason
Branches: OPENBSD_3_0
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +2 -2
lines
Pull in patches from current (Errata 002):
Update to OpenSSH-3.0.1 via errata patch (Instead of using release tarball)
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Nov 8 20:02:24 2001 UTC (9 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +2 -2
lines
don't print ROOT in CAPS for the authentication messages, i.e.
Accepted publickey for ROOT from 127.0.0.1 port 42734 ssh2
becomes
Accepted publickey for root from 127.0.0.1 port 42734 ssh2
Revision 1.28: download - view: text, markup, annotated - select for diffs
Wed Oct 3 10:01:20 2001 UTC (9 years, 6 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Diff to: previous 1.27: preferred, coloured
Changes since revision 1.27: +8 -3
lines
use realpath() for homedir, too. from jinmei@isl.rdc.toshiba.co.jp
Revision 1.21.2.1: download - view: text, markup, annotated - select for diffs
Thu Sep 27 19:03:54 2001 UTC (9 years, 6 months ago) by jason
Branches: OPENBSD_2_9
Diff to: previous 1.21: preferred, coloured
Changes since revision 1.21: +193 -3
lines
Pull in OpenSSH-2.9.9
Revision 1.11.2.5: download - view: text, markup, annotated - select for diffs
Thu Sep 27 00:15:41 2001 UTC (9 years, 6 months ago) by miod
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.4: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.4: +193 -3
lines
Pull in OpenSSH 2.9.9 to the 2.8 branch.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Jul 11 18:26:15 2001 UTC (9 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.26: preferred, coloured
Changes since revision 1.26: +7 -10
lines
no need to call dirname(pw->pw_dir).
note that dirname(3) modifies its argument on some systems.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Jun 27 04:48:52 2001 UTC (9 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.25: preferred, coloured
Changes since revision 1.25: +11 -3
lines
tridge@samba.org
Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Jun 25 17:54:48 2001 UTC (9 years, 9 months ago) by provos
Branches: MAIN
Diff to: previous 1.24: preferred, coloured
Changes since revision 1.24: +13 -2
lines
terminate secure_filename checking after checking homedir. that way it
works on AFS. okay markus@
Revision 1.24: download - view: text, markup, annotated - select for diffs
Sat Jun 23 00:20:57 2001 UTC (9 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.23: preferred, coloured
Changes since revision 1.23: +42 -1
lines
*known_hosts2 is obsolete for hostbased authentication and
only used for backward compat. merge ssh1/2 hostkey check
and move it to auth.c
Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu May 24 11:12:42 2001 UTC (9 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +2 -2
lines
fix comment; from jakob@
Revision 1.22: download - view: text, markup, annotated - select for diffs
Sun May 20 17:20:35 2001 UTC (9 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.21: preferred, coloured
Changes since revision 1.21: +134 -1
lines
configurable authorized_keys{,2} location; originally from peter@; ok djm@
Revision 1.11.2.4: download - view: text, markup, annotated - select for diffs
Mon May 7 21:09:26 2001 UTC (9 years, 11 months ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.3: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.3: +0 -0
lines
Pull in OpenSSH-2.9 to 2.8 branch.
Revision 1.11.2.3: download - view: text, markup, annotated - select for diffs
Wed Mar 21 19:46:22 2001 UTC (10 years ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.2: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.2: +2 -17
lines
Pull in OpenSSH-2.5.2 for 2.8 branch.
Revision 1.6.2.5: download - view: text, markup, annotated - select for diffs
Wed Mar 21 18:52:34 2001 UTC (10 years ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.6.2.4: preferred, coloured; branchpoint 1.6: preferred, coloured; next MAIN 1.7: preferred, coloured
Changes since revision 1.6.2.4: +2 -17
lines
Pull in OpenSSH-2.5.2 for 2.7 branch.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Mar 19 17:07:23 2001 UTC (10 years ago) by markus
Branches: MAIN
CVS tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Diff to: previous 1.20: preferred, coloured
Changes since revision 1.20: +1 -10
lines
undo /etc/shell and proto 2,1 change for openssh-2.5.2
Revision 1.20: download - view: text, markup, annotated - select for diffs
Sat Mar 17 17:27:59 2001 UTC (10 years ago) by markus
Branches: MAIN
Diff to: previous 1.19: preferred, coloured
Changes since revision 1.19: +11 -2
lines
check /etc/shells, too
Revision 1.6.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 12 15:44:07 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.6.2.3: preferred, coloured; branchpoint 1.6: preferred, coloured
Changes since revision 1.6.2.3: +103 -56
lines
OpenSSH-2.5.1 for 2.7 patch branch
Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Mar 2 18:54:31 2001 UTC (10 years, 1 month ago) by deraadt
Branches: MAIN
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +2 -2
lines
make copyright lines the same format
Revision 1.18: download - view: text, markup, annotated - select for diffs
Thu Feb 22 21:59:43 2001 UTC (10 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.17: preferred, coloured
Changes since revision 1.17: +1 -16
lines
use pwcopy in ssh.c, too
Revision 1.11.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 19 17:18:37 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.11.2.1: preferred, coloured; branchpoint 1.11: preferred, coloured
Changes since revision 1.11.2.1: +0 -0
lines
Pull in OpenSSH-2.5.1
Revision 1.11.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 16 20:12:53 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +103 -56
lines
Pull in OpenSSH 2.5.0
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Feb 12 16:16:23 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.16: preferred, coloured
Changes since revision 1.16: +18 -11
lines
PermitRootLogin={yes,without-password,forced-commands-only,no}
(before this change, root could login even if PermitRootLogin==no)
Revision 1.16: download - view: text, markup, annotated - select for diffs
Sun Feb 4 15:32:22 2001 UTC (10 years, 2 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.15: preferred, coloured
Changes since revision 1.15: +4 -4
lines
unexpand and remove end-of-line whitespace; ok markus@
Revision 1.15: download - view: text, markup, annotated - select for diffs
Sat Feb 3 10:08:37 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.14: preferred, coloured
Changes since revision 1.14: +2 -2
lines
make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Jan 21 19:05:43 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.13: preferred, coloured
Changes since revision 1.13: +4 -4
lines
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]
Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Jan 18 16:59:59 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.12: preferred, coloured
Changes since revision 1.12: +72 -22
lines
1) removes fake skey from sshd, since this will be much
harder with /usr/libexec/auth/login_XXX
2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
3) make addition of BSD_AUTH and other challenge reponse methods
easier.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Jan 13 18:56:48 2001 UTC (10 years, 3 months ago) by markus
Branches: MAIN
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +23 -33
lines
support supplementary group in {Allow,Deny}Groups
from stevesk@pobox.com
Revision 1.6.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 8 21:30:22 2000 UTC (10 years, 5 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.6.2.2: preferred, coloured; branchpoint 1.6: preferred, coloured
Changes since revision 1.6.2.2: +29 -3
lines
openssh-2.3.0 (again) for 2.7 branch
Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Oct 11 20:27:23 2000 UTC (10 years, 6 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_2_8_BASE
Branch point for: OPENBSD_2_8
Diff to: previous 1.10: preferred, coloured
Changes since revision 1.10: +1 -2
lines
new cipher framework
Revision 1.10: download - view: text, markup, annotated - select for diffs
Thu Sep 7 21:13:36 2000 UTC (10 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +1 -2
lines
some more Copyright fixes
Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu Sep 7 20:27:49 2000 UTC (10 years, 7 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.8: preferred, coloured
Changes since revision 1.8: +29 -1
lines
cleanup copyright notices on all files. I have attempted to be accurate with
the details. everything is now under Tatu's licence (which I copied from his
readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd
developers under a 2-term bsd licence. We're not changing any rules, just
being accurate.
Revision 1.6.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 1 18:23:17 2000 UTC (10 years, 7 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.6.2.1: preferred, coloured; branchpoint 1.6: preferred, coloured
Changes since revision 1.6.2.1: +1 -3
lines
Pull in the rest of openssh-2.2.0 to 2.7 branch (luvin' cvs...)
Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Aug 4 20:30:07 2000 UTC (10 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +1 -3
lines
unused
Revision 1.6.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 12 02:37:31 2000 UTC (10 years, 10 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +9 -2
lines
lovin' CVS... update patch branch to OpenSSH-2.1.1
Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed May 17 21:37:24 2000 UTC (10 years, 10 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +9 -2
lines
accept an empty shell in authentication; bug reported by chris@tinker.ucr.edu
Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Apr 26 21:28:31 2000 UTC (10 years, 11 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_2_7_BASE
Branch point for: OPENBSD_2_7
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +2 -826
lines
split auth/sshconnect in one file per protocol version
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Apr 26 20:56:29 2000 UTC (10 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.4: preferred, coloured
Changes since revision 1.4: +249 -49
lines
add DSA pubkey auth and other SSH2 fixes. use ssh-keygen -[xX]
for trading keys with the real and the original SSH, directly from the
people who invented the SSH protocol.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Apr 14 10:30:29 2000 UTC (11 years ago) by markus
Branches: MAIN
Diff to: previous 1.3: preferred, coloured
Changes since revision 1.3: +23 -23
lines
whitespace cleanup
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Apr 14 10:09:14 2000 UTC (11 years ago) by markus
Branches: MAIN
Diff to: previous 1.2: preferred, coloured
Changes since revision 1.2: +15 -5
lines
check payload for (illegal) extra data
Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Apr 6 08:55:22 2000 UTC (11 years ago) by markus
Branches: MAIN
Diff to: previous 1.1: preferred, coloured
Changes since revision 1.1: +172 -1
lines
ssh2 server side, see README.openssh2; enable with 'sshd -2'
Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Mar 28 21:15:45 2000 UTC (11 years ago) by markus
Branches: MAIN
split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
OpenBSD CVSweb server maintained by <beck@openbsd.org>