Coder Social home page Coder Social logo

Dockerfile request about t-fuzz HOT 2 CLOSED

hexhive avatar hexhive commented on August 18, 2024
Dockerfile request

from t-fuzz.

Comments (2)

zjuchenyuan avatar zjuchenyuan commented on August 18, 2024 1

@andreafioraldi I have written a Dockerfile for tfuzz, maybe useful for you.

https://hub.docker.com/r/zjuchenyuan/tfuzz/dockerfile

FROM zjuchenyuan/base

LABEL description="T-Fuzz: fuzzing by program transformation"

RUN sed -i 's/# deb-src/deb-src/g' /etc/apt/sources.list &&\
    apt-get update && apt-get build-dep -y qemu-system && apt install -y libtool libtool-bin git build-essential gcc-multilib libtool automake autoconf bison debootstrap debian-archive-keyring libacl1-dev  python-pip python-virtualenv

RUN git clone https://github.com/radare/radare2.git &&\
    cd radare2 && ./sys/install.sh && cd .. 

# we ignore qemu install, as T-Fuzz will not use it
RUN git clone https://github.com/shellphish/shellphish-afl.git &&\
    cd shellphish-afl &&\
    python setup.py install &&\
    git clone --depth 1 https://github.com/mirrorer/afl /usr/bin/afl-unix &&\
    cd /usr/bin/afl-unix && make

# fix Deprecation Warning issue, here we use latest version of shellphish/fuzzer
RUN git clone https://github.com/HexHive/T-Fuzz &&\
    python -m pip install -U pip &&\
    cd T-Fuzz && sed -i 's/shellphish-afl==1.1//g' req.txt && pip install -r req.txt &&\
    pip install -U git+https://github.com/shellphish/fuzzer.git

# there are an issue related to number format of create_dict.py
ADD create_dict.py /usr/local/bin/create_dict.py

RUN chmod +x /usr/local/bin/create_dict.py

from t-fuzz.

andreafioraldi avatar andreafioraldi commented on August 18, 2024

Ok, I've seen only now that there is a docker image available to pull at the end of the readme.
Can you anyway put the Dockerfile in the repo?

from t-fuzz.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.