虚拟机安装以及pwn环境配置

0x1虚拟机的安装

Ubuntu16虚拟机安装详细教程

0x2配置优化(加快下载速度)

pip换源

1
2
3
4
5
cd ~
mkdir .pip
cd .pip/
touch pip.conf
sudo vim pip.conf

pip.conf

1
2
3
[global]
trusted-host = mirrors.aliyun.com
index-url = https://mirrors.aliyun.com/pypi/simple

apt换源

在系统设置-软件和更新中修改.

1.png

修改为中国的阿里云

0x3虚拟机pwn环境配置

1
2
3
4
5
6
7
8
9
git clone https://github.com/pwndbg/pwndbg
cd pwndbg
./setup.sh
#pwngdb,调试神器
sudo apt-get install gcc-multilib
sudo apt-get install libc6:i386
#64位系统跑32位程序
pip install pwntools
#pwntools
-------------本文结束感谢您的阅读-------------
+ +