mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix non-triggerable heap corruption at do_getpass().
This commit is contained in:
parent
684500519d
commit
e59f0d4cb9
4
changes/bug19223
Normal file
4
changes/bug19223
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (getpass):
|
||||
- Defensively fix a non-triggerable heap corruption at do_getpass() tow
|
||||
protect ourselves from mistakes in the future. Fixes bug #19223; bugfix
|
||||
on 0.2.7.3-rc. Bug found by Guido Vranken, patch by nherring.
|
@ -48,8 +48,8 @@ do_getpass(const char *prompt, char *buf, size_t buflen,
|
||||
size_t p2len = strlen(prompt) + 1;
|
||||
if (p2len < sizeof(msg))
|
||||
p2len = sizeof(msg);
|
||||
prompt2 = tor_malloc(strlen(prompt)+1);
|
||||
memset(prompt2, ' ', p2len);
|
||||
prompt2 = tor_malloc(p2len);
|
||||
memset(prompt2, ' ', p2len - sizeof(msg));
|
||||
memcpy(prompt2 + p2len - sizeof(msg), msg, sizeof(msg));
|
||||
|
||||
buf2 = tor_malloc_zero(buflen);
|
||||
|
Loading…
Reference in New Issue
Block a user