Skip to content

SoftSec-KAIST/Ankou-Benchmark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Ankou Benchmark Sources

sources/*.tar.xz archives contain the source of the 24 program packages with the same version used for the evaluation of "Ankou: Guiding Grey-box Fuzzing towards Combinatorial Difference", ICSE 2020. seeds.tar.xf contains the seeds used to initialize the fuzzing campaigns.

Extracting the archives

git clone https://github.com/SoftSec-KAIST/Ankou-Benchmark
cd Ankou-Benchmark
tar xf seeds.tar.xz
cd sources
ls *.tar.xz | xargs -n1 tar xf

Usage

Once extracted, each package can be compiled with afl-gcc. Most packages can be compiled via ./configure; make; make install. For example:

cd sources/cflow-1.6
CC=afl-gcc CXX=afl-g++ ./configure --prefix=`pwd`/build
make -j
make install

For some packages, using cmake is required. For example:

cd sources/exiv2-0.27.1-Source
mkdir build; cd build
cmake .. \
    -DCMAKE_INSTALL_PREFIX=./locals \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_C_COMPILER=afl-gcc -DCMAKE_CXX_COMPILER=afl-g++
make -j
make install

libgxps-0.3.1 requires meson to compile.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published