draftyfrog
draftyfrog
Please consider the following code: ```java List myList = new ArrayList(); myList.add(source()); sink(myList); // Reported by FlowDroid try{System.out.println("");}catch(Exception ex){} // If removed, FlowDroid correctly reports the sink in the next...
HI, I am trying to build the latest FlowDroid version with `mvn install -DskipTests` and getting the following error: ``` [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order:...
# Bug **Bug description** Please consider the following code ```java MyClass myInstance = new MyClass(); String myString = myInstance.myField; myInstance.myField = source(); sink(myString); // Mariana Trench falsely reports this as...
# Bug **Bug description** Please consider the following code ```Java public void onCreate(Bundle savedInstanceState){ MyClass myInstance = new MyClass(); myInstance.attribute = source(); sanitize(myInstance); sink(myInstance.attribute); # Reported by Mariana Trench }...