Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 android 中找到从源到接收器的完全依赖路径,例如第 10 行的 Class Test 中有一个函数,我想找到受第 10 行影响的行或谁在调用第 10 行。
你看过烟灰框架吗?它允许您静态构建应用程序的完整调用图,给定其 APK。从这个调用图中,您应该能够使用 def-use 分析检索依赖路径。
如果您正在寻找深入的信息流分析,FlowDroid 可以做到这一点。FlowDroid 是基于 Soot 构建的静态分析工具,可让您检索源和接收器之间的数据流。
希望它会帮助最好的