DroidBench
DroidBench copied to clipboard
A micro-benchmark suite to assess the stability of taint-analysis tools for Android
Hi Steven, Earlier I have successfully pushed many samples to DroidBench but today I am facing problem in push. I am getting error: Username for 'https://github.com': jyotigajrani Password for 'https://[email protected]':...
In ArrayToString1 `String[] array = new String[1];` `array[1] = imei;` I think the second line should be ` array[0] = imei; `
Caused by the following statements: ``` String[] array = new String[1]; array[1] = imei; ```
Hi, I tried to run apps in the category SelfModification but not able to run any of these apps. May you please check whether the same at your site. I...
the action attribute of the Intent in OurFlowActivity of ActivityCommunication8.apk does not match up with the codes.
ServiceLifecycle1 only contain services without any activity or receivers.
In Button5, add `if (((Button) view).getHint() != null)` in sendMessage.
System properties can be sources to trigger sensitive operations such as [emulator detection](https://github.com/secure-software-engineering/DroidBench/blob/develop/eclipse-project/EmulatorDetection/Build1/src/com/example/newedtester/MainActivity.java) (They are also defined in [Difuzer](https://github.com/Trustworthy-Software/Difuzer/blob/master/src/main/resources/build_fields.txt)). I implemented one case obtaining system properties in native code. Another...
Recently, I used FlowDroid to conduct a taint analysis on the Exceptions1.apk file under the directory of GeneralJava and found that FlowDroid detected a leak successfully. The leak oracle written...