diff options
author | van Hauser <vh@thc.org> | 2020-01-27 00:20:35 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-01-27 00:20:35 +0100 |
commit | 16ca1b4510ed00d873657b1764ccb1ce17ef773f (patch) | |
tree | 7fa8d4d6f2e56df4e2a0426429ad101e011b174d | |
parent | 2d68cb399e42ae4e8a90093968652fbeac5b0060 (diff) | |
download | afl-dyninst-16ca1b4510ed00d873657b1764ccb1ce17ef773f.tar.gz |
dockerfile update
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Dockerfile b/Dockerfile index 444e3ff..960c083 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM kalilinux/kali-rolling AS afl-dyninst-base -MAINTAINER mh@mh-sec.de +FROM kalilinux/kali-rolling AS afl-dyninst +MAINTAINER vh@thc.org ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get upgrade && apt-get install -y \ @@ -48,11 +48,3 @@ RUN git clone https://github.com/vanhauser-thc/afl-dyninst \ && echo "export DYNINSTAPI_RT_LIB=/usr/local/lib/libdyninstAPI_RT.so" >> .bashrc ENV DYNINSTAPI_RT_LIB /usr/local/lib/libdyninstAPI_RT.so - -# the afl-dyninst image: -FROM afl-dyninst-base AS afl-dyninst -CMD afl-dyninst.sh - -# the afl-fuzz-dyninst image (with afl++): -FROM afl-dyninst-base AS afl-fuzz-dyninst -CMD afl-fuzz-dyninst.sh |