Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c0fe794fc | ||
|
|
ed81385770 | ||
|
|
baf0e28ca9 | ||
|
|
fb789a9108 | ||
|
|
442366e667 | ||
|
|
8ba5292c25 |
@@ -1,17 +1,24 @@
|
||||
20110204
|
||||
- OpenBSD CVS Sync
|
||||
- [email protected] 2011/01/31 21:42:15
|
||||
[PROTOCOL.mux]
|
||||
cut'n'pasto; from bert.wesarg AT googlemail.com
|
||||
- [email protected] 2011/02/04 00:44:21
|
||||
[key.c]
|
||||
fix uninitialised nonce variable; reported by Mateusz Kocielski
|
||||
- [email protected] 2011/02/04 00:44:43
|
||||
[version.h]
|
||||
openssh-5.8
|
||||
- (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
|
||||
[contrib/suse/openssh.spec] update versions in docs and spec files.
|
||||
- Release OpenSSH 5.8p1
|
||||
|
||||
20110128
|
||||
- (djm) [openbsd-compat/port-linux.c] Check whether SELinux is enabled
|
||||
before attempting setfscreatecon(). Check whether matchpathcon()
|
||||
succeeded before using its result. Patch from cjwatson AT debian.org;
|
||||
bz#1851
|
||||
|
||||
20110127
|
||||
- (tim) [config.guess config.sub] Sync with upstream.
|
||||
- (tim) [configure.ac] Consistent M4 quoting throughout, updated obsolete
|
||||
AC_TRY_COMPILE with AC_COMPILE_IFELSE, updated obsolete AC_TRY_LINK with
|
||||
AC_LINK_IFELSE, updated obsolete AC_TRY_RUN with AC_RUN_IFELSE, misc white
|
||||
space changes for consistency/readability. Makes autoconf 2.68 happy.
|
||||
"Nice work" djm
|
||||
|
||||
20110125
|
||||
- (djm) [configure.ac Makefile.in ssh.c openbsd-compat/port-linux.c
|
||||
openbsd-compat/port-linux.h] Move SELinux-specific code from ssh.c to
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
# $Id: Makefile.in,v 1.321 2011/01/25 01:16:16 djm Exp $
|
||||
# $Id: Makefile.in,v 1.320.4.1 2011/02/04 00:42:13 djm Exp $
|
||||
|
||||
# uncomment if you run a non bourne compatable shell. Ie. csh
|
||||
#SHELL = @SH@
|
||||
|
||||
+2
-2
@@ -122,7 +122,7 @@ For dynamically allocated listen port the server replies with
|
||||
|
||||
Note: currently unimplemented (server will always reply with MUX_S_FAILURE).
|
||||
|
||||
A client may request the master to establish a port forward:
|
||||
A client may request the master to close a port forward:
|
||||
|
||||
uint32 MUX_C_CLOSE_FWD
|
||||
uint32 request id
|
||||
@@ -200,4 +200,4 @@ XXX server->client error/warning notifications
|
||||
XXX port0 rfwd (need custom response message)
|
||||
XXX send signals via mux
|
||||
|
||||
$OpenBSD: PROTOCOL.mux,v 1.3 2011/01/13 21:55:25 djm Exp $
|
||||
$OpenBSD: PROTOCOL.mux,v 1.4 2011/01/31 21:42:15 djm Exp $
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
See http://www.openssh.com/txt/release-5.7 for the release notes.
|
||||
See http://www.openssh.com/txt/release-5.8 for the release notes.
|
||||
|
||||
- A Japanese translation of this document and of the OpenSSH FAQ is
|
||||
- available at http://www.unixuser.org/~haruyama/security/openssh/index.html
|
||||
@@ -62,4 +62,4 @@ References -
|
||||
[6] http://www.openbsd.org/cgi-bin/man.cgi?query=style&sektion=9
|
||||
[7] http://www.openssh.com/faq.html
|
||||
|
||||
$Id: README,v 1.75 2011/01/22 09:23:12 djm Exp $
|
||||
$Id: README,v 1.75.4.1 2011/02/04 00:57:50 djm Exp $
|
||||
|
||||
+1307
-1192
File diff suppressed because it is too large
Load Diff
@@ -16,7 +16,7 @@
|
||||
|
||||
#old cvs stuff. please update before use. may be deprecated.
|
||||
%define use_stable 1
|
||||
%define version 5.7p1
|
||||
%define version 5.8p1
|
||||
%if %{use_stable}
|
||||
%define cvs %{nil}
|
||||
%define release 1
|
||||
@@ -363,4 +363,4 @@ fi
|
||||
* Mon Jan 01 1998 ...
|
||||
Template Version: 1.31
|
||||
|
||||
$Id: openssh.spec,v 1.73 2011/01/22 09:23:33 djm Exp $
|
||||
$Id: openssh.spec,v 1.73.4.1 2011/02/04 00:57:54 djm Exp $
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
%define ver 5.7p1
|
||||
%define ver 5.8p1
|
||||
%define rel 1
|
||||
|
||||
# OpenSSH privilege separation requires a user & group ID
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
Summary: OpenSSH, a free Secure Shell (SSH) protocol implementation
|
||||
Name: openssh
|
||||
Version: 5.7p1
|
||||
Version: 5.8p1
|
||||
URL: http://www.openssh.com/
|
||||
Release: 1
|
||||
Source0: openssh-%{version}.tar.gz
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: key.c,v 1.95 2010/11/10 01:33:07 djm Exp $ */
|
||||
/* $OpenBSD: key.c,v 1.96 2011/02/04 00:44:21 djm Exp $ */
|
||||
/*
|
||||
* read_bignum():
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
@@ -1886,10 +1886,9 @@ key_certify(Key *k, Key *ca)
|
||||
buffer_put_cstring(&k->cert->certblob, key_ssh_name(k));
|
||||
|
||||
/* -v01 certs put nonce first */
|
||||
if (!key_cert_is_legacy(k)) {
|
||||
arc4random_buf(&nonce, sizeof(nonce));
|
||||
arc4random_buf(&nonce, sizeof(nonce));
|
||||
if (!key_cert_is_legacy(k))
|
||||
buffer_put_string(&k->cert->certblob, nonce, sizeof(nonce));
|
||||
}
|
||||
|
||||
switch (k->type) {
|
||||
case KEY_DSA_CERT_V00:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: port-linux.c,v 1.13 2011/01/27 23:30:20 djm Exp $ */
|
||||
/* $Id: port-linux.c,v 1.11.4.2 2011/02/04 00:43:08 djm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* $Id: port-linux.h,v 1.5 2011/01/25 01:16:18 djm Exp $ */
|
||||
/* $Id: port-linux.h,v 1.4.10.1 2011/02/04 00:42:21 djm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Damien Miller <djm@openbsd.org>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* $OpenBSD: version.h,v 1.60 2011/01/22 09:18:53 djm Exp $ */
|
||||
/* $OpenBSD: version.h,v 1.61 2011/02/04 00:44:43 djm Exp $ */
|
||||
|
||||
#define SSH_VERSION "OpenSSH_5.7"
|
||||
#define SSH_VERSION "OpenSSH_5.8"
|
||||
|
||||
#define SSH_PORTABLE "p1"
|
||||
#define SSH_RELEASE SSH_VERSION SSH_PORTABLE
|
||||
|
||||
Reference in New Issue
Block a user