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
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