Bypass Decrypted ROM Integrity Checks - Frida

by
4 views 4329c538...

Description

Manipulate ROM storage integrity check

How to Use

Download the script and run it with Frida CLI:

Download Script

Then 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;
        }
})
Share this script:
Twitter LinkedIn

Comments

Login or Sign up to leave a comment.
Loading comments...