blob: d230fab1d894ee04d73ffb5931329b9aed23f4ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
FROM kalilinux/kali-rolling AS afl-dyninst
MAINTAINER vh@thc.org
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y upgrade && apt-get -y install \
build-essential \
gcc \
g++ \
make \
cmake \
git \
ca-certificates \
tar \
gzip \
vim \
curl \
apt-utils \
libelf-dev \
libelf1 \
libiberty-dev \
libboost-all-dev \
libtbb2 \
libtbb-dev \
&& apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/dyninst/dyninst \
&& cd dyninst && mkdir build && cd build \
&& cmake .. \
&& make \
&& make install \
&& cd .. ; rm -rf build ; cd ..
RUN git clone https://github.com/vanhauser-thc/AFLplusplus \
&& cd AFLplusplus \
&& make source-only \
&& make install \
&& make clean \
&& cd ..
RUN mkdir -p /path/to/dyninst/ && ln -s /dyninst/build /path/to/dyninst/build-directory
RUN git clone https://github.com/vanhauser-thc/afl-dyninst \
&& cd afl-dyninst \
&& ln -s ../AFLplusplus afl \
&& make \
&& make install \
&& make clean \
&& cd .. \
&& echo "/usr/local/lib" > /etc/ld.so.conf.d/dyninst.conf && ldconfig \
&& echo "export DYNINSTAPI_RT_LIB=/usr/local/lib/libdyninstAPI_RT.so" >> .bashrc
ENV DYNINSTAPI_RT_LIB /usr/local/lib/libdyninstAPI_RT.so
|