Posts

Showing posts from May, 2024

Bypass protection in obfuscated DLL file

Image
Some Unity games (Mono backend) are using weird protection in Assembly-Csharp.dll file. If you mod the dll, the game won’t load, causing game issues or crashes After the developer moved to il2cpp, I can disclose how I bypassed protection Assuming you are using dnSpy. Before saving DLL, preserve all MD Tokens then save Preserving MD tokens and saving may cause error with some changes you made. If it happens, undo your changes and edit in IL as possible instead C#, until there is no errors during saving. Using de4dot deobfuscation tool automatically preserve all MD Tokens

How to install unsigned APK using Core Patch module (Root & Xposed required)

Image
Core Patch is a module for Xposed Framework to disable signature verification, directly modify the APK, and downgrade the App. What is difference between Core Patch and Lucky Patcher: Lucky Patcher does not need Xposed, it’s patching the system files directly. It does have Xposed way though but same way as normal. However, the bypass techniques is very outdated. It does not support signature scheme v2, v3 and v4 well, the success rate to install unsigned APK is likely 30%. I had asked chelpus to fix signature bypass multiple times but he never responded! Core Patch fully bypassed signature checks, it works a lot better, supports signature scheme v2, v3 and v4. WARNING: ENVIORNMENT MAY BRICK AFTER INSTALLING XPOSED. BACKUP YOUR DATA FIRST BEFORE PROCEED If you are using VM app, reinstall the rom, you will lose your data If you are using emulator, just reinstall emulator without uninstalling. NO data would be loss unless you unchecked preserve data option If you are using M

How to block ads from Android apps and games (No root & root)

Tired of random ads and popups that ruin your experience and interrupt while playing games, waitching video and surfing on the web? and while using mods with malcious ads from other site? This simple trick block across your entire device, in your browser, in the apps and the games. Some of these tools require root access, but you won’t need it at all in most cases. Blocking ads is highly recommended if you use mods from other site with malcious ads injected! DNS method and Adblocker apps should be able to bypass anti-adblock and crashes automatically. If you use AdAway with root permission, make sure to enable webserver in AdAway settings to improve bypassing anti-adblock Not all apps can be adblocked. To block from popular apps like Youtube, Instagram, X (Formerly Twitter), etc. either use Firefox browser with uBlock origin extension installed or use modded app Changing the DNS (Android 9 Pie and above) One of the easiest ways to block ads on Android smartphones is by changing to

Why is Zygisk ImGUI mod menu not compatible on x86 emulators? (Known as "Zygisk module not loaded due to incompatibility")

Image
You may encounter an error “Zygisk module not loaded due to incompatibility” after trying to install ImGUI Zygisk modules on Android emulator: The reason is: Unsupported/mismatched architecture. Memu, LD, Nox, Bluestacks, MuMu, etc are all x86 based emulator, they don’t support ARM only ImGUI Zygisk modules. The primary architecture of the emulator MUST be an ARM in order to support ARM based ImGUI Zygisk modules. Unfortunately, it is by the design of the Magisk, it doesn’t work with ARM translation. Zygisk modules generally works fine with x86 emulators (e.g LSPosed), but only works if the app/game supports x86 natively. And no, x86 or x64/x86_64 are NOT ARM32 or ARM64/aarch64, they aren’t the same So, unless no one shares the workaround or make a implementation to Magisk, ARM computer/cloud emulator is the only solution. If you don’t like this solution, then report an issue here https://github.com/topjohnwu/Magisk/issues , or here https://github.com/HuskyDG/magisk-files/issues