Forked from gpsarkar/fiddler-capture-https-android-emulator
Created
November 8, 2018 06:35
-
-
Save gsarkarsavo/bf90671bea5d582e35e4c8eddc164755 to your computer and use it in GitHub Desktop.
fiddler capture https with android emulator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
emulator -avd AndroidEmulator -partition-size 1024 -writable-system | |
Install toot certificate from `http://ipv4.fiddler:8888` | |
The certificate will now be located in /data/misc/user/0/cacerts-added/. | |
Remount /system R/W as root if you haven't already (mount -o remount,rw /system). | |
adb shell | |
su | |
mount -o remount,rw /system | |
Move the .0 file to /system/etc/security/cacerts/ and chmod the file to 644. | |
cd /data/misc/user/0/cacerts-added/ | |
mv 269953fb.0 /system/etc/security/cacerts/269953fb.0 | |
chmod 644 /system/etc/security/cacerts/269953fb.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment