- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2002/10/01 20:34:12 [ssh-agent.c] allow root to access the agent, since there is no protection from root.
This commit is contained in:
parent
d8769625fb
commit
af9de38c43
|
@ -1,3 +1,9 @@
|
||||||
|
20021003
|
||||||
|
- (djm) OpenBSD CVS Sync
|
||||||
|
- markus@cvs.openbsd.org 2002/10/01 20:34:12
|
||||||
|
[ssh-agent.c]
|
||||||
|
allow root to access the agent, since there is no protection from root.
|
||||||
|
|
||||||
20020930
|
20020930
|
||||||
- (djm) Tidy contrib/, add Makefile for GNOME passphrase dialogs,
|
- (djm) Tidy contrib/, add Makefile for GNOME passphrase dialogs,
|
||||||
tweak README
|
tweak README
|
||||||
|
@ -746,4 +752,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2488 2002/09/30 02:00:55 djm Exp $
|
$Id: ChangeLog,v 1.2489 2002/10/03 01:54:35 djm Exp $
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include "openbsd-compat/sys-queue.h"
|
#include "openbsd-compat/sys-queue.h"
|
||||||
RCSID("$OpenBSD: ssh-agent.c,v 1.104 2002/09/12 19:11:52 stevesk Exp $");
|
RCSID("$OpenBSD: ssh-agent.c,v 1.105 2002/10/01 20:34:12 markus Exp $");
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
|
@ -833,7 +833,7 @@ after_select(fd_set *readset, fd_set *writeset)
|
||||||
close(sock);
|
close(sock);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (getuid() != euid) {
|
if ((euid != 0) && (getuid() != euid)) {
|
||||||
error("uid mismatch: "
|
error("uid mismatch: "
|
||||||
"peer euid %u != uid %u",
|
"peer euid %u != uid %u",
|
||||||
(u_int) euid, (u_int) getuid());
|
(u_int) euid, (u_int) getuid());
|
||||||
|
|
Loading…
Reference in New Issue