美文网首页
安装pwndbg,peda,gef

安装pwndbg,peda,gef

作者: 心理健康最重要 | 来源:发表于2020-03-02 22:59 被阅读0次

我的环境是 vmware 15pro ubuntu16.04 python3.52(不是3.5系版本有坑)

从git上克隆pwndbg
 git clone https://github.com/pwndbg/pwndbg
 cd pwndbg   
 ./setup.sh 
执行的安装脚本的时候需要需要collect pip 但是一直报错ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out
网上发现是因为源的问题,接下来更新pip的源
mkdir ~/.pip
vim ~/.pip/pip.conf

修改为

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

更新pip

sudo pip install --upgrade pip 

然后再次./setup.sh 执行gbd 安装成功

peda gef 的安装有很多博客,期间发现了一个大佬写的脚本,可以无缝切换这3个插件

https://blog.csdn.net/aptx4869_li/article/details/81566541

相关文章

网友评论

      本文标题:安装pwndbg,peda,gef

      本文链接:https://www.haomeiwen.com/subject/yauwkhtx.html