Posts

Showing posts from December, 2023

List of Virtual Spaces for Android

Image
Virtual Space App creates an isolated virtual environment within a single device and provides an environment where the same app can run dually inside. With this Virtual Space, you can easily create dual apps because one app can be run through multiple instances, but there are also security problems inside Virtual Space. Suppose you install certain apps on the Virtual Space to use dual apps. In that case, the security sandbox is unlocked, all apps in the Virtual Space, allows accessing to each app’s usage area and memory, which exposes to hacking threats and malicious malwares. As long as you don’t install malicious apps inside Virtual Space, it should be safe Since there is no sandbox in Virtual Space, you may be able to hack apps and games inside Virtual Space. This is the reason tons of modders provided custom Virtual Space App or injectors for Virtual Spaces to hack games without root. Virtual Space is not the same as Virtual Machine. Virtual Machine runs its own operating system ...

How to root AVD (Android Virtual Device) with Magisk

Image
It is possible to root AVD (Android Virtual Device) with Magisk using rootAVD script. It works on Windows/Mac/Linux Requirements: Android Studio. See tutorial how to install it: Install Android Studio | Android Developers Have at least one AVD created and running with boot option set to “Cold boot”: Create and manage virtual devices | Android Studio | Android Developers A working Internet connection for the Menu Be able to use terminal/cmd rootAVD script (Direct link): https://gitlab.com/newbit/rootAVD/-/archive/master/rootAVD-master.zip Have ANDROID_HOME enviornment path set of your SDK path. Check the documentation for your operation system to learn how. Reference: Environment variables | Android Studio | Android Developers Note: You can’t use ARM images on x86 computer or vice versa. ARM only zygisk modules will not work on x86 AVD. Because Zygisk injects zygote, ARM translation can’t be supported, it is by design. Currently only x86 supported modules will work on x86...

How to fix Magisk modules deleting itself from Windows Subsystem for Android (WSA)

Image
This is a known bug: https://github.com/MustardChef/WSABuilds/issues/154 ) So this is how to temporary fix it: Be careful when using file manager on the data partition. Any user mistakes can brick WSA entirely, so please make a backup before proceeding Use any file manager of your choice. I’m using X-plore Make sure that root access with read/write is enabled in file manager settings if available (In X-plore: Root access must be “Superuser + Mount writeable”) First pane: Go to /data/adb/modules/(your installed module) Second pane: Go to /data/adb/modules_update/(your installed module) Copy all files and overwrite from /data/adb/modules_update/(your installed module) to /data/adb/modules/(your installed module) DELETE the file called “update” from /data/adb/modules/(your installed module) Repeat the same steps on other modules When you are done, DELETE the modules_update folder Reboot WSA via Magisk app. The modules should be working now Watch the video: https://s...

Magisk & root detection apps

Collection of Some Publically Available POC Apps to Detect Root/Magisk presence. These applications have following detections: Detect Magisk (com.darvin.security) https://github.com/apkunpacker/MagiskDetection/raw/main/DetectMagisk.apk “Magisk Detection” “Magisk Hide Detection” Hunter (com.zhenxi.hunter) v3.0: https://github.com/apkunpacker/MagiskDetection/raw/main/Hunter 3.0.apk v4.4.1: MagiskDetection/Hunter_4.4.1.apk at main · apkunpacker/MagiskDetection “Apk Signature Verification” “Magisk & Root Detection” “Sandbox & Sandbox Detection” “Frida & IDA Detection” “libc Memory Detection” “Unidbg Detection” “Key function inlinehook & got table Detection” “Anti-Debugging Detection” “ISO strong Detection” “Magisk Hide Detection” “Custom ROM Detection” Magisk Detector (io.github.vvb2060.magiskdetector) https://github.com/apkunpacker/MagiskDetection/blob/main/MagiskDetector_v3.0.apk “Magisk Detection” “Magisk Hide Detection” MinotaurPoc (icu.nullptr....