Alex Stapleton | 68bba2d | 2014-03-22 23:03:15 +0000 | [diff] [blame] | 1 | Known security limitations |
| 2 | -------------------------- |
| 3 | |
| 4 | Lack of secure memory wiping |
| 5 | ============================ |
| 6 | |
| 7 | `Memory wiping`_ is used to protect secret data or key material from attackers |
| 8 | with access to uninitialized memory. This can be either because the attacker |
Alex Stapleton | 1977a60 | 2014-03-22 23:50:52 +0000 | [diff] [blame] | 9 | has some kind of local user access or because of how other software uses |
Alex Stapleton | 68bba2d | 2014-03-22 23:03:15 +0000 | [diff] [blame] | 10 | uninitialized memory. |
| 11 | |
Alex Stapleton | a108ac6 | 2014-03-25 10:03:58 +0000 | [diff] [blame^] | 12 | Python exposes no API for us to implement this reliably and as such almost all |
| 13 | software in Python is potentially vulnerable to this attack. However the |
Alex Stapleton | cfe1c0b | 2014-03-24 11:21:08 +0000 | [diff] [blame] | 14 | `CERT secure coding guidelines`_ consider this issue as "low severity, |
Alex Stapleton | da4e0fa | 2014-03-24 10:03:26 +0000 | [diff] [blame] | 15 | unlikely, expensive to repair" and we do not consider this a high risk for most |
| 16 | users. |
Alex Stapleton | 68bba2d | 2014-03-22 23:03:15 +0000 | [diff] [blame] | 17 | |
| 18 | .. _`Memory wiping`: http://blogs.msdn.com/b/oldnewthing/archive/2013/05/29/10421912.aspx |
Alex Stapleton | da4e0fa | 2014-03-24 10:03:26 +0000 | [diff] [blame] | 19 | .. _`CERT secure coding guidelines`: https://www.securecoding.cert.org/confluence/display/seccode/MEM03-C.+Clear+sensitive+information+stored+in+reusable+resources |