IntelliDroid
IntelliDroid copied to clipboard
A targeted input generator for Android that improves the effectiveness of dynamic malware analysis.
[ButterKnife](https://github.com/JakeWharton/butterknife), a popular UI library used by [4.38% of all apps](https://www.appbrain.com/stats/libraries/details/butterknife/butter-knife) tracked by AppBrain, specifies UI listeners via method annotations. In particular, the [Kickstarter app](https://github.com/kickstarter/android-oss) (popular open-source test case) uses...
Some newer APKs require newer versions of APKTool: for example, K9 5.502 doesn't seem to extract properly with APKTool 2.0.0 rc. Update APKTool to the latest version to fix this...
Hi, I am experimenting with Intellidroid and I have succefully setup the Intellidroid AppAnalysis and Dynamic Client. While running the Dynamic client. I am trying to install the apk file...
Hi, When I used the tool,I have completed the app analysis ,got the 'appInfo.json' and 'constraintX_X.py' files and patched the Android OS. Then, I want to dynamically execute the app...
Should this be returning "sms" or "receiver"? ```java private String getCallbackType(MethodReference callbackMethod){ .... if (declaredClassName.equals("Landroid/content/BroadcastReceiver")) { return "sms"; } } ``` thanks, Joey