本文主要是介绍Android系统证书或定制系统解放Https抓包,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.Android系统证书的生成和使用方法
openssl x509 -inform PEM -subject_hash -in BurpCA.pem | head -1
cat BurpCA.pem > 9a5ba580.0
openssl x509 -inform PEM -text -in BurpCA.pem -out /dev/null >> 9a5ba580.0
adb shell
mount -o rw,remount -t ext4 /system
adb push 9a5ba580.0 /system/etc/security/cacerts/
adb shell “chmod 644 /system/etc/security/cacerts/9a5ba580.0”adb push 269953fb.0 /data/local/tmp
adb shell
cd /data/local/tmp
mv 269953fb.0 /system/etc/security/cacerts
chmod 644 269953fb.0
chown root 269953fb.0
chgrp root 269953fb.0
2.定制Android系统,解放Https抓包
这篇关于Android系统证书或定制系统解放Https抓包的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!