Fix parameter type in peach fuzzer get_fuzzed_command method

Signed-off-by: Katarzyna Treder <katarzyna.treder@h-partners.com>
This commit is contained in:
Katarzyna Treder 2024-10-07 13:13:22 +02:00
parent b8929972b4
commit b2b20cb714

View File

@ -38,7 +38,7 @@ class PeachFuzzer:
escape_chars = '\\\n"\'&|;()`<>$! '
@classmethod
def get_fuzzed_command(cls, command_template: bytes, count: int):
def get_fuzzed_command(cls, command_template: str, count: int):
"""
Generate command with fuzzed parameter provided on command_template.
:param command_template: string with command to be executed.