JackGrence / FuzzInspector

Apache License 2.0
16 stars 1 forks source link

question about fuzz.sh #2

Open amie0 opened 10 months ago

amie0 commented 10 months ago

your original fuzz.sh:#!/bin/bash AFL_VISPORT=cat visport AFL_AUTORESUME=1 AFL_PATH="$(realpath ../../AFLplusplus/)" PATH="$AFL_PATH:$PATH" afl-fuzz -m 1000 -i afl_inputs -o afl_outputs -U -t 40000+ -Z -- python ./ql.py @@ but in your example/libexif/fuzz.sh:#!/bin/bash export LD_LIBRARY_PATH=/media/lenovo/date/FuzzInspector/fuzzinspector_7799/libexif-0.6.22/out/lib AFL_VISPORT=cat visport AFL_AUTORESUME=1 AFL_PATH="$(realpath ../../AFLplusplus/)" PATH="$AFL_PATH:$PATH" afl-fuzz -i afl_inputs -o afl_outputs -Z -- ./exif @@ it has no "python ./ql.py ".and i want to know example/libexif/fuzz.sh is right or not? thanks

amie0 commented 10 months ago

I don't know how to run ql.py. could you give some examples?thanks