diff options
| author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-06-30 09:36:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-30 10:36:32 +0200 |
| commit | 5d5624b930d95cc576624d22f68d5682c968ad97 (patch) | |
| tree | bbbec342b8294ca5abfcc7b314a24fa52154bcf5 /frida_mode/many-linux/Dockerfile | |
| parent | 7da632065f079b887d07b17a63ba1787e4240e69 (diff) | |
| download | afl++-5d5624b930d95cc576624d22f68d5682c968ad97.tar.gz | |
Many Linux Support (#1000)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/many-linux/Dockerfile')
| -rw-r--r-- | frida_mode/many-linux/Dockerfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/frida_mode/many-linux/Dockerfile b/frida_mode/many-linux/Dockerfile new file mode 100644 index 00000000..08c24eae --- /dev/null +++ b/frida_mode/many-linux/Dockerfile @@ -0,0 +1,24 @@ +FROM fridadotre/manylinux-x86_64 + +COPY realpath /bin/realpath +RUN chmod +x /bin/realpath + +RUN yum -y install xz +RUN yum -y install vim-common + +WORKDIR / +RUN git clone https://github.com/AFLplusplus/AFLplusplus.git + +WORKDIR /AFLplusplus +RUN mkdir -p /AFLplusplus/frida_mode/build/frida/ +RUN curl -L -o /AFLplusplus/frida_mode/build/frida/frida-gumjs-devkit-14.2.18-linux-x86_64.tar.xz "https://github.com/frida/frida/releases/download/14.2.18/frida-gumjs-devkit-14.2.18-linux-x86_64.tar.xz" + +WORKDIR /AFLplusplus +RUN git checkout dev +WORKDIR /AFLplusplus/frida_mode +ENV CFLAGS="\ + -DADDR_NO_RANDOMIZE=0x0040000 \ + -D_POSIX_C_SOURCE=200809L \ + -Wno-implicit-function-declaration \ + " +RUN make |
