cp /bin/ps afl_in/ 接下来,就可以使用afl fuzz进行模糊测试了: cd ~/binutils-2.25 afl-fuzz -i afl_in -o afl_out ./binutils/readelf -a @@ afl fuzz启动后,我们将看到如下界面:
sudo make install 使用AFL测试binutils 下载并解压缩binutils安装包 进入binutils解压缩文件夹,设置编译器环境为afl-gcc并执行configure命令, 有两种方式,一种是利用export方式改变编译环境为afl-gcc,一种在执行configure命令时添加CC=afl-gcc //第一种方式:1.exportCC=afl-gcc//设置环境为afl-gcc2.exportCXX=afl-...
mkdir afl_in afl_out cp /bin/ps afl_in/ 接下来,就可以使用afl fuzz进行模糊测试了: cd ~/binutils-2.25 afl-fuzz -i afl_in -o afl_out ./binutils/readelf -a @@ afl fuzz启动后,我们将看到如下界面: