SSH gets protection against side-channel attacks
undeadly.org
SSH gets protection against side-channel attacks
1–10 of 166 posts
Re: SSH gets protection against side-channel attacks
#2I think the author misspelled 'decades' here :)
Re: SSH gets protection against side-channel attacks
#3Trying to understand the coverage.
Re: SSH gets protection against side-channel attacks
#4Re: SSH gets protection against side-channel attacks
#5Re: SSH gets protection against side-channel attacks
#6Anyone with the actual link to the specific commit?
Re: SSH gets protection against side-channel attacks
#7Unfortunate that there's no commentary on performance impact. It's symmetric encryption on a few kB, so probably fast, but I'd like to have numbers.
Re: SSH gets protection against side-channel attacks
#8> Hopefully we can remove this in a few years time when computer architecture has become less unsafe. I think the author misspelled 'decades' here :)
Re: SSH gets protection against side-channel attacks
#9Unfortunate that there's no commentary on performance impact. It's symmetric encryption on a few kB, so probably fast, but I'd like to have numbers.
Re: SSH gets protection against side-channel attacks
#10In my opinion server-applications of all sorts should encrypt their private keys by default; this makes cold-boot attacks and other memory-escape attacks so much harder, since now two totally unrelated memory chunks have to be combined in order to retrieve the private key (in fact one could argue that, the higher the quantity of memory chunks is, the harder it is to correctly decrypt the original private key; although to me this has the security through obscurity smell).
In practice however, this is rarely done. OpenSSL for example has a whole lot of memory-management functions [1], but none of them seem to include RAM encryption (AFAIK it is not present in the source code elsewhere either, but it's a large one, so I am not familiar with all code. Related: in fact some people even argue it's way too large for it's own good [2]).
Even better still, would be to use the CPU Cache for private keys, since this memory is even more difficult to access through any sort of cold boot. An interesting paper with much more information about this subject can be found here [3], to whom it may concern.
[0] https://github.com/veracrypt/VeraCrypt/commit/321715202aed04...
[1] https://www.openssl.org/docs/man1.1.0/man3/OPENSSL_zalloc.ht...
[2] https://queue.acm.org/detail.cfm?id=2602816
[3] https://www.ieee-security.org/TC/SP2015/papers-archived/6949...