Question

Is there a control flow graph generator for Android applications. (preferrably open source) I wish to do some flow analysis on applications. But I could not find any such static analyzer.

If there is no such software, can soot be extended to do the static analysis for Android app. Some pointers on how to do so (especially handling multiple entry points and asynchronous calls to onPause, onDestroy etc. while making Control Flow Graph) will be very helpful.

Thanks

Was it helpful?

Solution

you can use Androguard to generate CFG. Other way is to decompile the app to smali using apktool and write our own CFG generator.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top