mirror of git://anongit.mindrot.org/openssh.git
- deraadt@cvs.openbsd.org 2014/07/11 08:09:54
[sandbox-systrace.c] Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking, update your kernels and sshd soon.. libc will start using sendsyslog() in about 4 days.
This commit is contained in:
parent
f6293a0b41
commit
9d69d937b4
|
@ -1,6 +1,12 @@
|
|||
20140717
|
||||
- (djm) [digest-openssl.c] Preserve array order when disabling digests.
|
||||
Reported by Petr Lautrbach.
|
||||
- OpenBSD CVS Sync
|
||||
- deraadt@cvs.openbsd.org 2014/07/11 08:09:54
|
||||
[sandbox-systrace.c]
|
||||
Permit use of SYS_sendsyslog from inside the sandbox. Clock is ticking,
|
||||
update your kernels and sshd soon.. libc will start using sendsyslog()
|
||||
in about 4 days.
|
||||
|
||||
20140715
|
||||
- (djm) [configure.ac] Delay checks for arc4random* until after libcrypto
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: sandbox-systrace.c,v 1.11 2014/06/18 02:59:13 matthew Exp $ */
|
||||
/* $OpenBSD: sandbox-systrace.c,v 1.12 2014/07/11 08:09:54 deraadt Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2011 Damien Miller <djm@mindrot.org>
|
||||
*
|
||||
|
@ -60,6 +60,7 @@ static const struct sandbox_policy preauth_policy[] = {
|
|||
{ SYS___sysctl, SYSTR_POLICY_PERMIT },
|
||||
#endif
|
||||
|
||||
{ SYS_sendsyslog, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_close, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_exit, SYSTR_POLICY_PERMIT },
|
||||
{ SYS_getpid, SYSTR_POLICY_PERMIT },
|
||||
|
|
Loading…
Reference in New Issue