Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fuzzowski/fuzzers/modbus/modbus.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def define_nodes(*args, **kwargs) -> None:
s_byte(0xff,name='unit Identifier',fuzzable=False)
with s_block('pdu'):
s_byte(0x01,name='funcCode read coil memory',fuzzable=False)
s_word(0x0000,name='start address')
s_word(0x0000,name='start_address')
s_word(0x0000,name='quantity')


Expand All @@ -57,7 +57,7 @@ def define_nodes(*args, **kwargs) -> None:
s_byte(0xff,name='unit Identifier',fuzzable=False)
with s_block('read_holding_registers_block'):
s_byte(0x01,name='read_holding_registers')
s_word(0x0000,name='start address')
s_word(0x0000,name='start_address')
s_word(0x0000,name='quantity')
# --------------------------------------------------------------- #

Expand Down