reveny-emulator-bypassjs
4 views
04777183...
Description
Reveny Android Emulator Detection Bypass
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l reveny-emulator-bypassjs.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
/*
I developed a custom Frida script to bypass emulator detection in the
Reveny Android Emulator Detection project emulator-detection-demo-v1.5.0.apk (https://github.com/reveny/Android-Emulator-Detection).
By reverse-engineering the native library, identifying its detection flow,
and intercepting critical return values, I crafted a targeted Frida hook
that successfully bypasses all checks.
*/
Java.perform(function () {
var emuDetectorClass = Java.use("com.reveny.emulatordetector.plugin.EmulatorDetection");
emuDetectorClass.isDetected.implementation = function () {
console.log("Bypassed isDetected()");
return false;
};
});
Comments