├── .gitignore ├── Config ├── makefile.config ├── makefile.debug.rules ├── makefile.default.rules ├── makefile.rules.tmpl ├── makefile.tmpl ├── makefile.unix.config └── unix.vars ├── LICENSE ├── README.md ├── aflpin.cpp ├── colors.hpp ├── crash_test.c ├── makefile ├── makefile.rules └── sleep_test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.config -------------------------------------------------------------------------------- /Config/makefile.debug.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.debug.rules -------------------------------------------------------------------------------- /Config/makefile.default.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.default.rules -------------------------------------------------------------------------------- /Config/makefile.rules.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.rules.tmpl -------------------------------------------------------------------------------- /Config/makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.tmpl -------------------------------------------------------------------------------- /Config/makefile.unix.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/makefile.unix.config -------------------------------------------------------------------------------- /Config/unix.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/Config/unix.vars -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/README.md -------------------------------------------------------------------------------- /aflpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/aflpin.cpp -------------------------------------------------------------------------------- /colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/colors.hpp -------------------------------------------------------------------------------- /crash_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/crash_test.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/makefile -------------------------------------------------------------------------------- /makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/makefile.rules -------------------------------------------------------------------------------- /sleep_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mothran/aflpin/HEAD/sleep_test.c --------------------------------------------------------------------------------