首页
社区
课程
招聘
[讨论]多进程的应用,frida无法spaw应用,但是可以attach上这种怎么处理?
发表于: 2020-5-12 18:34 5710

[讨论]多进程的应用,frida无法spaw应用,但是可以attach上这种怎么处理?

2020-5-12 18:34
5710

1.应用未启动时,使用-f参数无法打开应用

 ➜ frida -U -l api.js  -f com.XXX  --no-pause 
     ____
    / _  |   Frida 12.8.20 - A world-class dynamic instrumentation toolkit
   | (_| |
    > _  |   Commands:
   /_/ |_|       help      -> Displays the help system
   . . . .       object?   -> Display information about 'object'
   . . . .       exit/quit -> Exit
   . . . .
   . . . .   More info at https://www.frida.re/docs/home/
Failed to spawn: unable to find application with identifier 'com.XXX'

2.应用启动后有多个进程,使用-f参数应用依旧显示未找到。

frida-ps -U
10140  com.XXX.video
12265  com.XXX.video:messagesdk
12047  com.XXX.video:push_helper
12016  com.XXX.video:pushservice

去掉-f参数后,可以attach上。

 ➜  frida -U -l api.js  com.XXX  --no-pause  
     ____
    / _  |   Frida 12.8.20 - A world-class dynamic instrumentation toolkit
   | (_| |
    > _  |   Commands:
   /_/ |_|       help      -> Displays the help system
   . . . .       object?   -> Display information about 'object'
   . . . .       exit/quit -> Exit
   . . . .
   . . . .   More info at https://www.frida.re/docs/home/

[ONEPLUS A3000::com.XXX]->

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

最后于 2020-5-12 18:35 被endlif编辑 ,原因:
收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 59
活跃值: (680)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
You might have more than one USB device plugged in. Check with frida-ls-devices, and specify -D <device-id> instead of -U to pick a specific one. Use frida-ps -D <id> -ai to list installed apps and make sure com.twitter.com is in that list. Also make sure you're running the latest Frida while doing this. (Many Android-related fixes happened in recent releases.)
2020-5-13 11:18
0
游客
登录 | 注册 方可回帖
返回
//