首先 下载
termux
https://cn.apksum.com/down/com.termux_0.65_free
在termux上安装python
https://wiki.termux.com/wiki/Python
termux的默认python就是python3
然后我们把项目下载下来安装
git clone https://www.github.com/threat9/routersploit
cd routersploit
pip install -r requirements.txt
最后 python rsf.py来运行程序就行了
如果在termux上安装routersploit时出错请看如下方法
编译cffi的错误
[参考] https://github.com/termux/termux-packages/issues/1964
安装这个 pkg install clang
如果文件“ffi.h”找不到
apt search ffi
apt install libffi libffi-dev
安装加密的问题(由于使用无引擎构建的openssl)所有关于openssl的错误
[参考] https://github.com/termux/termux-packages/issues/2847