0x00 描述
在做android app测试,使用安卓模拟器导入burp证书时,发现证书文件是灰色的
尝试了各种方法都失败了,知道看到一篇文章http://blog.csdn.net/unklhe/article/details/51159509终于弄好了。
从burp导出证书PortSwiggerCA.crt
0x01 在linux上使用openssl生成cert文件
1 | filename=`openssl x509 -in PortSwiggerCA.crt --hash -noout` |
0x02 将生成的文件push到设备中
生成系统证书
1 | adb shell mount -o remount,rw /system |
生成用户级证书
1 | adb shell mkdir /data/misc/keychain/cacerts-added |