app爬虫(2)谷歌Nexus6P Frida HOOK 实战

一,环境准备(手机有root):

PC端:frida==16.0.3

powershell 复制代码
pip3 install frida==16.0.3

PC端:frida-tools==12.0.2

powershell 复制代码
pip3 install frida-tools==12.0.2

手机端:frida-server==16.0.2

下载地址:https://github.com/frida/frida/releases/tag/16.0.3

二,hook得到文件

查看手机cpu架构:

powershell 复制代码
adb shell getprop ro.product.cpu.abi

选择firda-server arm 64 解压导入手机端,保持手机端运行frida-server

powershell 复制代码
adb push frida-server-16.0.3-android-arm64 /data/local/tmp
adb shell
su
chmod +x /data/local/tmp/frida-server-16.0.3-android-arm64
./data/local/tmp/frida-server-16.0.3-android-arm64

下载dump在窗口运行:https://github.com/wvdumper/dumper

powershell 复制代码
python3 dump_keys.py

手机访问aHR0cHM6Ly9iaXRtb3Zpbi5jb20vZGVtb3MvZHJt,hook失败可清除浏览器所有缓存再次尝试

三,生成wvd文件

powershell 复制代码
pywidevine create-device -t ANDROID -l 3 -k private_key.pem -c client_id.bin -o .
相关推荐
金銀銅鐵11 小时前
[Python] 基于欧几里得算法,实现分数约分计算器
python·数学
Lyn_Li12 小时前
Kaggle Top 5 | 198只股票、200条数据的金融预测——BattleFin高分方案从零复现
python·kaggle·比赛复盘·金融预测
小九九的爸爸17 小时前
前端想要入门Agent开发,要具备哪些Python基础?
python·agent·ai编程
阿耶同学18 小时前
手把手教你用 LangGraph 搭建三层嵌套 Agent 架构
python·程序员
花酒锄作田1 天前
Pydantic校验配置文件
python
hboot1 天前
AI工程师第四课 - 深度学习入门
pytorch·python·神经网络
ZhengEnCi2 天前
P2M-Matplotlib折线图完全指南-从数据可视化到趋势分析的Python绘图利器
python·matlab·数据可视化
ZhengEnCi2 天前
P2L-Matplotlib饼图完全指南-从数据可视化到图表定制的Python绘图利器
python·matlab
曲幽2 天前
你的REST接口还在“过度投喂”数据吗?——FastAPI + GraphQL实战避坑指南
python·fastapi·web·graphql·route·cors·rest·strawberry
用户8358086187912 天前
基于 Self-RAG 与列表级重排序的进阶 RAG 系统设计与实现
python