conscrypt-ca
4 views
cd786fe0...
Description
change upsidedown cake cert root
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l conscrypt-ca.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(() => {
const Log = Java.use('android.util.Log')
const Exception = Java.use('java.lang.Exception')
Java.use(
'com.android.org.conscrypt.ConscryptEngineSocket$2'
).checkServerTrusted.overloads.forEach((overload) => {
overload.implementation = function (...args) {
console.log(...args)
}
})
})
console.log(`ready to go`)
Comments