blob: c6345d65c8fc24ad98fad2791ccfd431029d7bf0 [file] [log] [blame] [view]
Tom Cosgrove0b86ac12022-07-29 13:44:01 +01001## Reporting Vulnerabilities
Manuel Pégourié-Gonnarda21abf22021-02-25 11:41:38 +01002
3If you think you have found an Mbed TLS security vulnerability, then please
4send an email to the security team at
5<mbed-tls-security@lists.trustedfirmware.org>.
6
7## Security Incident Handling Process
8
Shaun Case8b0ecbc2021-12-20 21:14:10 -08009Our security process is detailed in our
Gilles Peskinea23df132021-03-16 12:04:44 +010010[security
Manuel Pégourié-Gonnarda21abf22021-02-25 11:41:38 +010011center](https://developer.trustedfirmware.org/w/mbed-tls/security-center/).
12
13Its primary goal is to ensure fixes are ready to be deployed when the issue
14goes public.
15
16## Maintained branches
17
Gilles Peskinea23df132021-03-16 12:04:44 +010018Only the maintained branches, as listed in [`BRANCHES.md`](BRANCHES.md),
19get security fixes.
Manuel Pégourié-Gonnarda21abf22021-02-25 11:41:38 +010020Users are urged to always use the latest version of a maintained branch.
Janos Follath18d41732023-02-24 16:00:21 +000021
22## Threat model
23
24We use the following classification of attacks:
25
Janos Follath18d41732023-02-24 16:00:21 +000026### Remote attacks
27
Janos Follath9ec195c2023-03-06 14:54:59 +000028The attacker can observe and modify data sent over the network. This includes
29observing the content and timing of individual packets, as well as suppressing
30or delaying legitimate messages, and injecting messages.
31
Janos Follath144dd7d2023-03-03 14:56:38 +000032Mbed TLS aims to fully protect against remote attacks and to enable the user
33application in providing full protection against remote attacks. Said
34protection is limited to providing security guarantees offered by the protocol
35in question. (For example Mbed TLS alone won't guarantee that the messages will
36arrive without delay, as the TLS protocol doesn't guarantee that either.)
Janos Follath18d41732023-02-24 16:00:21 +000037
Janos Follathfef82fd2023-03-08 16:10:39 +000038### Local attacks
39
40The attacker is capable of running code on the same hardware as Mbed TLS, but
41there is still a security boundary between them (ie. the attacker can't for
42example read secrets from Mbed TLS' memory directly).
43
44#### Timing attacks
Janos Follath18d41732023-02-24 16:00:21 +000045
Janos Follath9ec195c2023-03-06 14:54:59 +000046The attacker can gain information about the time taken by certain sets of
Janos Follathfef82fd2023-03-08 16:10:39 +000047instructions in Mbed TLS operations. (See for example the [Flush+Reload
48paper](https://eprint.iacr.org/2013/448.pdf).)
49
50(Technically, timing information can be observed over the network or through
51physical side channels as well. Network timing attacks are less powerful than
52local and countermeasures protecting against local attacks prevent network
53attacks as well. If the timing information is gained through physical side
54channels, we consider them physical attacks and as such they are out of scope.)
Janos Follath9ec195c2023-03-06 14:54:59 +000055
Janos Follath144dd7d2023-03-03 14:56:38 +000056Mbed TLS provides limited protection against timing attacks. The cost of
57protecting against timing attacks widely varies depending on the granularity of
58the measurements and the noise present. Therefore the protection in Mbed TLS is
Janos Follathfef82fd2023-03-08 16:10:39 +000059limited. We are only aiming to provide protection against **publicly
60documented** attacks, and this protection is not currently complete.
Janos Follath18d41732023-02-24 16:00:21 +000061
Janos Follath24792d02023-03-03 14:16:12 +000062**Warning!** Block ciphers do not yet achieve full protection. For
Janos Follath18d41732023-02-24 16:00:21 +000063details and workarounds see the section below.
64
Janos Follath24792d02023-03-03 14:16:12 +000065Currently there are four block ciphers in Mbed TLS: AES, CAMELLIA, ARIA and DES.
Janos Follath144dd7d2023-03-03 14:56:38 +000066The pure software implementation in Mbed TLS implementation uses lookup tables,
67which are vulnerable to timing attacks.
Janos Follath18d41732023-02-24 16:00:21 +000068
69**Workarounds:**
70
71- Turn on hardware acceleration for AES. This is supported only on selected
72 architectures and currently only available for AES. See configuration options
73 `MBEDTLS_AESCE_C`, `MBEDTLS_AESNI_C` and `MBEDTLS_PADLOCK_C` for details.
Janos Follath144dd7d2023-03-03 14:56:38 +000074- Add a secure alternative implementation (typically hardware acceleration) for
75 the vulnerable cipher. See the [Alternative Implementations
76Guide](docs/architecture/alternative-implementations.md) for more information.
77- Use cryptographic mechanisms that are not based on block ciphers. In
78 particular, for authenticated encryption, use ChaCha20/Poly1305 instead of
79 block cipher modes. For random generation, use HMAC\_DRBG instead of CTR\_DRBG.
Janos Follath18d41732023-02-24 16:00:21 +000080
Janos Follathfef82fd2023-03-08 16:10:39 +000081#### Local non-timing side channels
82
83The attacker code running on the platform has access to some sensor capable of
84picking up information on the physical state of the hardware while Mbed TLS is
85running. This can for example be any analogue to digital converter on the
86platform that is located unfortunately enough to pick up the CPU noise. (See
87for example the [Leaky Noise
88paper](https://tches.iacr.org/index.php/TCHES/article/view/8297).)
89
90Mbed TLS doesn't offer any security guarantees against local non-timing based
91side channel attacks. If local non-timing attacks are present in a use case or
92a user application's threat model, it needs to be mitigated by the platform.
93
94#### Local fault injection attacks
95
96Software running on the same hardware can affect the physical state of the
97device and introduce faults. (See for example the [Row Hammer
98paper](https://users.ece.cmu.edu/~yoonguk/papers/kim-isca14.pdf).)
99
100Mbed TLS doesn't offer any security guarantees against local fault injection
101attacks. If local fault injection attacks are present in a use case or a user
102application's threat model, it needs to be mitigated by the platform.
103
Janos Follath18d41732023-02-24 16:00:21 +0000104### Physical attacks
105
Janos Follath9ec195c2023-03-06 14:54:59 +0000106The attacker has access to physical information about the hardware Mbed TLS is
Janos Follathfef82fd2023-03-08 16:10:39 +0000107running on and/or can alter the physical state of the hardware (eg. power
108analysis, radio emissions or fault injection).
Janos Follath9ec195c2023-03-06 14:54:59 +0000109
Janos Follathfef82fd2023-03-08 16:10:39 +0000110Mbed TLS doesn't offer any security guarantees against physical attacks. If
Janos Follath144dd7d2023-03-03 14:56:38 +0000111physical attacks are present in a use case or a user application's threat
112model, it needs to be mitigated by physical countermeasures.