Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 579 Bytes

File metadata and controls

36 lines (20 loc) · 579 Bytes

Fuzzing Engine — Build Instructions

1. Build the Docker image

cd ./Engine/ityfuzz
docker build -t dockerfile -t <IMAGE NAME> .

2. Run the container

docker run -it -v <YOUR WORKSPACE PATH>/promfuzz/:/bins/dataset/ -p 8000:8000 --name <CONTAINER NAME> <IMAGE NAME> /bin/bash

3. Get the container ID

docker inspect --format="{{.Id}}" <CONTAINER NAME>

4. Stop the container

docker stop <CONTAINER ID>

Done

You can now return to the main README to continue configuring PROMFUZZ: Back