Skip to content

Commit

Permalink
Fix: add commonly parenthesis {}[] to Delim mutations (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
678098 authored Sep 23, 2023
1 parent dcf1fb3 commit 12ec28c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions boofuzz/primitives/delim.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ def __init__(self, name=None, default_value=" ", *args, **kwargs):
self._fuzz_library.append("*")
self._fuzz_library.append("(")
self._fuzz_library.append(")")
self._fuzz_library.append("{")
self._fuzz_library.append("}")
self._fuzz_library.append("[")
self._fuzz_library.append("]")
self._fuzz_library.append("-")
self._fuzz_library.append("_")
self._fuzz_library.append("+")
Expand Down

0 comments on commit 12ec28c

Please sign in to comment.