blob: 5b63ef5468e955c5a35b67ae34571a1ca82d38d7 [file] [log] [blame]
Alex Stapleton68bba2d2014-03-22 23:03:15 +00001Known security limitations
2--------------------------
3
4Lack of secure memory wiping
5============================
6
7`Memory wiping`_ is used to protect secret data or key material from attackers
8with access to uninitialized memory. This can be either because the attacker
Alex Stapleton1977a602014-03-22 23:50:52 +00009has some kind of local user access or because of how other software uses
Alex Stapleton68bba2d2014-03-22 23:03:15 +000010uninitialized memory.
11
Alex Stapletona108ac62014-03-25 10:03:58 +000012Python exposes no API for us to implement this reliably and as such almost all
13software in Python is potentially vulnerable to this attack. However the
Alex Stapletoncfe1c0b2014-03-24 11:21:08 +000014`CERT secure coding guidelines`_ consider this issue as "low severity,
Alex Stapletonda4e0fa2014-03-24 10:03:26 +000015unlikely, expensive to repair" and we do not consider this a high risk for most
16users.
Alex Stapleton68bba2d2014-03-22 23:03:15 +000017
18.. _`Memory wiping`: http://blogs.msdn.com/b/oldnewthing/archive/2013/05/29/10421912.aspx
Alex Stapletonda4e0fa2014-03-24 10:03:26 +000019.. _`CERT secure coding guidelines`: https://www.securecoding.cert.org/confluence/display/seccode/MEM03-C.+Clear+sensitive+information+stored+in+reusable+resources