Bypass Decrypted ROM Integrity Checks - Frida
4 views
4329c538...
Description
Manipulate ROM storage integrity check
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l bypass-decrypted-rom-integrity-checks---frida.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function() {
var Storage = Java.use("android.os.storage.StorageManager");
Storage.isEncrypted.overload()
.implementation = function() {
console.warn("isEncrypted:", this.isEncrypted());
return true;
}
})
Comments