Merge remote-tracking branch 'origin/topic/awelzel/4730-smb-read-response-data-offset'

* origin/topic/awelzel/4730-smb-read-response-data-offset:
  smb2/read: Parse only 1 byte for data_offset, ignore reserved1
This commit is contained in:
Tim Wojtulewicz 2025-08-11 11:37:22 -07:00
commit 76289a8022
7 changed files with 38 additions and 3 deletions

11
CHANGES
View file

@ -1,3 +1,14 @@
8.1.0-dev.29 | 2025-08-11 11:37:22 -0700
* smb2/read: Parse only 1 byte for data_offset, ignore reserved1 (Arne Welzel, Corelight)
A user provided a SMB2 pcap with the reserved1 field of a ReadResponse
set to 1 instead of 0. This confused the padding computation due to
including this byte into the offset. Properly split data_offset and
reserved1 into individual byte fields.
Closes #4730
8.1.0-dev.27 | 2025-08-10 21:28:33 -0700
* GH-4176: cluster: Add on_subscribe() and on_unsubscribe() hooks (Arne Welzel, Corelight)