secure-software-engineering / FlowDroid

FlowDroid Static Data Flow Tracker
GNU Lesser General Public License v2.1
1.02k stars 293 forks source link

Why i get different paths from source to sink twich, i run the same apk with runInfoflow. #579

Open csuhqh opened 1 year ago

csuhqh commented 1 year ago

I run an apk to get the path from source to path, but the results are different. Why and how to solve it?

class Data{ public String f; }

onCreate(): Data p = new Data(); taintIt(sourceA(), p); // source

taintIt(String in, Data out): Data x = out; x.f = in; sinkNetWork(out.f); //sink

The results are differet run twice: case1: image case2: image