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

CVS log for src/usr.bin/ssh/readconf.h

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

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.88: download - view: text, markup, annotated - select for diffs
Sat Nov 13 23:27:50 2010 UTC (4 months, 4 weeks ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_9_BASE, OPENBSD_4_9, HEAD
Diff to: previous 1.87: preferred, coloured
Changes since revision 1.87: +3 -1 lines
allow ssh and sshd to set arbitrary TOS/DSCP/QoS values instead of
hardcoding lowdelay/throughput.

bz#1733 patch from philipp AT redfish-solutions.com; ok markus@ deraadt@

Revision 1.87: download - view: text, markup, annotated - select for diffs
Wed Sep 22 05:01:29 2010 UTC (6 months, 2 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.86: preferred, coloured
Changes since revision 1.86: +2 -1 lines
add a KexAlgorithms knob to the client and server configuration to allow
selection of which key exchange methods are used by ssh(1) and sshd(8)
and their order of preference.

ok markus@

Revision 1.86: download - view: text, markup, annotated - select for diffs
Mon Jul 19 09:15:12 2010 UTC (8 months, 3 weeks ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Diff to: previous 1.85: preferred, coloured
Changes since revision 1.85: +3 -1 lines
add a "ControlPersist" option that automatically starts a background
ssh(1) multiplex master when connecting. This connection can stay alive
indefinitely, or can be set to automatically close after a user-specified
duration of inactivity. bz#1330 - patch by dwmw2 AT infradead.org, but
further hacked on by wmertens AT cisco.com, apb AT cequrux.com,
martin-mindrot-bugzilla AT earth.li and myself; "looks ok" markus@

Revision 1.85: download - view: text, markup, annotated - select for diffs
Fri Jun 25 23:15:36 2010 UTC (9 months, 2 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.84: preferred, coloured
Changes since revision 1.84: +2 -1 lines
Add X11ForwardTimeout option to specify timeout for untrusted X11
authentication cookies to avoid fallback in X11 code to fully-trusted
implicit authentication using SO_PEERCRED described at:
http://lists.x.org/archives/xorg-devel/2010-May/008636.html

After the X11ForwardTimeout has expired the client will now refuse
incoming X11 channel opens.

based on patch from Tavis Ormandy; "nice" markus@

Revision 1.84: download - view: text, markup, annotated - select for diffs
Fri Jun 25 07:14:46 2010 UTC (9 months, 2 weeks ago) by djm
Branches: MAIN
Diff to: previous 1.83: preferred, coloured
Changes since revision 1.83: +3 -3 lines
bz#1327: remove hardcoded limit of 100 permitopen clauses and port
forwards per direction; ok markus@ stevesk@

Revision 1.83: download - view: text, markup, annotated - select for diffs
Sun May 16 12:55:51 2010 UTC (10 months, 3 weeks ago) by markus
Branches: MAIN
Diff to: previous 1.82: preferred, coloured
Changes since revision 1.82: +2 -1 lines
mux support for remote forwarding with dynamic port allocation,
use with
	LPORT=`ssh -S muxsocket -R0:localhost:25 -O forward somehost`
feedback and ok djm@

Revision 1.82: download - view: text, markup, annotated - select for diffs
Mon Feb 8 10:50:20 2010 UTC (14 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_4_7_BASE, OPENBSD_4_7
Diff to: previous 1.81: preferred, coloured
Changes since revision 1.81: +2 -2 lines
replace our obsolete smartcard code with PKCS#11.
	ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs-11v2-20.pdf
ssh(1) and ssh-keygen(1) use dlopen(3) directly to talk to a PKCS#11
provider (shared library) while ssh-agent(1) delegates PKCS#11 to
a forked a ssh-pkcs11-helper process.
PKCS#11 is currently a compile time option.
feedback and ok djm@; inspired by patches from Alon Bar-Lev

Revision 1.81: download - view: text, markup, annotated - select for diffs
Sat Jan 9 23:04:13 2010 UTC (15 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.80: preferred, coloured
Changes since revision 1.80: +0 -2 lines
Remove RoutingDomain from ssh since it's now not needed.  It can be replaced
with "route exec" or "nc -V" as a proxycommand.  "route exec" also ensures
that trafic such as DNS lookups stays withing the specified routingdomain.

For example (from reyk):
# route -T 2 exec /usr/sbin/sshd
or inherited from the parent process
$ route -T 2 exec sh
$ ssh 10.1.2.3

ok deraadt@ markus@ stevesk@ reyk@

Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Oct 28 16:38:18 2009 UTC (17 months, 2 weeks ago) by reyk
Branches: MAIN
Diff to: previous 1.79: preferred, coloured
Changes since revision 1.79: +3 -1 lines
Allow to set the rdomain in ssh/sftp/scp/sshd and ssh-keyscan.

ok markus@

Revision 1.79: download - view: text, markup, annotated - select for diffs
Sat Jun 27 09:35:06 2009 UTC (21 months, 2 weeks ago) by andreas
Branches: MAIN
CVS tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Diff to: previous 1.78: preferred, coloured
Changes since revision 1.78: +3 -1 lines
Add client option UseRoaming. It doesn't do anything yet but will
control whether the client tries to use roaming if enabled on the
server. From Martin Forssen.
ok markus@

Revision 1.78: download - view: text, markup, annotated - select for diffs
Thu Feb 12 03:00:56 2009 UTC (2 years, 1 month ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_5_BASE, OPENBSD_4_5
Diff to: previous 1.77: preferred, coloured
Changes since revision 1.77: +2 -2 lines
support remote port forwarding with a zero listen port (-R0:...) to
dyamically allocate a listen port at runtime (this is actually
specified in rfc4254); bz#1003 ok markus@

Revision 1.77: download - view: text, markup, annotated - select for diffs
Thu Jan 22 10:02:34 2009 UTC (2 years, 2 months ago) by djm
Branches: MAIN
Diff to: previous 1.76: preferred, coloured
Changes since revision 1.76: +3 -3 lines
make a2port() return -1 when it encounters an invalid port number
rather than 0, which it will now treat as valid (needed for future work)

adjust current consumers of a2port() to check its return value is <= 0,
which in turn required some things to be converted from u_short => int

make use of int vs. u_short consistent in some other places too

feedback & ok markus@

Revision 1.76: 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.75: preferred, coloured
Changes since revision 1.75: +2 -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.75: download - view: text, markup, annotated - select for diffs
Sat Nov 1 17:40:33 2008 UTC (2 years, 5 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.74: preferred, coloured
Changes since revision 1.74: +2 -2 lines
merge dynamic forward parsing into parse_forward(); 'i think this is OK' djm@

Revision 1.74: download - view: text, markup, annotated - select for diffs
Thu Jun 26 11:46:31 2008 UTC (2 years, 9 months ago) by grunk
Branches: MAIN
CVS tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Diff to: previous 1.73: preferred, coloured
Changes since revision 1.73: +2 -5 lines
Move SSH Fingerprint Visualization away from sharing the config option
CheckHostIP to an own config option named VisualHostKey.
While there, fix the behaviour that ssh would draw a random art picture
on every newly seen host even when the option was not enabled.

prodded by deraadt@, discussions,
help and ok markus@ djm@ dtucker@

Revision 1.73: download - view: text, markup, annotated - select for diffs
Wed Jun 11 21:01:35 2008 UTC (2 years, 10 months ago) by grunk
Branches: MAIN
Diff to: previous 1.72: preferred, coloured
Changes since revision 1.72: +5 -1 lines
Introduce SSH Fingerprint ASCII Visualization, a technique inspired by the
graphical hash visualization schemes known as "random art", and by
Dan Kaminsky's musings on the subject during a BlackOp talk at the
23C3 in Berlin.

Scientific publication (original paper):
"Hash Visualization: a New Technique to improve Real-World Security",
Perrig A. and Song D., 1999, International Workshop on Cryptographic
Techniques and E-Commerce (CrypTEC '99)
http://sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf

The algorithm used here is a worm crawling over a discrete plane,
leaving a trace (augmenting the field) everywhere it goes.
Movement is taken from dgst_raw 2bit-wise.  Bumping into walls
makes the respective movement vector be ignored for this turn,
thus switching to the other color of the chessboard.
Graphs are not unambiguous for now, because circles in graphs can be
walked in either direction.

discussions with several people,
help, corrections and ok markus@ djm@

Revision 1.72: download - view: text, markup, annotated - select for diffs
Sat Jan 19 23:09:49 2008 UTC (3 years, 2 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Diff to: previous 1.71: preferred, coloured
Changes since revision 1.71: +2 -2 lines
promote rekeylimit to a int64 so it can hold the maximum useful limit
of 2^32; report and patch from Jan.Pechanec AT Sun.COM, ok dtucker@

Revision 1.67.2.2: download - view: text, markup, annotated - select for diffs
Fri Oct 6 03:19:33 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.67.2.1: preferred, coloured; branchpoint 1.67: preferred, coloured; next MAIN 1.68: preferred, coloured
Changes since revision 1.67.2.1: +2 -3 lines
upgrade to OpenSSH 4.4

Revision 1.68.2.1: download - view: text, markup, annotated - select for diffs
Sat Sep 30 04:06:51 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_9
Diff to: previous 1.68: preferred, coloured; next MAIN 1.69: preferred, coloured
Changes since revision 1.68: +2 -3 lines
upgrade to OpenSSH 4.4

Revision 1.71: 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
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.70: preferred, coloured
Changes since revision 1.70: +1 -3 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.70: download - view: text, markup, annotated - select for diffs
Tue Jul 11 18:50:48 2006 UTC (4 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.69: preferred, coloured
Changes since revision 1.69: +2 -1 lines
add ExitOnForwardFailure: terminate the connection if ssh(1)
cannot set up all requested dynamic, local, and remote port
forwardings. ok djm, dtucker, stevesk, jmc

Revision 1.69: download - view: text, markup, annotated - select for diffs
Sat Mar 25 22:22:43 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.68: preferred, coloured
Changes since revision 1.68: +1 -1 lines
standardise spacing in $OpenBSD$ tags; requested by deraadt@

Revision 1.67.2.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.67: preferred, coloured
Changes since revision 1.67: +9 -1 lines
upgrade to OpenSSH 4.3

Revision 1.66.2.2: 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.66.2.1: preferred, coloured; branchpoint 1.66: preferred, coloured; next MAIN 1.67: preferred, coloured
Changes since revision 1.66.2.1: +9 -1 lines
upgrade to OpenSSH 4.3

Revision 1.68: 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
CVS tags: OPENBSD_3_9_BASE
Branch point for: OPENBSD_3_9
Diff to: previous 1.67: preferred, coloured
Changes since revision 1.67: +9 -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.66.2.1: download - view: text, markup, annotated - select for diffs
Sun Sep 4 18:40:03 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_7
Diff to: previous 1.66: preferred, coloured
Changes since revision 1.66: +6 -1 lines
upgrade to OpenSSH 4.2

Revision 1.64.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 2 03:45:00 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_6
Diff to: previous 1.64.2.1: preferred, coloured; branchpoint 1.64: preferred, coloured; next MAIN 1.65: preferred, coloured
Changes since revision 1.64.2.1: +6 -1 lines
upgrade to OpenSSH 4.2

Revision 1.67: download - view: text, markup, annotated - select for diffs
Wed Jun 8 11:25:09 2005 UTC (5 years, 10 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_8
Diff to: previous 1.66: preferred, coloured
Changes since revision 1.66: +6 -1 lines
add ControlMaster=auto/autoask options to support opportunistic multiplexing;
tested avsm@ and jakob@, ok markus@

Revision 1.60.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.60.2.1: preferred, coloured; branchpoint 1.60: preferred, coloured; next MAIN 1.61: preferred, coloured
Changes since revision 1.60.2.1: +10 -6 lines
upgrade to OpenSSH 4.0

Revision 1.64.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.64: preferred, coloured
Changes since revision 1.64: +10 -6 lines
upgrade to OpenSSH 4.0

Revision 1.66: download - view: text, markup, annotated - select for diffs
Tue Mar 1 10:40:27 2005 UTC (6 years, 1 month ago) by djm
Branches: MAIN
CVS tags: OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_7
Diff to: previous 1.65: preferred, coloured
Changes since revision 1.65: +3 -1 lines
add support for hashing host names and addresses added to known_hosts files,
to improve privacy of which hosts user have been visiting; ok markus@ deraadt@

Revision 1.65: 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.64: preferred, coloured
Changes since revision 1.64: +8 -6 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.55.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.55.2.1: preferred, coloured; branchpoint 1.55: preferred, coloured; next MAIN 1.56: preferred, coloured
Changes since revision 1.55.2.1: +12 -3 lines
upgrade to OpenSSH 3.9

Revision 1.60.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 19 04:13:27 2004 UTC (6 years, 7 months ago) by brad
Branches: OPENBSD_3_5
Diff to: previous 1.60: preferred, coloured
Changes since revision 1.60: +11 -3 lines
upgrade to OpenSSH 3.9

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Jul 11 17:48:47 2004 UTC (6 years, 9 months ago) by deraadt
Branches: MAIN
CVS tags: OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_6
Diff to: previous 1.63: preferred, coloured
Changes since revision 1.63: +2 -2 lines
spaces

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun Jun 13 15:03:02 2004 UTC (6 years, 10 months ago) by djm
Branches: MAIN
Diff to: previous 1.62: preferred, coloured
Changes since revision 1.62: +4 -1 lines
implement session multiplexing in the client (the server has supported this
since 2.0); ok markus@

Revision 1.62: download - view: text, markup, annotated - select for diffs
Tue Apr 27 09:46:37 2004 UTC (6 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.61: preferred, coloured
Changes since revision 1.61: +6 -1 lines
bz #815: implement ability to pass specified environment variables from the
client to the server; ok markus@

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sun Apr 18 23:10:26 2004 UTC (6 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.60: preferred, coloured
Changes since revision 1.60: +2 -2 lines
perform strict ownership and modes checks for ~/.ssh/config files, as these
can be used to execute arbitrary programs; ok markus@

NB. ssh will now exit when it detects a config with poor permissions

Revision 1.60: download - view: text, markup, annotated - select for diffs
Fri Mar 5 10:53:58 2004 UTC (7 years, 1 month ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_5
Diff to: previous 1.59: preferred, coloured
Changes since revision 1.59: +2 -1 lines
add IdentitiesOnly; ok djm@, pb@

Revision 1.44.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 4 18:18:16 2004 UTC (7 years, 1 month ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.44.2.1: preferred, coloured; branchpoint 1.44: preferred, coloured; next MAIN 1.45: preferred, coloured
Changes since revision 1.44.2.1: +6 -3 lines
upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.55.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.55: preferred, coloured
Changes since revision 1.55: +6 -3 lines
upgrade to OpenSSH 3.8

Revision 1.59: download - view: text, markup, annotated - select for diffs
Tue Dec 16 15:49:51 2003 UTC (7 years, 3 months ago) by markus
Branches: MAIN
Diff to: previous 1.58: preferred, coloured
Changes since revision 1.58: +3 -1 lines
application layer keep alive (ServerAliveInterval ServerAliveCountMax)
for ssh(1), similar to the sshd(8) option; ok beck@; with help from
jmc and dtucker@

Revision 1.58: download - view: text, markup, annotated - select for diffs
Tue Dec 9 21:53:36 2003 UTC (7 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.57: preferred, coloured
Changes since revision 1.57: +2 -2 lines
rename keepalive to tcpkeepalive; the old name causes too much
confusion; ok djm, dtucker; with help from jmc@

Revision 1.57: 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.56: preferred, coloured
Changes since revision 1.56: +2 -2 lines
unexpand and delete whitespace at EOL; ok markus@

Revision 1.56: download - view: text, markup, annotated - select for diffs
Sat Oct 11 08:24:08 2003 UTC (7 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.55: preferred, coloured
Changes since revision 1.55: +2 -1 lines
remote x11 clients are now untrusted by default, uses xauth(8) to generate
untrusted cookies; ForwardX11Trusted=yes restores old behaviour.
ok deraadt; feedback and ok djm/fries

Revision 1.43.2.2: 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.43.2.1: preferred, coloured; branchpoint 1.43: preferred, coloured; next MAIN 1.44: preferred, coloured
Changes since revision 1.43.2.1: +8 -11 lines
upgrade to OpenSSH 3.7

Revision 1.44.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.44: preferred, coloured
Changes since revision 1.44: +8 -11 lines
upgrade to OpenSSH 3.7

Revision 1.55: download - view: text, markup, annotated - select for diffs
Mon Sep 1 18:15:50 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.54: preferred, coloured
Changes since revision 1.54: +1 -3 lines
remove unused kerberos code; ok henning@

Revision 1.54: 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.53: preferred, coloured
Changes since revision 1.53: +3 -1 lines
support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Wed Aug 13 08:46:30 2003 UTC (7 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.52: preferred, coloured
Changes since revision 1.52: +1 -2 lines
remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,
fgsch@, miod@, henning@, jakob@ and others

Revision 1.52: 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.51: preferred, coloured
Changes since revision 1.51: +1 -2 lines
remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
test+ok henning@

Revision 1.51: download - view: text, markup, annotated - select for diffs
Thu Jul 3 08:09:06 2003 UTC (7 years, 9 months ago) by djm
Branches: MAIN
Diff to: previous 1.50: preferred, coloured
Changes since revision 1.50: +2 -1 lines
fix AddressFamily option in config file, from brent@graveland.net; ok markus@

Revision 1.50: download - view: text, markup, annotated - select for diffs
Thu May 15 14:55:25 2003 UTC (7 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.49: preferred, coloured
Changes since revision 1.49: +3 -1 lines
add a ConnectTimeout option to ssh, based on patch from
Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@

Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu May 15 01:48:10 2003 UTC (7 years, 11 months ago) by jakob
Branches: MAIN
Diff to: previous 1.48: preferred, coloured
Changes since revision 1.48: +1 -7 lines
always parse kerberos options. ok djm@ markus@

Revision 1.48: download - view: text, markup, annotated - select for diffs
Wed May 14 18:16:20 2003 UTC (7 years, 11 months ago) by jakob
Branches: MAIN
Diff to: previous 1.47: preferred, coloured
Changes since revision 1.47: +2 -1 lines
add experimental support for verifying hos keys using DNS as described
in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
ok markus@ and henning@

Revision 1.42.2.2: 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.42.2.1: preferred, coloured; branchpoint 1.42: preferred, coloured; next MAIN 1.43: preferred, coloured
Changes since revision 1.42.2.1: +3 -1 lines
Merge OpenSSH 3.6.1

Revision 1.47: 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.46: preferred, coloured
Changes since revision 1.46: +2 -1 lines
reapply rekeying chage, tested by henning@, ok djm@

Revision 1.46: 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.45: preferred, coloured
Changes since revision 1.45: +1 -2 lines
backout rekeying changes (for 3.6.1)

Revision 1.45: 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.44: preferred, coloured
Changes since revision 1.44: +2 -1 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.43.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 1 00:12:14 2003 UTC (8 years ago) by margarida
Branches: OPENBSD_3_2
Diff to: previous 1.43: preferred, coloured
Changes since revision 1.43: +3 -1 lines
Update to OpenSSH 3.6

Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu Nov 7 22:08:07 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.43: preferred, coloured
Changes since revision 1.43: +3 -1 lines
we cannot use HostbasedAuthentication for enabling ssh-keysign(8),
because HostbasedAuthentication might be enabled based on the
target host and ssh-keysign(8) does not know the remote hostname
and not trust ssh(1) about the hostname, so we add a new option
EnableSSHKeysign; ok djm@, report from zierke@informatik.uni-hamburg.de

Revision 1.42.2.1: 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.42: preferred, coloured
Changes since revision 1.42: +1 -3 lines
Pull in OpenSSH-3.4

Revision 1.40.2.3: 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.40.2.2: preferred, coloured; branchpoint 1.40: preferred, coloured; next MAIN 1.41: preferred, coloured
Changes since revision 1.40.2.2: +1 -3 lines
Update OpenSSH to version 3.3 (with local changes, configuration files still
living in /etc and privsep user being nobody).

Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Jun 8 05:17:01 2002 UTC (8 years, 10 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_2
Diff to: previous 1.42: preferred, coloured
Changes since revision 1.42: +1 -3 lines
deprecate FallBackToRsh and UseRsh; patch from djm@

Revision 1.30.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 9 00:20:44 2002 UTC (9 years, 1 month ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.30.2.2: preferred, coloured; branchpoint 1.30: preferred, coloured; next MAIN 1.31: preferred, coloured
Changes since revision 1.30.2.2: +2 -2 lines
Merge OpenSSH 3.1, keeping /etc as configuration files directory.
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)

Revision 1.22.2.7: download - view: text, markup, annotated - select for diffs
Fri Mar 8 17:04:42 2002 UTC (9 years, 1 month ago) by brad
Branches: OPENBSD_2_8
Diff to: previous 1.22.2.6: preferred, coloured; branchpoint 1.22: preferred, coloured; next MAIN 1.23: preferred, coloured
Changes since revision 1.22.2.6: +2 -2 lines
Merge OpenSSH 3.1.

Revision 1.40.2.2: download - view: text, markup, annotated - select for diffs
Fri Mar 8 15:17:18 2002 UTC (9 years, 1 month ago) by brad
Branches: OPENBSD_3_0
Diff to: previous 1.40.2.1: preferred, coloured; branchpoint 1.40: preferred, coloured
Changes since revision 1.40.2.1: +2 -2 lines
apply the necessary openbsd30_3.1.patch patch.
--
Ok'd by markus@

Revision 1.40.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 7 17:37:47 2002 UTC (9 years, 1 month ago) by jason
Branches: OPENBSD_3_0
Diff to: previous 1.40: preferred, coloured
Changes since revision 1.40: +3 -3 lines
Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Mar 4 17:27:39 2002 UTC (9 years, 1 month ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Diff to: previous 1.41: preferred, coloured
Changes since revision 1.41: +2 -2 lines
$OpenBSD$ and RCSID() cleanup: don't use RCSID() in .h files; add
missing RCSID() to .c files and remove dup /*$OpenBSD$*/ from .c
files.  ok markus@

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Feb 10 01:07:05 2002 UTC (9 years, 2 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.40: preferred, coloured
Changes since revision 1.40: +2 -2 lines
more /etc/ssh; openbsd@davidkrause.com

Revision 1.30.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.30.2.1: preferred, coloured; branchpoint 1.30: preferred, coloured
Changes since revision 1.30.2.1: +2 -1 lines
Merge OpenSSH 3.0

Revision 1.22.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.22.2.5: preferred, coloured; branchpoint 1.22: preferred, coloured
Changes since revision 1.22.2.5: +2 -1 lines
Merge OpenSSH 3.0

Revision 1.40: download - view: text, markup, annotated - select for diffs
Mon Oct 1 21:51:16 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.39: preferred, coloured
Changes since revision 1.39: +2 -1 lines
add NoHostAuthenticationForLocalhost; note that the hostkey is
now check for localhost, too.

Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Thu Sep 27 19:03:55 2001 UTC (9 years, 6 months ago) by jason
Branches: OPENBSD_2_9
Diff to: previous 1.30: preferred, coloured
Changes since revision 1.30: +18 -53 lines
Pull in OpenSSH-2.9.9

Revision 1.22.2.5: download - view: text, markup, annotated - select for diffs
Thu Sep 27 00:15:42 2001 UTC (9 years, 6 months ago) by miod
Branches: OPENBSD_2_8
Diff to: previous 1.22.2.4: preferred, coloured; branchpoint 1.22: preferred, coloured
Changes since revision 1.22.2.4: +18 -53 lines
Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Wed Sep 19 19:24:18 2001 UTC (9 years, 6 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.38: preferred, coloured
Changes since revision 1.38: +2 -1 lines
add ClearAllForwardings ssh option and set it in scp and sftp; ok markus@

Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Sep 3 20:58:33 2001 UTC (9 years, 7 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.37: preferred, coloured
Changes since revision 1.37: +2 -2 lines
fatal() for nonexistent -Fssh_config. ok markus@

Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Aug 1 22:03:33 2001 UTC (9 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.36: preferred, coloured
Changes since revision 1.36: +2 -2 lines
use strings instead of ints for smartcard reader ids

Revision 1.36: download - view: text, markup, annotated - select for diffs
Tue Jul 31 09:28:44 2001 UTC (9 years, 8 months ago) by jakob
Branches: MAIN
Diff to: previous 1.35: preferred, coloured
Changes since revision 1.35: +2 -1 lines
add 'SmartcardDevice' client option to specify which smartcard device is used
to access a smartcard used for storing the user's private RSA key. ok markus@.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Jun 26 17:27:24 2001 UTC (9 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.34: preferred, coloured
Changes since revision 1.34: +7 -41 lines
remove comments from .h, since they are cut&paste from the .c files
and out of sync

Revision 1.34: download - view: text, markup, annotated - select for diffs
Tue Jun 26 16:15:24 2001 UTC (9 years, 9 months ago) by dugsong
Branches: MAIN
Diff to: previous 1.33: preferred, coloured
Changes since revision 1.33: +6 -5 lines
Kerberos v5 support for SSH1, mostly from Assar Westerlund <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok

Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Jun 26 06:32:58 2001 UTC (9 years, 9 months ago) by itojun
Branches: MAIN
Diff to: previous 1.32: preferred, coloured
Changes since revision 1.32: +7 -12 lines
prototype pedant.  not very creative...
- () -> (void)
- no variable names

Revision 1.32: download - view: text, markup, annotated - select for diffs
Fri May 18 14:13:29 2001 UTC (9 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +2 -2 lines
improved kbd-interactive support. work by per@appgate.com and me

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

Revision 1.31: download - view: text, markup, annotated - select for diffs
Mon Apr 30 11:18:52 2001 UTC (9 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.30: preferred, coloured
Changes since revision 1.30: +2 -1 lines
implement 'ssh -b bind_address' like 'telnet -b'

Revision 1.30: download - view: text, markup, annotated - select for diffs
Tue Apr 17 10:53:25 2001 UTC (9 years, 11 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +2 -1 lines
add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@

Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Apr 12 19:15:25 2001 UTC (10 years ago) by markus
Branches: MAIN
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +2 -1 lines
implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
similar to RhostRSAAuthentication unless you enable (the experimental)
HostbasedUsesNameFromPacketOnly option.  please test. :)

Revision 1.22.2.3: download - view: text, markup, annotated - select for diffs
Wed Mar 21 19:46:27 2001 UTC (10 years ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.22.2.2: preferred, coloured; branchpoint 1.22: preferred, coloured
Changes since revision 1.22.2.2: +5 -2 lines
Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.18.2.5: download - view: text, markup, annotated - select for diffs
Wed Mar 21 18:52:57 2001 UTC (10 years ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.18.2.4: preferred, coloured; branchpoint 1.18: preferred, coloured; next MAIN 1.19: preferred, coloured
Changes since revision 1.18.2.4: +5 -2 lines
Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.18.2.4: download - view: text, markup, annotated - select for diffs
Mon Mar 12 15:44:13 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.18.2.3: preferred, coloured; branchpoint 1.18: preferred, coloured
Changes since revision 1.18.2.3: +8 -6 lines
OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.28: download - view: text, markup, annotated - select for diffs
Sat Mar 10 17:51:04 2001 UTC (10 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.27: preferred, coloured
Changes since revision 1.27: +2 -1 lines
add PreferredAuthentications

Revision 1.27: download - view: text, markup, annotated - select for diffs
Thu Mar 8 21:42:32 2001 UTC (10 years, 1 month ago) by markus
Branches: MAIN
Diff to: previous 1.26: preferred, coloured
Changes since revision 1.26: +4 -2 lines
implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key ->
no need to do enter passphrase or do expensive sign operations if the
server does not accept key).

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

Revision 1.22.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 16 20:13:10 2001 UTC (10 years, 1 month ago) by jason
Branches: OPENBSD_2_8
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +8 -6 lines
Pull in OpenSSH 2.5.0

Revision 1.26: download - view: text, markup, annotated - select for diffs
Sun Feb 11 12:59:25 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.25: preferred, coloured
Changes since revision 1.25: +2 -1 lines
1) clean up the MAC support for SSH-2
2) allow you to specify the MAC with 'ssh -m'
3) or the 'MACs' keyword in ssh(d)_config
4) add hmac-{md5,sha1}-96
	ok stevesk@, provos@

Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Jan 22 23:06:39 2001 UTC (10 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.24: preferred, coloured
Changes since revision 1.24: +3 -2 lines
rename skey -> challenge response.
auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Dec 27 12:30:20 2000 UTC (10 years, 3 months ago) by markus
Branches: MAIN
Diff to: previous 1.23: preferred, coloured
Changes since revision 1.23: +2 -1 lines
new option: HostKeyAlias: allows the user to record the host key
under a different name. This is useful for ssh tunneling over
forwarded connections or if you run multiple sshd's on different
ports on the same machine.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Sun Nov 12 19:50:37 2000 UTC (10 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +4 -5 lines
add support for RSA to SSH2.  please test.

there are now 3 types of keys: RSA1 is used by ssh-1 only,
RSA and DSA are used by SSH2.

you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
keys for SSH2 and use the RSA keys for hostkeys or for user keys.

SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.

IdentityFile2, HostDsaKey and DSAAuthentication are obsolete.
you can use multiple IdentityFile and HostKey for all types of keys.

the option DSAAuthentication is replaced by PubkeyAuthetication.

Revision 1.18.2.3: download - view: text, markup, annotated - select for diffs
Wed Nov 8 21:31:07 2000 UTC (10 years, 5 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.18.2.2: preferred, coloured; branchpoint 1.18: preferred, coloured
Changes since revision 1.18.2.2: +8 -8 lines
openssh-2.3.0 (again) for 2.7 branch

Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Oct 11 20:14:39 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.21: preferred, coloured
Changes since revision 1.21: +3 -1 lines
add support for s/key (kbd-interactive) to ssh2, based on work by mkiernan@avantgo.com and me

Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Sep 7 20:27:53 2000 UTC (10 years, 7 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.20: preferred, coloured
Changes since revision 1.20: +6 -8 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.18.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 1 18:23:21 2000 UTC (10 years, 7 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.18.2.1: preferred, coloured; branchpoint 1.18: preferred, coloured
Changes since revision 1.18.2.1: +1 -1 lines
Pull in the rest of openssh-2.2.0 to 2.7 branch (luvin' cvs...)

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

Revision 1.18.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 12 02:37:34 2000 UTC (10 years, 10 months ago) by jason
Branches: OPENBSD_2_7
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +2 -1 lines
lovin' CVS... update patch branch to OpenSSH-2.1.1

Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed May 31 06:36:40 2000 UTC (10 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +2 -1 lines
xauth_location support; pr 1234

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon May 8 17:12:15 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.17: preferred, coloured
Changes since revision 1.17: +2 -2 lines
complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat May 6 17:45:36 2000 UTC (10 years, 11 months ago) by markus
Branches: MAIN
Diff to: previous 1.16: preferred, coloured
Changes since revision 1.16: +2 -1 lines
add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8

Revision 1.16: 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.15: preferred, coloured
Changes since revision 1.15: +5 -1 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.15: download - view: text, markup, annotated - select for diffs
Fri Apr 14 10:30:32 2000 UTC (11 years ago) by markus
Branches: MAIN
Diff to: previous 1.14: preferred, coloured
Changes since revision 1.14: +11 -11 lines
whitespace cleanup

Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Apr 12 07:45:44 2000 UTC (11 years ago) by markus
Branches: MAIN
Diff to: previous 1.13: preferred, coloured
Changes since revision 1.13: +3 -1 lines
add Cipher and Protocol options to ssh/sshd, e.g.:
ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers arcfour,3des-cbc'

Revision 1.13: download - view: text, markup, annotated - select for diffs
Wed Dec 1 13:59:15 1999 UTC (11 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.12: preferred, coloured
Changes since revision 1.12: +8 -8 lines
ports are u_short

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Nov 24 19:53:49 1999 UTC (11 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +29 -18 lines
KNF, final part 3

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Nov 24 00:26:02 1999 UTC (11 years, 4 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.10: preferred, coloured
Changes since revision 1.10: +88 -81 lines
much more KNF

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Nov 22 21:52:41 1999 UTC (11 years, 4 months ago) by markus
Branches: MAIN
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +2 -1 lines
tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
messages. allows use of s/key in windows (ttssh, securecrt) and
ssh-1.2.27 clients without 'ssh -v', ok: niels@

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Nov 14 21:45:07 1999 UTC (11 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.8: preferred, coloured
Changes since revision 1.8: +4 -3 lines
print _all_ bad config-options in ssh(1), too

Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Nov 10 23:36:44 1999 UTC (11 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +2 -1 lines
add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
obsoletes QuietMode and FascistLogging in sshd.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Oct 12 21:04:22 1999 UTC (11 years, 6 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +2 -1 lines
-P/UsePrivilegedPort from 1.2.27, it turns of allocation of priv. port
and disabled rhosts/rhosts-rsa, ok deraadt@

Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Oct 6 20:07:42 1999 UTC (11 years, 6 months ago) by dugsong
Branches: MAIN
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +2 -1 lines
implement client NumberOfPasswordPrompts option

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Oct 3 21:50:03 1999 UTC (11 years, 6 months ago) by provos
Branches: MAIN
Diff to: previous 1.4: preferred, coloured
Changes since revision 1.4: +2 -1 lines
add code to detect DNS spoofing:

the main idea is to not only store the host key for the hostname but
also for the according IP address.  When we check the host key in the
known_hosts file, we also check the key against the according IP address.
When the server key changes, host_status = HOST_CHANGED.  If
check_host_in_hostfile() returns differing status for the IP address
that means that either DNS was spoofed or that the IP address
for the host and the host key changed at the same time.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Thu Sep 30 05:03:05 1999 UTC (11 years, 6 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.3: preferred, coloured
Changes since revision 1.3: +1 -3 lines
cull more ancient garbage from pre-POSIX days

Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Sep 29 18:16:20 1999 UTC (11 years, 6 months ago) by dugsong
Branches: MAIN
Diff to: previous 1.2: preferred, coloured
Changes since revision 1.2: +2 -4 lines
update krb4/AFS support to ssh-1.2.27-afs-kerberos-pl1 level, clean up unused variables, update manpages

Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed Sep 29 00:10:16 1999 UTC (11 years, 6 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.1: preferred, coloured
Changes since revision 1.1: +2 -1 lines
GatewayPorts and ssh -g; markus.friedl@informatik.uni-erlangen.de

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Sep 26 20:53:37 1999 UTC (11 years, 6 months ago) by deraadt
Branches: MAIN
i bet a lot of people didn't know what ssh 1.2.16 had a nice license.
well, except for the patent issues.  someone in sweden (forget their
name at the moment) cleaned out most of the patented code, and now
this code removes rsa code.  when this is done, it will link against
libssl, but the work isn't completely done yet.  then we need to bring
this up to modern days, featurewise.

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>