我试图与frida连接到某个应用程序,它给了我以下错误:
Failed to spawn: unable to find process with the name
"com.androidpentesting.securestore"在我编写这个命令之后会发生这样的情况:
frida -U -n "com.androidpentesting.securestore"有人能帮帮我吗?
的frida版本相同。
发布于 2022-06-28 16:02:25
不幸的是,对于Frida来说,应用程序的名称不是包名(由Frida称为标识符),而是向用户显示的标签。
通过执行以下操作,可以看到Frida识别的app列表和app
frida-ps -Ua示例输出
PID Name Identifier
---- -------- ---------------------------------
2799 Gmail com.google.android.gm
2814 Messages com.google.android.apps.messaging
2218 Settings com.android.settings因此,您可以选择通过名称(-n参数)或PID (-p参数)来标识应用程序,但是包名不起作用。
https://stackoverflow.com/questions/72789597
复制相似问题