1.前提:python环境,同时需要装python-dev
均使用apt安装的方式
1 | sudo apt update |
2.pip安装(如果这个不行,请百度或者谷歌寻找新的安装方法)
1 | wget https://bootstrap.pypa.io/get-pip.py |
如果pip安装东西慢,可以换源(这里为豆瓣源)
1 | pip install numpy -i [https://pypi.doubanio.com/simple/]</blockquote> |
3.pwntools安装
1 | git clone https://github.com/Gallopsled/pwntools //下载pwntools安装包 |
4.peda插件安装(一般在3中会自动安装好)
1 | git clone https://github.com/longld/peda.git ~/peda |
5.python的第三方库安装:LibcSercher
1 | git clone https://github.com/lieanu/LibcSearcher.git |
6.ROPgadget安装
1 | sudo pip install capstone //必要的包安装 |