Example Usage
# Check Android Architecture $ adb shell getprop | grep abi # Try to use this command to get simple output :) $ adb shell getprop ro.product.cpu.abi # List all application already installed $ adb shell pm list packages -f | grep -i 'testing' # List All Processes on Android $ adb shell ps $ adb shell ps -A # Stop Process on Android $ adb shell kill [PID] # Stop Package Process on Android $ adb shell am force-stop <packagename> # Tracing log on android $ adb logcat | grep com.app.testing # Install application to device $ adb install app.testing.apk # Get the full path of an application $ adb shell pm path com.example.someapp # Upload File to development machine $ adb push frida-server /data/local/tmp/ # Download the apk to development machine $ adb pull /data/app/com.example.someapp-2.apk # Dump activity on app $ adb shell dumpsys activity top | grep ACTIVITY # Create new file in adb shell $ cat > filename.xml You can add lines to a text files using: $ cat >> filename.xml Both commands can be terminated using ctrl-D. # Dump Memory $ adb shell dumpsys meminfo com.package.name # Show all device configs $ adb shell settings list global # Disable verification adb $ adb shel
See also
Zygisk-Il2CppDumper
Open Source
Using Zygisk to dump il2cpp data at runtime…
.NET-Deobfuscator
Open Source
Lists of .NET Deobfuscator and Unpacker (Open Source)…
Ghidra
Open Source
Kali
NSA-developed software reverse engineering suite. Features a disassembler, decompiler, scripting (Ja…
BitMono
Open Source
Obfuscator for .NET and Mono, with a customizable engine for building your own obfuscators.…
hyper-reV
Open Source
memory introspection and reverse engineering hypervisor powered by leveraging Hyper-V…
RetDec
Open Source
Retargetable machine-code decompiler based on LLVM. Developed by Avast. Decompiles x86, ARM, MIPS, P…