MODDING TOOLS
754 subscribers
1 photo
306 files
31 links
• Here you can find
• Modded apps
• Modding tools
• Useful tools for developers
• Simple tools for android
• Tutorials on modding tools @moddingtutorialnew
Download Telegram
📲Usb Debugging & Developer Mode Detection Bypass Using Regex

Now Follow Video Tutorial : click here 👍

Required codes : 👇

1.) Developer Option Detection Bypass:

• Search:- (const-string (.*), "development_settings_enabled"\s*invoke-static \{(.*), (.*), (.*)\}, .*;->getInt\(.*Ljava\/lang\/String;I\)I\s*)(move-result (.*))

• Replace:- $1#$2\nconst/4 $3, 0x0


2.) Developer Mode Detection Bypass:

• Search:- (const-string (.*), "development_settings_enabled"\s*const/4 (.*), 0x0\s*invoke-static \{(.*), (.*), (.*)\}, .*;->getInt\(.*Ljava\/lang\/String;I\)I\s*)(move-result (.*))

• Replace:- $1#$2\nconst/4 $3, 0x0

3.) Usb Debugging Detection Bypass:

• Search:- (const-string (.*), "adb_enabled"\s*invoke-static \{(.*), (.*), (.*)\}, .*;->getInt\(.*Ljava\/lang\/String;I\)I\s*)(move-result (.*))

•Replace:- $1#$2\nconst/4 $3, 0x0


4.) Usb Debugging Option Detection Bypass:

•Search:- (const-string (.*), "adb_enabled"\s*const/4 (.*), 0x0\s*invoke-static \{(.*), (.*), (.*)\}, .*;->getInt\(.*Ljava\/lang\/String;I\)I\s*)(move-result (.*))

•Replace:- $1#$2\nconst/4 $3, 0x0


Notes⚠️:
1. Open the classes.dex file(s) in Dex Editor Plus

2. Click on 3 dot menu and then Preferences

3. Choose Remove all debug info and press OK button

4. After debug info is removed then apply this Regex in classes.dex
Credits:
Official Release
Created By @mr_shakir_04👑

⚠️Share with Proper credit otherwise you f**k
👍51
Now Follow Video Tutorial : click here 👍

Required codes : 👇

1.) (Only Some VPN Bypass), Root, binary, debugging, emulator, etc. etc. detection bypass:


•Search:-  (\.method.*(isemulator|VerifyVPN|checkvpn|searchPathForBinary|isSuBinaryPresent|findSuBinary|debuggable|findSuperuserApk|isAppDebug|isAppRoot|isDeviceRooted|isrooted|getRootApp|IsADBDebuggingEnabled|IsRoSecureRoKernelQemu|CheckForDangerousAPK|CheckForSuperUserAPK|isVPNConnected|findBinary|hasSU|hasSuperAppByPackageNameInstalled|hasSuperuserAPK|isEmulatorDevice|checkRootFiles|checkForRoot|checkRootPackages|isPackageInstalled|checkForDangerousProps|checkForBusyBoxBinary|checkForBinary|checkForRootNative|checkForMagiskBinary|detectPotentiallyDangerousApps|checkSuExists|checkForSuBinary|detectRootCloakingApps|detectRootManagementApps|isAnyPackageFromListInstalled|isRootedWithoutBusyBoxCheck|detectTestKeys|isTestBuild|hasChainfiresupersu|checkIsRooted|checkSuExists$.*|nativeCheckRoot|hasDeviceRooted|checkSUExist|checkVpnEnabled|isEmulatorDevice|isVpnConnectionAvailable|isUsingVPN|isUSBDebuggingEnabled|isDeveloperModeEnabled|isDeveloperOptionEnabled|isRooted.*|isVirtualDevice|detectRoot.*|isNeedToCheckSuAndBusyBox|isDeviceRooted$.*|_IsEmulator|checkRootMethod.*)\(.*\)[IZ]\n .registers \d+)[\s\S]*?\.end method

•Replace:-  $1\nconst/4 v0, 0x0\nreturn v0\n.end method

Credits:
Official Release
Created By @mr_shakir_04👑
⚠️Share with Proper credit otherwise you f**k
3👍1