Skip to content

Instantly share code, notes, and snippets.

View rhonyabdullah's full-sized avatar
🏠
Working from home | Open to new opportunities

Rhony rhonyabdullah

🏠
Working from home | Open to new opportunities
  • Jakarta/Indonesia
  • 10:29 - 7h ahead
  • LinkedIn in/rhony
View GitHub Profile
@rhonyabdullah
rhonyabdullah / root_bypass.js
Created January 6, 2025 10:15 — forked from pich4ya/root_bypass.js
Bypass Android Root Detection / Bypass RootBeer - August 2019
// $ frida -l antiroot.js -U -f com.example.app --no-pause
// CHANGELOG by Pichaya Morimoto ([email protected]):
// - I added extra whitelisted items to deal with the latest versions
// of RootBeer/Cordova iRoot as of August 6, 2019
// - The original one just fucked up (kill itself) if Magisk is installed lol
// Credit & Originally written by: https://codeshare.frida.re/@dzonerzy/fridantiroot/
// If this isn't working in the future, check console logs, rootbeer src, or libtool-checker.so
Java.perform(function() {
var RootPackages = ["com.noshufou.android.su", "com.noshufou.android.su.elite", "eu.chainfire.supersu",
@rhonyabdullah
rhonyabdullah / android-generate-keystores.md
Created April 21, 2022 09:48 — forked from henriquemenezes/android-generate-keystores.md
Android: Generate Release/Debug Keystores

Android: Generate Release/Debug Keystores

Generate Keystores

Debug Keystore

$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"