mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 00:04:30 +02:00
- dtucker@cvs.openbsd.org 2014/07/25 21:22:03
[ssh-agent.c] Clear buffer used for handling messages. This prevents keys being left in memory after they have been expired or deleted in some cases (but note that ssh-agent is setgid so you would still need root to access them). Pointed out by Kevin Burns, ok deraadt
This commit is contained in:
parent
a8a0f65c57
commit
f497794b69
@ -3,6 +3,12 @@
|
|||||||
- millert@cvs.openbsd.org 2014/07/24 22:57:10
|
- millert@cvs.openbsd.org 2014/07/24 22:57:10
|
||||||
[ssh.1]
|
[ssh.1]
|
||||||
Mention UNIX-domain socket forwarding too. OK jmc@ deraadt@
|
Mention UNIX-domain socket forwarding too. OK jmc@ deraadt@
|
||||||
|
- dtucker@cvs.openbsd.org 2014/07/25 21:22:03
|
||||||
|
[ssh-agent.c]
|
||||||
|
Clear buffer used for handling messages. This prevents keys being
|
||||||
|
left in memory after they have been expired or deleted in some cases
|
||||||
|
(but note that ssh-agent is setgid so you would still need root to
|
||||||
|
access them). Pointed out by Kevin Burns, ok deraadt
|
||||||
|
|
||||||
20140725
|
20140725
|
||||||
- (djm) [regress/multiplex.sh] restore incorrectly deleted line;
|
- (djm) [regress/multiplex.sh] restore incorrectly deleted line;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: ssh-agent.c,v 1.189 2014/07/18 02:46:01 djm Exp $ */
|
/* $OpenBSD: ssh-agent.c,v 1.190 2014/07/25 21:22:03 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
@ -968,6 +968,7 @@ after_select(fd_set *readset, fd_set *writeset)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
buffer_append(&sockets[i].input, buf, len);
|
buffer_append(&sockets[i].input, buf, len);
|
||||||
|
explicit_bzero(buf, sizeof(buf));
|
||||||
process_message(&sockets[i]);
|
process_message(&sockets[i]);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user