mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 07:27:59 -08:00
ensure that sensitive data is zeroed out from mem.
ok beck@
This commit is contained in:
parent
7ee4e9f9e5
commit
a39bec83d1
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: login_reject.c,v 1.17 2018/04/26 12:42:51 guenther Exp $ */
|
||||
/* $OpenBSD: login_reject.c,v 1.18 2021/10/23 19:08:48 mestre Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1995 Berkeley Software Design, Inc. All rights reserved.
|
||||
@ -119,6 +119,7 @@ main(int argc, char *argv[])
|
||||
readpassphrase("Password:", passbuf, sizeof(passbuf), 0);
|
||||
|
||||
crypt_checkpass("password", NULL);
|
||||
explicit_bzero(passbuf, sizeof(passbuf));
|
||||
|
||||
fprintf(back, BI_REJECT "\n");
|
||||
exit(1);
|
||||
|
Loading…
Reference in New Issue
Block a user