diff options
author | vanhauser-thc <vh@thc.org> | 2022-06-27 08:31:03 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-06-27 08:31:03 +0200 |
commit | 48c2d516899dcd77f1c167b195eb45b2a71cc303 (patch) | |
tree | b0bcfd4e56120e0d68bf2b41f4d878fb5b7a72b5 /docs | |
parent | a7f3f87f411c01008b1f5aede918a6bca549d5ff (diff) | |
download | afl++-48c2d516899dcd77f1c167b195eb45b2a71cc303.tar.gz |
nits
Diffstat (limited to 'docs')
-rw-r--r-- | docs/INSTALL.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index e29fca96..41ec8561 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -8,11 +8,11 @@ hence afl-clang-lto is available) or just pull directly from the Docker Hub (for x86_64 and arm64): ```shell -docker pull docker.io/aflplusplus/aflplusplus:stable -docker run -ti -v /location/of/your/target:/src docker.io/aflplusplus/aflplusplus:stable +docker pull aflplusplus/aflplusplus: +docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus ``` -This image is automatically generated when a push to the stable repo happens. +This image is automatically generated when a push to the stable branch happens. You will find your target source code in `/src` in the container. Note: you can also pull `aflplusplus/aflplusplus:dev` which is the most current @@ -21,6 +21,9 @@ development state of AFL++. If you want to build AFL++ yourself, you have many options. The easiest choice is to build and install everything: +NOTE: depending on your Debian/Ubuntu/Kali/... version replease `-12` with +whatever llvm version is available! + ```shell sudo apt-get update sudo apt-get install -y build-essential python3-dev automake cmake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools |