★ wanayoo — archive 1999 http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/auth-options.cNouvelle recherche | Portail wanayoo

CVS log for src/usr.bin/ssh/auth-options.c

[BACK] Up to [OpenBSD] / src / usr.bin / ssh

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Dec 24 21:41:48 2010 UTC (3 months, 2 weeks ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_9_BASE, OPENBSD_4_9, HEAD
Diff to: previous 1.53: preferred, coloured
Changes since revision 1.53: +2 -2 lines
don't send the actual forced command in a debug message; ok markus deraadt

Revision 1.53: download - view: text, markup, annotated - select for diffs
Tue Aug 31 09:58:37 2010 UTC (7 months, 1 week ago) by djm
Branches: MAIN
Diff to: previous 1.52: preferred, coloured
Changes since revision 1.52: +4 -4 lines
Add buffer_get_cstring() and related functions that verify that the
string extracted from the buffer contains no embedded \0 characters*
This prevents random (possibly malicious) crap from being appended to
strings where it would not be noticed if the string is used with
a string(3) function.

Use the new API in a few sensitive places.

* actually, we allow a single one at the end of the string for now because
we don't know how many deployed implementations get this wrong, but don't
count on this to remain indefinitely.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Thu May 20 23:46:02 2010 UTC (10 months, 3 weeks ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Diff to: previous 1.51: preferred, coloured
Changes since revision 1.51: +181 -103 lines
Move the permit-* options to the non-critical "extensions" field for v01
certificates. The logic is that if another implementation fails to
implement them then the connection just loses features rather than fails
outright.

ok markus@

Revision 1.51: 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.50: preferred, coloured
Changes since revision 1.50: +42 -1 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.50: download - view: text, markup, annotated - select for diffs
Fri Apr 16 01:47:26 2010 UTC (11 months, 3 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.49: preferred, coloured
Changes since revision 1.49: +11 -10 lines
revised certificate format ssh-{dss,rsa}-cert-v01@openssh.com with the
following changes:

move the nonce field to the beginning of the certificate where it can
better protect against chosen-prefix attacks on the signature hash

Rename "constraints" field to "critical options"

Add a new non-critical "extensions" field

Add a serial number

The older format is still support for authentication and cert generation
(use "ssh-keygen -t v00 -s ca_key ..." to generate a v00 certificate)

ok markus@

Revision 1.49: download - view: text, markup, annotated - select for diffs
Tue Mar 16 15:46:52 2010 UTC (12 months, 3 weeks ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_4_7_BASE, OPENBSD_4_7
Diff to: previous 1.48: preferred, coloured
Changes since revision 1.48: +3 -3 lines
spelling in error message. ok djm kettenis

Revision 1.48: download - view: text, markup, annotated - select for diffs
Sun Mar 7 11:57:13 2010 UTC (13 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.47: preferred, coloured
Changes since revision 1.47: +1 -8 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.47: download - view: text, markup, annotated - select for diffs
Thu Mar 4 23:27:25 2010 UTC (13 months, 1 week ago) by djm
Branches: MAIN
Diff to: previous 1.46: preferred, coloured
Changes since revision 1.46: +2 -2 lines
"force-command" is not spelled "forced-command"; spotted by
imorgan AT nas.nasa.gov

Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Mar 3 01:44:36 2010 UTC (13 months, 1 week ago) by djm
Branches: MAIN
Diff to: previous 1.45: preferred, coloured
Changes since revision 1.45: +20 -8 lines
reject strings with embedded ASCII nul chars in certificate key IDs,
principal names and constraints

Revision 1.45: 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.44: preferred, coloured
Changes since revision 1.44: +149 -1 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.44: download - view: text, markup, annotated - select for diffs
Thu Jan 22 10:09:16 2009 UTC (2 years, 2 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.43: preferred, coloured
Changes since revision 1.43: +3 -3 lines
another chunk of a2port() diff that got away. wtfdjm??

Revision 1.43: download - view: text, markup, annotated - select for diffs
Tue Jun 10 23:06:19 2008 UTC (2 years, 10 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Diff to: previous 1.42: preferred, coloured
Changes since revision 1.42: +17 -8 lines
support CIDR address matching in .ssh/authorized_keys from="..." stanzas

ok and extensive testing dtucker@

Revision 1.42: 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.41: preferred, coloured
Changes since revision 1.41: +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.41: download - view: text, markup, annotated - select for diffs
Wed Mar 26 21:28:14 2008 UTC (3 years ago) by djm
Branches: MAIN
Diff to: previous 1.40: preferred, coloured
Changes since revision 1.40: +10 -1 lines
add no-user-rc authorized_keys option to disable execution of ~/.ssh/rc

Revision 1.31.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.31.4.1: preferred, coloured; branchpoint 1.31: preferred, coloured; next MAIN 1.32: preferred, coloured
Changes since revision 1.31.4.1: +20 -8 lines
upgrade to OpenSSH 4.4

Revision 1.33.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.33: preferred, coloured; next MAIN 1.34: preferred, coloured
Changes since revision 1.33: +20 -8 lines
upgrade to OpenSSH 4.4

Revision 1.40: 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_3_BASE, OPENBSD_4_3, 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.39: preferred, coloured
Changes since revision 1.39: +10 -4 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.39: 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.38: preferred, coloured
Changes since revision 1.38: +2 -1 lines
move #include <string.h> out of includes.h

Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Jul 17 12:02:24 2006 UTC (4 years, 8 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.37: preferred, coloured
Changes since revision 1.37: +6 -6 lines
Use '\0' rather than 0 to terminates strings; ok djm@

Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Jul 12 22:28:51 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.36: preferred, coloured
Changes since revision 1.36: +2 -1 lines
move #include <netdb.h> out of includes.h; ok djm@

Revision 1.36: 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.35: preferred, coloured
Changes since revision 1.35: +5 -1 lines
move #include <pwd.h> out of includes.h; ok markus@

Revision 1.35: 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.34: preferred, coloured
Changes since revision 1.34: +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.34: 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.33: preferred, coloured
Changes since revision 1.33: +0 -1 lines
RCSID() can die

Revision 1.31.4.1: download - view: text, markup, annotated - select for diffs
Fri Feb 3 03:01:55 2006 UTC (5 years, 2 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +40 -1 lines
upgrade to OpenSSH 4.3

Revision 1.31.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.31: preferred, coloured; next MAIN 1.32: preferred, coloured
Changes since revision 1.31: +40 -1 lines
upgrade to OpenSSH 4.3

Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Dec 8 18:34:11 2005 UTC (5 years, 4 months ago) by reyk
Branches: MAIN
CVS tags: OPENBSD_3_9_BASE
Branch point for: OPENBSD_3_9
Diff to: previous 1.32: preferred, coloured
Changes since revision 1.32: +2 -2 lines
two changes to the new ssh tunnel support. this breaks compatibility
with the initial commit but is required for a portable approach.
- make the tunnel id u_int and platform friendly, use predefined types.
- support configuration of layer 2 (ethernet) or layer 3
(point-to-point, default) modes. configuration is done using the
Tunnel (yes|point-to-point|ethernet|no) option is ssh_config(5) and
restricted by the PermitTunnel (yes|point-to-point|ethernet|no) option
in sshd_config(5).

ok djm@, man page bits by jmc@

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Dec 6 22:38:27 2005 UTC (5 years, 4 months ago) by reyk
Branches: MAIN
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +40 -1 lines
Add support for tun(4) forwarding over OpenSSH, based on an idea and
initial channel code bits by markus@. This is a simple and easy way to
use OpenSSH for ad hoc virtual private network connections, e.g.
administrative tunnels or secure wireless access. It's based on a new
ssh channel and works similar to the existing TCP forwarding support,
except that it depends on the tun(4) network interface on both ends of
the connection for layer 2 or layer 3 tunneling. This diff also adds
support for LocalCommand in the ssh(1) client.

ok djm@, markus@, jmc@ (manpages), tested and discussed with others

Revision 1.28.6.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.28.6.1: preferred, coloured; branchpoint 1.28: preferred, coloured; next MAIN 1.29: preferred, coloured
Changes since revision 1.28.6.1: +4 -4 lines
upgrade to OpenSSH 4.1

Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Mar 10 22:40:38 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.30: preferred, coloured
Changes since revision 1.30: +2 -2 lines
spacing

Revision 1.30: 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
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +3 -3 lines
spacing

Revision 1.28.4.1: download - view: text, markup, annotated - select for diffs
Thu Mar 10 17:15:03 2005 UTC (6 years, 1 month ago) by brad
Branches: OPENBSD_3_5
Diff to: previous 1.28: preferred, coloured; next MAIN 1.29: preferred, coloured
Changes since revision 1.28: +16 -12 lines
upgrade to OpenSSH 4.0

Revision 1.28.6.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.28: preferred, coloured
Changes since revision 1.28: +16 -12 lines
upgrade to OpenSSH 4.0

Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Mar 1 10:09:52 2005 UTC (6 years, 1 month ago) by djm
Branches: MAIN
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +16 -12 lines
bz#413: allow optional specification of bind address for port forwardings.
Patch originally by Dan Astorian, but worked on by several people
Adds GatewayPorts=clientspecified option on server to allow remote forwards
to bind to client-specified ports.

ok markus@

Revision 1.26.4.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.26.4.1: preferred, coloured; branchpoint 1.26: preferred, coloured; next MAIN 1.27: preferred, coloured
Changes since revision 1.26.4.1: +0 -0 lines
upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.26.2.1: 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.26: preferred, coloured; next MAIN 1.27: preferred, coloured
Changes since revision 1.26: +4 -4 lines
upgrade to OpenSSH 3.7

Revision 1.26.4.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.26: preferred, coloured
Changes since revision 1.26: +4 -4 lines
upgrade to OpenSSH 3.7

Revision 1.28: 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
CVS tags: OPENBSD_3_6_BASE, OPENBSD_3_5_BASE, OPENBSD_3_4_BASE, OPENBSD_3_4
Branch point for: OPENBSD_3_6, OPENBSD_3_5
Diff to: previous 1.27: preferred, coloured
Changes since revision 1.27: +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.27: 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.26: preferred, coloured
Changes since revision 1.26: +3 -3 lines
rename log() into logit() to avoid name conflict.  markus ok, from netbsd

Revision 1.20.2.3: 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.20.2.2: preferred, coloured; branchpoint 1.20: preferred, coloured; next MAIN 1.21: preferred, coloured
Changes since revision 1.20.2.2: +3 -4 lines
Update to OpenSSH 3.5

Revision 1.23.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.23.2.3: preferred, coloured; branchpoint 1.23: preferred, coloured; next MAIN 1.24: preferred, coloured
Changes since revision 1.23.2.3: +3 -4 lines
Update to OpenSSH 3.5

Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Jul 30 17:03:55 2002 UTC (8 years, 8 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_3_BASE, OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_3, OPENBSD_3_2
Diff to: previous 1.25: preferred, coloured
Changes since revision 1.25: +3 -2 lines
add PermitUserEnvironment (off by default!); from dot@dotat.at; ok provos, deraadt

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Jul 21 18:32:20 2002 UTC (8 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.24: preferred, coloured
Changes since revision 1.24: +1 -3 lines
unneeded includes

Revision 1.23.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.23.2.2: preferred, coloured; branchpoint 1.23: preferred, coloured
Changes since revision 1.23.2.2: +0 -0 lines
Pull in OpenSSH-3.4

Revision 1.16.2.3: 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.16.2.2: preferred, coloured; branchpoint 1.16: preferred, coloured; next MAIN 1.17: preferred, coloured
Changes since revision 1.16.2.2: +27 -15 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.23.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.23.2.1: preferred, coloured; branchpoint 1.23: preferred, coloured
Changes since revision 1.23.2.1: +0 -0 lines
Update to OpenSSH-3.2.3

Revision 1.23.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.23: preferred, coloured
Changes since revision 1.23: +19 -57 lines
Update to OpenSSH-3.2.2

Revision 1.20.2.2: 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.20.2.1: preferred, coloured; branchpoint 1.20: preferred, coloured
Changes since revision 1.20.2.1: +27 -15 lines
Update OpenSSH to version 3.2.2.

Revision 1.24: 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.23: preferred, coloured
Changes since revision 1.23: +19 -57 lines
move the packet_send_debug handling from auth-options.c to auth.c; ok provos@

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:35:39 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.22: preferred, coloured
Changes since revision 1.22: +2 -2 lines
clean up prototypes

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Mar 18 17:50:31 2002 UTC (9 years ago) by provos
Branches: MAIN
Diff to: previous 1.21: preferred, coloured
Changes since revision 1.21: +65 -15 lines
integrate privilege separated openssh; its turned off by default for now.
work done by me and markus@

Revision 1.16.2.2: 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.16.2.1: preferred, coloured; branchpoint 1.16: preferred, coloured
Changes since revision 1.16.2.1: +2 -2 lines
Merge OpenSSH 3.1, keeping /etc as configuration files directory.
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)

Revision 1.5.2.6: 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.5.2.5: preferred, coloured; branchpoint 1.5: preferred, coloured; next MAIN 1.6: preferred, coloured
Changes since revision 1.5.2.5: +2 -2 lines
Merge OpenSSH 3.1.

Revision 1.20.2.1: 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.20: preferred, coloured
Changes since revision 1.20: +2 -2 lines
Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.21: 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.20: preferred, coloured
Changes since revision 1.20: +2 -2 lines
s/ReverseMappingCheck/VerifyReverseMapping/ and avoid confusion; ok stevesk@

Revision 1.16.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.16: preferred, coloured
Changes since revision 1.16: +19 -30 lines
Pull in OpenSSH-2.9.9

Revision 1.5.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.5.2.4: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.4: +19 -30 lines
Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Aug 30 20:36:34 2001 UTC (9 years, 7 months ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Diff to: previous 1.19: preferred, coloured
Changes since revision 1.19: +15 -17 lines
validate ports for permitopen key file option. add host/port
alternative syntax for IPv6. ok markus@

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Jun 24 05:25:09 2001 UTC (9 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +5 -14 lines
move ip+hostname check to match.c

Revision 1.18: download - view: text, markup, annotated - select for diffs
Thu May 31 10:30:12 2001 UTC (9 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.17: preferred, coloured
Changes since revision 1.17: +2 -2 lines
undo the .c file split, just merge the header and keep the cvs history

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed May 30 12:55:06 2001 UTC (9 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.16: preferred, coloured
Changes since revision 1.16: +2 -2 lines
channel layer cleanup: merge header files and split .c files

Revision 1.5.2.4: download - view: text, markup, annotated - select for diffs
Mon May 7 21:09:25 2001 UTC (9 years, 11 months ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.5.2.3: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.3: +0 -0 lines
Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.5.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.5.2.2: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.2: +66 -7 lines
Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.2.2.4: download - view: text, markup, annotated - select for diffs
Wed Mar 21 18:52:32 2001 UTC (10 years ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.2.2.3: preferred, coloured; next MAIN 1.3: preferred, coloured
Changes since revision 1.2.2.3: +66 -7 lines
Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sun Mar 18 12:07:52 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.15: preferred, coloured
Changes since revision 1.15: +3 -2 lines
ignore permitopen="host:port" if AllowTcpForwarding==no

Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Mar 16 19:06:28 2001 UTC (10 years ago) by markus
Branches: MAIN
Diff to: previous 1.14: preferred, coloured
Changes since revision 1.14: +58 -4 lines
implement "permitopen" key option, restricts -L style forwarding to
to specified host:port pairs. based on work by harlan@genua.de

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Mar 13 17:34:42 2001 UTC (10 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.13: preferred, coloured
Changes since revision 1.13: +8 -4 lines
missing xfree, deny key on parse error; ok stevesk@

Revision 1.2.2.3: 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.2.2.2: preferred, coloured
Changes since revision 1.2.2.2: +80 -70 lines
OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.5.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 19 17:18:33 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.5.2.1: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.1: +0 -0 lines
Pull in OpenSSH-2.5.1

Revision 1.5.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 16 20:12:51 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +80 -70 lines
Pull in OpenSSH 2.5.0

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Feb 9 13:38:07 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.12: preferred, coloured
Changes since revision 1.12: +4 -3 lines
reset options if no option is given; from han.holl@prismant.nl

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Feb 3 10:08:36 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +65 -57 lines
make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Jan 21 19:05:41 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.10: preferred, coloured
Changes since revision 1.10: +4 -2 lines
split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Jan 20 15:55:20 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +14 -12 lines
pass the filename to auth_parse_options()

Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jan 19 15:55:10 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.8: preferred, coloured
Changes since revision 1.8: +10 -9 lines
move ssh1 definitions to ssh1.h, pathnames to pathnames.h

Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Jan 13 18:38:00 2001 UTC (10 years, 3 months ago) by markus
Branches: MAIN
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +1 -5 lines
fix comment

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Dec 19 23:17:54 2000 UTC (10 years, 3 months ago) by markus
Branches: MAIN
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +2 -2 lines
replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'
with u_char.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Nov 15 22:31:36 2000 UTC (10 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +8 -8 lines
case insensitive key options; from stevesk@sweden.hp.com

Revision 1.2.2.2: download - view: text, markup, annotated - select for diffs
Wed Nov 8 21:30:17 2000 UTC (10 years, 5 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.2.2.1: preferred, coloured
Changes since revision 1.2.2.1: +43 -20 lines
openssh-2.3.0 (again) for 2.7 branch

Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Oct 9 21:32:34 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.4: preferred, coloured
Changes since revision 1.4: +28 -20 lines
clear options on every call.

Revision 1.4: 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.3: preferred, coloured
Changes since revision 1.3: +1 -24 lines
some more Copyright fixes

Revision 1.3: 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.2: preferred, coloured
Changes since revision 1.2: +39 -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.2.2.1: download - view: text, markup, annotated - select for diffs
Fri Sep 1 18:23:16 2000 UTC (10 years, 7 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.2: preferred, coloured
Changes since revision 1.2: +1 -1 lines
Pull in the rest of openssh-2.2.0 to 2.7 branch (luvin' cvs...)

Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Jun 20 01:39:38 2000 UTC (10 years, 9 months ago) by markus
Branches: MAIN
Branch point for: OPENBSD_2_7
Diff to: previous 1.1: preferred, coloured
Changes since revision 1.1: +1 -1 lines
OpenBSD tag

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Jun 18 04:05:01 2000 UTC (10 years, 9 months ago) by markus
Branches: MAIN
split auth-rsa option parsing into auth-options
add options support to authorized_keys2

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

OpenBSD CVSweb server maintained by <beck@openbsd.org>