We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From your README, to run the program that need AFL_FILE as stdin:
$ cd /path/to/project-gcov/ $ afl-cov -d /path/to/afl-fuzz-output/ --live --coverage-cmd \ "cat AFL_FILE | LD_LIBRARY_PATH=./lib/.libs ./bin/.libs/somebin -a -b -c" \ --code-dir .
afl-cov/afl-cov
Lines 906 to 913 in 8d14372
but this code will treat the first word cat as the exec part, leading to error message:
cat
Non-zero exit status '1' for CMD: /usr/bin/readelf -a cat
I would recommend change the README to:
afl-cov -d /path/to/afl-fuzz-output/ --live --coverage-cmd \ "LD_LIBRARY_PATH=./lib/.libs ./bin/.libs/somebin -a -b -c < AFL_FILE " \ --code-dir .
or change the code to add a parameter for specifing the exec part.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From your README, to run the program that need AFL_FILE as stdin:
afl-cov/afl-cov
Lines 906 to 913 in 8d14372
but this code will treat the first word
cat
as the exec part, leading to error message:I would recommend change the README to:
or change the code to add a parameter for specifing the exec part.
The text was updated successfully, but these errors were encountered: