How to get ELF executables in Android 5.0 ART

We are working on ELF . We cannot find the path to the executable ELF

in Android 5.0 ART architecture. Currently, I found the files .so

and .oat

through Xplore, but it is not executable ELF executable files.

More details: After Android 4.4.4 Dalvik VM was replaced by ART. In Android 5.0, the Dex code for DVM was converted to odex

to get executed. In ART, it's converted to ELF

executable code.

I am working on malware detection software that works with mining files ELF

for cluster anomaly models. Since ART is working on compiling AOT, so an executable binary (ELF) must exist against each application in internal storage.

My question: I want to know the path to the ELF

application file or some method to get the file ELF

from .apk

or .dex

.

+3


source to share





All Articles