首页
社区
课程
招聘
[原创][frida] 01_Android环境搭建
发表于: 2020-9-27 02:18 4235

[原创][frida] 01_Android环境搭建

2020-9-27 02:18
4235

确定手机系统的版本,参考文字Android系统判断CPU是32位还是64位,夜神模拟器默认的系统是Android5.1.1,x86的系统,需要下载frida-server-12.11.17-android-x86(https://github.com/frida/frida/releases/tag/12.11.17).

D:\Python\Python371\Scripts\pip.exe  install virtualenv  -i https://pypi.douban.com/simple
 
virtualenv --system-site-packages python371-venv
D:\Python\Python371\Scripts\pip.exe  install virtualenv  -i https://pypi.douban.com/simple
 
virtualenv --system-site-packages python371-venv
python371-venv\Scripts\activate.bat
python -m pip install --upgrade pip
pip install frida-tools -i https://pypi.douban.com/simple
python371-venv\Scripts\activate.bat
python -m pip install --upgrade pip
pip install frida-tools -i https://pypi.douban.com/simple
$ adb root # might be required
$ adb push frida-server /data/local/tmp/
$ adb shell "chmod 755 /data/local/tmp/frida-server"
$ adb shell "/data/local/tmp/frida-server &"
$ adb root # might be required
$ adb push frida-server /data/local/tmp/
$ adb shell "chmod 755 /data/local/tmp/frida-server"
$ adb shell "/data/local/tmp/frida-server &"
frida-ps
 
  PID  Name
-----  -----------------------
 6396  DocToPDF.exe
 1496  Everything.exe
 6640  NVIDIA Web Helper.exe
 5100  QMUsbGuard.exe
 6240  QQ.exe
 7760  QQExternal.exe
 5580  QQPCRealTimeSpeedup.exe
………………
frida-ps
 
  PID  Name
-----  -----------------------
 6396  DocToPDF.exe
 1496  Everything.exe
 6640  NVIDIA Web Helper.exe
 5100  QMUsbGuard.exe
 6240  QQ.exe
 7760  QQExternal.exe
 5580  QQPCRealTimeSpeedup.exe
………………
frida-ps -U
 
 PID  Name
----  ------------------------------------------
1511  adbd
2608  android.process.acore
2748  android.process.media
2486  com.android.inputservice
2840  com.android.keychain
………………
frida-ps -U
 
 PID  Name
----  ------------------------------------------
1511  adbd
2608  android.process.acore
2748  android.process.media
2486  com.android.inputservice
2840  com.android.keychain
………………

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

最后于 2020-10-3 16:35 被kinghzking编辑 ,原因:
收藏
免费 1
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//