--- title: "Install System CA on Android" menu: howto: weight: 4 --- # Install System CA Certificate on Android Emulator [Since Android 7, apps ignore user certificates](https://android-developers.googleblog.com/2016/07/changes-to-trusted-certificate.html), unless they are configured to use them. As most applications do not explicitly opt in to use user certificates, we need to place our mitmproxy CA certificate in the system certificate store, in order to avid having to patch each application, which we want to monitor. Please note, that apps can decide to ignore the system certificate store and maintain their own CA certificates. In this case you have to patch the application. ## 1. Prerequisites - Emulator from Android SDK with proxy settings pointing to mitmproxy - Mitmproxy CA certificate - Usually located in `~/.mitmproxy/mitmproxy-ca-cert.cer` - If the folder is empty or does not exist, run `mitmproxy` in order to generate the certificates ## 2. Rename certificate Enter your certificate folder {{< highlight bash >}} cd ~/.mitmproxy/ {{< / highlight >}} - CA Certificates in Android are stored by the name of their hash, with a '0' as extension - Now generate the hash of your certificate {{< highlight bash >}} openssl x509 -inform PEM -subject_hash_old -in mitmproxy-ca-cert.cer | head -1 {{< / highlight >}} Lets assume, the output is `c8450d0d` We can now copy `mitmproxy-ca-cert.cer` to `c8450d0d.0` and our system certificate is ready to use {{< highlight bash >}} cp mitmproxy-ca-cert.cer c8450d0d.0 {{< / highlight >}} ## 3. Insert certificate into system certificate store Note, that Android 9 (API LEVEL 28) was used to test the following steps and that the `emulator` executable is located in the Android SDK - Start your android emulator. - Get a list of your AVDs with `emulator -list-avds` - Make sure to use the `-writable-system` option. Otherwise it will not be possible to write to `/system` - Keep in mind, that the **emulator will load a clean system image when starting without `-writable-system` option**. - This means you always have to start the emulator with `-writable-system` option in order to use your certificate {{< highlight bash >}} emulator -avd -writable-system {{< / highlight >}} - Restart adb as root {{< highlight bash >}} adb root {{< / highlight >}} - Get write access to `/system` on the device - In earlier versions (API LEVEL < 28) of Android you have to use `adb shell "mount -o rw,remount /system"` {{< highlight bash >}} adb shell "mount -o rw,remount /" {{< / highlight >}} - Push your certificate to the system certificate store and set file permissions {{< highlight bash >}} adb push c8450d0d.0 /system/etc/security/cacerts adb shell "chmod 664 /system/etc/security/cacerts/c8450d0d.0" {{< / highlight >}} ## 4. Reboot device and enjoy decrypted TLS traffic - Reboot your device. - You CA certificate should now be system trusted {{< highlight bash >}} adb reboot {{< / highlight >}} **Remember**: You **always** have to start the emulator using the `-writable-system` option in order to use your certificatemary='blob content' class='blob'>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358