最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I let multiple Java scripts to run concurrently in Frida? - Stack Overflow

programmeradmin4浏览0评论

I want to bypass root detection, certificate pinning, and a crc integrity check for an android app using Frida. I can't run more than 1 script at once, is there any solution?

I want to bypass root detection, certificate pinning, and a crc integrity check for an android app using Frida. I can't run more than 1 script at once, is there any solution?

Share Improve this question edited Apr 4, 2020 at 18:12 David Cruz 3,0273 gold badges32 silver badges42 bronze badges asked Apr 4, 2020 at 5:01 raghadraghad 311 silver badge5 bronze badges 1
  • 1 Running multiple scripts in Frida is possible. I usually doe this via Frida Python binding, not sure if or how this also works with the mand-line version. What have you already tried? – Robert Commented Apr 4, 2020 at 9:54
Add a ment  | 

2 Answers 2

Reset to default 5
frida -U -f [APP_ID] -l script1.js -l script2.js

you can try this too

Concatenate all scripts into one file and load is the trivial (and probably good enough) answer.

I have another suggestion that you can do even without a puter, just put text editor on your device and get a bluetooth keyboard.

frida-inject which can be downloaded from frida release page

Push frida-inject & the scripts to the device and execute the following that iterates scripts , inject them to the process and exists.

for f in $(ls /sdcard/scripts/*js) do; ./frida-inject -p $(pidof .app.name) -s $f --eternalize

frida-inject options

发布评论

评论列表(0)

  1. 暂无评论