Sollyu

  • 捐赠
  • 关于
  1. 首页
  2. 软件开发
  3. 正文

【Frida】安装篇

2017年3月5日 11687点热度 5人点赞 0条评论

说明

本篇文章使用的环境为Mac
序号说明地址
1brew官网https://brew.sh/index_zh-cn.html
2frida源码https://github.com/frida/frida
3frida官网https://www.frida.re/

安装 pip

因为pip是Python的一部分,所以想安装得直接安装Python,执行下面代码
$ brew install python  # 安装最新的python
$ brew install pip     # 安装pip

安装 frida

# 使用系统默认源安装
$ python3 -m pip install frida frida-tools

# 使用国内清华源进行安装
$ python3 -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ frida frida-tools
如果遇到这种情况就耐心等待,这个过程还是比较慢的,是frida在下载他的依赖。
需要在pythonhosted.org中下载frida大约需要35m,得确信自己的网络能访问,我这里大约等了半个小时才下载完成。
Building wheel for frida (setup.py) ...

代理安装

经过上面的等待,着实无法安装,可以尝试使用本代理方法试一下。
# 安装代理软件
$ python3 -m pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ pysocks

# 使用代理下载
$ python3 -m pip install frida frida-tools --proxy='socks5://127.0.0.1:1080'

安装成功

安装成功,查看版本号。
$ frida --version
12.7.22
本作品采用 知识共享署名 4.0 国际许可协议 进行许可
标签: Android frida hook
最后更新:2019年11月25日

sollyu

这个人很懒,什么都没留下

点赞
下一篇 >

COPYRIGHT © 2021 sollyu.com. ALL RIGHTS RESERVED.

THEME KRATOS MADE BY VTROIS

苏ICP备15007531号