打pwn所需要的基本环境

打pwn可能需要用到的额外工具

推荐

ROP

glibc版本工具

apt换源

/etc/apt/sources.list 在文件最前面添加以下条目

deb <http://mirrors.aliyun.com/ubuntu/> focal main restricted universe multiverse 
deb-src <http://mirrors.aliyun.com/ubuntu/> focal main restricted universe multiverse 
deb <http://mirrors.aliyun.com/ubuntu/> focal-security main restricted universe multiverse 
deb-src <http://mirrors.aliyun.com/ubuntu/> focal-security main restricted universe multiverse 
deb <http://mirrors.aliyun.com/ubuntu/> focal-updates main restricted universe multiverse 
deb-src <http://mirrors.aliyun.com/ubuntu/> focal-updates main restricted universe multiverse 
deb <http://mirrors.aliyun.com/ubuntu/> focal-proposed main restricted universe multiverse 
deb-src <http://mirrors.aliyun.com/ubuntu/> focal-proposed main restricted universe multiverse 
deb <http://mirrors.aliyun.com/ubuntu/> focal-backports main restricted universe multiverse 
deb-src <http://mirrors.aliyun.com/ubuntu/> focal-backports main restricted universe multiverse 

pip换源

pip config set global.index-url <https://mirrors.aliyun.com/pypi/simple/>

解决github下载问题

开放ssh服务 & proxychains

ubuntu虚拟机通过proxychains把包发给本机,本机再去访问

sudo apt-get install openssh-server