Windows/Ubuntu安装frida和objection
原创
©著作权归作者所有:来自51CTO博客作者哆啦安全的原创作品,请联系作者获取转载授权,否则将追究法律责任
1.Windows环境使用管理员权限安装frida,Ubuntu使用普通或Root权限安装均可
https://github.com/frida/frida
(1).安装frida(Python2.7.8及以上版本)
pip install numpy matplotlib -i https://mirrors.aliyun.com/pypi/simple
pip install frida -i https://mirrors.aliyun.com/pypi/simple
pip install frida-tools -i https://mirrors.aliyun.com/pypi/simple
(2).安装frida(Python3.9.1及以上版本)
pip3 install numpy matplotlib -i https://mirrors.aliyun.com/pypi/simple
pip3 install frida -i https://mirrors.aliyun.com/pypi/simple
pip3 install frida-tools -i https://mirrors.aliyun.com/pypi/simple

(3).安装frida的特定版本
pip install frida==版本号
pip install frida-tools==版本号
或
pip3 install frida==版本号
pip3 install frida-tools==版本号
npm config set unsafe-perm true
npm install frida-compile -g
npm install frida-compile
2.Windows环境使用管理员权限安装objection,Ubuntu使用普通或Root权限安装均可
https://github.com/sensepost/objection
https://gitcode.net/mirrors/sensepost/objection
https://github.com/hluwa/Wallbreaker
https://github.com/abodelot/wallbreaker
https://github.com/sensepost/objection/wiki/API
https://www.anquanke.com/post/id/197657
(1).安装objection
pip install objection -i https://mirrors.aliyun.com/pypi/simple
或
pip3 install objection -i https://mirrors.aliyun.com/pypi/simple


(2).安装objection的特定版本
pip install objection==版本号
或
pip3 install objection==版本号