dexmod Logo

dexmod

0 (0)
Visit Website

dexmod is a tool written in python to exemplify patching Dalvik bytecode in a DEX (Dalvik Executable) file, and assist in the static analysis of Android applications. It allows researchers to: Find methods in the application based on bytecode patterns Add new strings to the application Patch methods with custom bytecode Download and Usage: Download the dexmod code, and modify the editBytecode.py skeleton code to include custom bytecode patching logic based on analyzed samples. Run the following command, where DEX_FILE_NAME is the name of the DEX file to be patched: python dexmod.py [DEX_FILE_NAME] The tool will generate a patched DEX file with the name

ALTERNATIVES