FlowDroid icon indicating copy to clipboard operation
FlowDroid copied to clipboard

FlowDroid Static Data Flow Tracker

Results 195 FlowDroid issues
Sort by recently updated
recently updated
newest added

Hello! I am troubled by the callbacks when generating the callgraph. The situation is like this, I find the callgraph is imcompleted due to missing some callbacks such as network...

Hi, I'm trying to run FlowDroid on **WhatsApp** apk. Although I kept the analysis running for 72 hrs (with **28 GB** memory), it seems like it's stuck being unable to...

Hi, Can the annotation be used as a source or sink to be tracked in data flow analysis, for example Spring @RequestParam , the method public String queryUserName(@RequestParam String userName)...

Hello, I was using FlowDroid to analyze an APK, and it crashed during the constant value propagation phase. As far as I understood it, the ICFG has an edge between...

I wrote a test case: ```java public class AAMy extends HttpServlet { private class User { public int id; public String telNumber; public String address; public User() { } @Override...

The test codes are as follows, by modifying the code in : https://github.com/secure-software-engineering/FlowDroid/blob/547e5fdb6cb5a51817155728c2ee36e38eb6181e/soot-infoflow/test/soot/jimple/infoflow/test/TypeTestCode.java#L194-L202 I only modified the Line 202: ```java public void arrayObjectCastTest2() { Object obj = Bundle.get("foo"); A foo2[]...

hello,i want to use flowDroid to create a call graph of an android apk. but some function isn't defined(i use the newest jar file download in github web),here is my...

I downloaded the release for the command line, and this is the command I executed: (everything is inside the folder I'm running it from): java -jar soot-infoflow-cmd-jar-with-dependencies.jar \ -a apk1.apk...

Hi, I created a test application which includes following classes : MainActivity : ``` public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); IMEIManager.initIMEI(this); }...

I want to use Flowdroid to design a program to achieve the following functions: input an apk file of an app, specify function F1 and F2, Function F1 calls function...