draftyfrog

Results 14 issues of draftyfrog

Is there any documentation/tutorial on how to use FlowDroid to perform data flow analysis on Java programs that aren't Android Apps? What would be the arguments for running the command-line...

Hi, I've found nondeterministic behavior in the FlowDroid command line tool. I'm running the command line tool with the following settings: ``` java -jar ./soot-infoflow-cmd-jar-with-dependencies.jar -a {path-to-apk} -s {path-to-SourcesAndSinks.xml} -o...

I ran into an issue where FlowDroid misses a leak if some statements that don't affect the propagation are added. Please consider the following example-code where FlowDroid misses the sink...

Please consider the following code: ```java public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); String taint_1 = function1(source()); String taint_2 = function1(taint_1); sink(taint_2); } public String source(){ // Defined as source return...

I've found a bug in the FlowDroid command line tool. Consider the following code: ```java public class MainActivity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); String s...

# Bug **Bug description** This one is very similar to [#174](https://github.com/facebook/mariana-trench/issues/174) but without static initializer. Please consider the following code ```java public class MainActivity extends AppCompatActivity{ public void onCreate(Bundle savedInstanceState){...

false-negative

# Bug **Bug description** This might be the _False Negative_ counterpart to the _False Positive_ reported in [#173](https://github.com/facebook/mariana-trench/issues/173). Please consider the following code ```java public class MainActivity extends AppCompatActivity{ public...

bug
false-negative

# Pysa Bug **Pre-submission checklist** [x] I've checked the list of [common issues](https://pyre-check.org/docs/pysa-quickstart/#common-issues) and mine does not appear **Bug description** Please consider the following program source code ```python class MyClass:...

false-negative

# Pysa Bug **Pre-submission checklist** [x] I've checked the list of [common issues](https://pyre-check.org/docs/pysa-quickstart/#common-issues) and mine does not appear I've reported a similar issue for Mariana Trench ([Issue 179](https://github.com/facebook/mariana-trench/issues/179)) so maybe...

false-positive

Please consider the following code: ```java MyClass myVar = new MyClass(); myVar.myString = source(); MyClass mySecondVar = new MyClass(); // If this statement is removed, the leak in the next...