[tor-bugs] #13912 [Tor]: Key Security: Zeroing Buffers Is Insufficient (AES-NI leaves keys in SSE registers)
Tor Bug Tracker & Wiki
blackhole at torproject.org
Tue Dec 9 06:07:56 UTC 2014
#13912: Key Security: Zeroing Buffers Is Insufficient (AES-NI leaves keys in SSE
registers)
------------------------+--------------------------------
Reporter: teor | Owner:
Type: defect | Status: new
Priority: normal | Milestone: Tor: 0.2.???
Component: Tor | Version: Tor: 0.2.6.1-alpha
Resolution: | Keywords: security
Actual Points: | Parent ID:
Points: |
------------------------+--------------------------------
Comment (by nickm):
Well, there's no *portable*, *standards-guaranteed* way to sanitize the
stack. But in practice you can probably call a function that does
something like.
{{{
void stomp_stack(void) __attribute__((noinline));
void stomp_stack(void)
{
unsigned char huge[256*1024];
memset_s(huge, sizeof(huge), 0, sizeof(huge));
}
}}}
But of course, you wouldn't want to do that too often.
WRT the original question of SSE registers, Yawning had some interesting
points on IRC today. I hope he can summarize.
--
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/13912#comment:4>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online
More information about the tor-bugs
mailing list