如何检测另一个应用程序的存在?

发布于 2024-10-27 10:05:22 字数 448 浏览 1 评论 0原文

这是理论上的情况:

  • 我正在编写一个应用程序来检测手机上另一个应用程序的存在
  • 目标应用程序的类路径、名称、活动名称等已随机化,我不能只检查它是否存在(它是< em>语义上相同,但语法独特)
  • 我拥有手机的根访问权限
  • 该应用程序是开源的,并且(除了包名称和应用程序名称)我知道有关它的一切。
  • 该应用程序不生成日志输出。

我一直在考虑如何检测手机上是否存在其他应用程序(假设它实际上不时运行),以下方法是否可行?

  • 定期查找内存中是否存在某些类
  • 在每个已安装的 apk 中搜索已知的已编译代码块
  • 通过以一定的时间间隔检查设备内存来检测正在运行的应用程序,并查找与该应用程序匹配的使用模式

是否还有其他方法在这种情况下检测到另一个应用程序?

This is a theoretical situation:

  • I am writing an app to detect the presence of another on the phone
  • The classpath, name, Activity names etc. of the target app have been randomized, I can't just check if it's there (it is semantically the same but syntactically unique)
  • I have root access to the phone
  • The app is open source, and (apart from the package name and application name) I know everything about it.
  • The app generates no Log output.

I've been thinking of ways to detect whether this other app is present on the phone (assuming it is actually run from time to time), are the following methods feasible at all?

  • Look periodically for the presence of certain classes in memory
  • Search for known chunks of the compiled code in each installed apk
  • Detect the app running by inspecting the memory of the device at certain intervals and look for usage patterns matching the app

Are there any other ways of detecting another app under these circumstances?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑咖 2024-11-03 10:05:22

使用 PackageManager。它有一个方法返回有关系统上安装的所有应用程序的信息: getInstalledPackages()

Use PackageManager. It has a method returning info about all the apps, installed on the system: getInstalledPackages().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文