mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
add smb1_transaction_secondary_request event
expose SMB_COM_TRANSACTION_SECONDARY (0x26) message to script language. See MS-CIFS section 2.2.4.34.1.
This commit is contained in:
parent
bd72710e3b
commit
046c7bc481
6 changed files with 106 additions and 1 deletions
|
@ -2861,6 +2861,25 @@ export {
|
|||
setup_count: count;
|
||||
};
|
||||
|
||||
type SMB1::Trans_Sec_Args: record {
|
||||
## Total parameter count
|
||||
total_param_count: count;
|
||||
## Total data count
|
||||
total_data_count: count;
|
||||
## Parameter count
|
||||
param_count: count;
|
||||
## Parameter offset
|
||||
param_offset: count;
|
||||
## Parameter displacement
|
||||
param_displacement: count;
|
||||
## Data count
|
||||
data_count: count;
|
||||
## Data offset
|
||||
data_offset: count;
|
||||
## Data displacement
|
||||
data_displacement: count;
|
||||
};
|
||||
|
||||
type SMB1::Find_First2_Request_Args: record {
|
||||
## File attributes to apply as a constraint to the search
|
||||
search_attrs : count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue