Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
KFuzzing committed Oct 22, 2024
1 parent 7dbcd01 commit 4f2d7cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions fuzzers/aflplusplus_aflfast/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ def fuzz(input_corpus,

flags += ['-p', 'fast']

# if os.path.exists('./afl++.dict'):
# flags += ['-x', './afl++.dict']
if os.path.exists('./afl++.dict'):
flags += ['-x', './afl++.dict']

# # Move the following to skip for upcoming _double tests:
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:
Expand Down
4 changes: 2 additions & 2 deletions fuzzers/aflplusplus_mopt/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ def fuzz(input_corpus,

flags += ['-L', '0']

# if os.path.exists('./afl++.dict'):
# flags += ['-x', './afl++.dict']
if os.path.exists('./afl++.dict'):
flags += ['-x', './afl++.dict']

# # Move the following to skip for upcoming _double tests:
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:
Expand Down
4 changes: 2 additions & 2 deletions fuzzers/kfuzz_aflfast/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ def fuzz(input_corpus,

flags += ['-p', 'fast']

# if os.path.exists('./afl++.dict'):
# flags += ['-x', './afl++.dict']
if os.path.exists('./afl++.dict'):
flags += ['-x', './afl++.dict']

# # Move the following to skip for upcoming _double tests:
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:
Expand Down
4 changes: 2 additions & 2 deletions fuzzers/kfuzz_mopt/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ def fuzz(input_corpus,

flags += ['-L', '0']

# if os.path.exists('./afl++.dict'):
# flags += ['-x', './afl++.dict']
if os.path.exists('./afl++.dict'):
flags += ['-x', './afl++.dict']

# # Move the following to skip for upcoming _double tests:
# if os.path.exists(cmplog_target_binary) and no_cmplog is False:
Expand Down

0 comments on commit 4f2d7cc

Please sign in to comment.