Build frida framework using night god and thunderbolt

Original link: https://blog.saky.site/post/frida/

https://ift.tt/RhGiWwZ

Frida

First adb connect to the night god to see what system it is

 adb connect 127.0.0.1:62001 adb shell getprop ro.product.cpu.abi

Copy the corresponding fridaServer

 adb push frida-server-14.2.18-android-x86 /data/local/tmp/frida-server

run frame

 adb shell su cd /data/local/tmp chmod 755 frida-server ./frida-server

map port

 adb forward tcp:27042 tcp:27042

Thunderbolt Frida

 adb connect 127.0.0.1:5557 adb shell getprop ro.product.cpu.abi

Copy the corresponding fridaServer

 adb push frida-server /data/local/tmp

run frame

 adb shell cd /data/local/tmp chmod 777 frida-server ./frida-server

map port

 adb forward tcp:27042 tcp:27042

ks sig3 interface

Required files:

  • https://ift.tt/kRvnpN0
  • https://ift.tt/4Tipmro

Running in the Python environment

 python api.py

sig3url ='http://127.0.0.1:5000?str=' port can modify the file by itself

sig3 call

 let res = appver=9.10.10.2342&isp=CMCC&language=zh-cn&ud=${ud}&did_tag=7&egid=${egid}did=${did}&activityId=148&cs=false&client_key=2ac2a76d&os=android&kuaishou.api_st=${token}&token=${token} let sign = await getsig3('/rest/r/reward/task/getActivityReward', res)

This article is reprinted from: https://blog.saky.site/post/frida/
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment