Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Sep 5, 2024
1 parent 283d761 commit fc1db66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzzers/libafl_fuzz/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ def fuzz(input_corpus, output_corpus, target_binary):
command += (['-o', output_corpus, '-i', input_corpus, target_binary])
#command += (['-t', '1000'])
print(command)
env = {'AFL_CORES': '1', 'AFL_IGNORE_TIMEOUT': '1', 'AFL_CMPLOG_ONLY_NEW': '1', 'LIBAFL_DEBUG_OUTPUT': '1', 'AFL_DEBUG':'1'}
env = {'AFL_CORES': '0', 'AFL_IGNORE_TIMEOUT': '1', 'AFL_CMPLOG_ONLY_NEW': '1'}
subprocess.check_call(command, cwd=os.environ['OUT'], env=env)

0 comments on commit fc1db66

Please sign in to comment.